検出可能な Bluetooth LE ビーコンを作成するだけの非常にシンプルなアプリを作成する必要があります。データを送信する必要はありません。私は AltBeacon lybrary を使用することを選択したので、AltBeacon lybrary が提供するサンプルの 1 つを使用してアプリを実装しました。それでも、実行java.lang.NullPointerException: Attempt to invoke virtual method 'void android.bluetooth.le.BluetoothLeAdvertiser.startAdvertising(android.bluetooth.le.AdvertiseSettings, android.bluetooth.le.AdvertiseData, android.bluetooth.le.AdvertiseCallback)' on a null object reference
した両方のnull
チェックで肯定的な結果が得られるとアプリがクラッシュするため、他に何ができるかわかりません。このライブラリで問題が発生した人はいますか?
以下のコードは、ここで入手できる例の 98% です。Android5.0を使用しています。
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;
import org.altbeacon.beacon.Beacon;
import org.altbeacon.beacon.BeaconParser;
import org.altbeacon.beacon.BeaconTransmitter;
import java.util.Arrays;
import java.util.Timer;
import java.util.TimerTask;
public class MainActivity extends AppCompatActivity {
BeaconTransmitter beaconTransmitter;
Beacon beacon;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
beacon = new Beacon.Builder()
.setId1("2f234454-cf6d-4a0f-adf2-f4911ba9ffa6")
.setId2("1")
.setId3("2")
.setManufacturer(0x0118)
.setTxPower(-59)
.setDataFields(Arrays.asList(new Long[]{0l}))
.build();
if(beacon==null)
Toast.makeText(getApplicationContext(), "NULL beacon", Toast.LENGTH_LONG).show();
else
Toast.makeText(getApplicationContext(), "OK beacon", Toast.LENGTH_LONG).show();
BeaconParser beaconParser = new BeaconParser().setBeaconLayout("m:2-3=beac,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25");
beaconTransmitter = new BeaconTransmitter(getApplicationContext(), beaconParser);
if(beaconTransmitter==null)
Toast.makeText(getApplicationContext(), "NULL beacon trasmitter", Toast.LENGTH_LONG).show();
else
Toast.makeText(getApplicationContext(), "OK beacon trasmitter", Toast.LENGTH_LONG).show();
Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
beaconTransmitter.startAdvertising(beacon);
}
}, 5000);
}
}