mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-02-04 06:44:27 +01:00
Update android doc
This commit is contained in:
parent
1d1c12267a
commit
f538f638fa
|
|
@ -1,3 +1,14 @@
|
|||
# Creating a Bluetooth device in an Android app
|
||||
|
||||
TODO...
|
||||
First ensure you have the necessary permissions in the AndroidManifest.xml file:
|
||||
|
||||
```xml
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.BLUETOOTH" />
|
||||
```xml
|
||||
|
||||
Next see MainActivity.cs in the Android sample as a reference:
|
||||
|
||||
https://github.com/dotMorten/NmeaParser/blob/master/src/SampleApp.Droid/MainActivity.cs
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue