61db0cd160
Adding a ComboV2PairingActivity Intent to the pairing Preferences within the XML causes pumpcontrol builds to crash because of the different package name prefix. Fix by adding the Intent in the preprocessPreferences function instead. Also fix the manifest and remove unnecessary package prefixes. Fixes https://github.com/nightscout/AndroidAPS/issues/2236 . Signed-off-by: Carlos Rafael Giani <crg7475@mailbox.org>
13 lines
478 B
XML
13 lines
478 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
|
|
<application>
|
|
<activity
|
|
android:name=".activities.ComboV2PairingActivity"
|
|
android:exported="false"
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
|
</application>
|
|
</manifest>
|