2021-06-08 23:27:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-06-06 10:25:08 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2021-06-08 23:27:14 +02:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
2021-12-13 01:01:16 +01:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
|
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
|
|
|
|
|
2022-06-13 17:50:31 +02:00
|
|
|
<application android:supportsRtl="true">
|
2022-03-19 23:08:37 +01:00
|
|
|
<activity
|
2022-11-26 22:19:52 +01:00
|
|
|
android:name=".activities.DiaconnG8HistoryActivity"
|
2022-06-13 17:50:31 +02:00
|
|
|
android:exported="false"
|
2022-11-26 22:19:52 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2022-03-19 23:08:37 +01:00
|
|
|
<activity
|
2022-11-26 22:19:52 +01:00
|
|
|
android:name=".activities.DiaconnG8UserOptionsActivity"
|
2022-06-13 17:50:31 +02:00
|
|
|
android:exported="false"
|
2022-11-26 22:19:52 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar" />
|
2022-03-19 23:08:37 +01:00
|
|
|
<activity
|
2022-11-26 22:19:52 +01:00
|
|
|
android:name=".activities.DiaconnG8BLEScanActivity"
|
2022-06-13 17:50:31 +02:00
|
|
|
android:exported="false"
|
2022-11-26 22:19:52 +01:00
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
2021-06-08 23:27:14 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="info.nightscout.androidaps.plugins.PumpDiaconnG8.activities.DiaconnG8BLEScanActivity" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2022-03-19 23:08:37 +01:00
|
|
|
|
|
|
|
<service
|
2022-11-26 22:19:52 +01:00
|
|
|
android:name=".service.DiaconnG8Service"
|
2021-06-08 23:27:14 +02:00
|
|
|
android:enabled="true"
|
2022-03-19 23:08:37 +01:00
|
|
|
android:exported="false" />
|
2021-06-08 23:27:14 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|