Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@
<uses-permission android:name="android.permission.VIBRATE"/>
<!-- SYSTEM -->

<!-- BLUETOOTH -->
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- BLUETOOTH -->

<application
android:name=".application.MyApp"
android:allowBackup="true"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package co.lateralview.myapp.infraestructure.manager.bluetooth.base;

import android.Manifest;

public final class BluetoothConstants {

private BluetoothConstants() {

}

public static final int GET_FIRST_8_BITS = 0xFF;

public static final String[] REQUIRED_PERMISSIONS = new String[]{
Manifest.permission.ACCESS_COARSE_LOCATION,
Manifest.permission.ACCESS_FINE_LOCATION
};
}
Loading