AndroidAPS/medtronic/src/main/AndroidManifest.xml

16 lines
501 B
XML
Raw Normal View History

2022-06-06 10:25:08 +02:00
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2020-07-31 12:17:15 +02:00
2022-05-20 21:42:48 +02:00
<application
android:supportsRtl="true">
2020-07-31 12:17:15 +02:00
<service
android:name=".service.RileyLinkMedtronicService"
android:enabled="true"
android:exported="false" />
2020-07-31 12:17:15 +02:00
2022-05-11 16:15:17 +02:00
<activity android:name=".dialog.MedtronicHistoryActivity" android:theme="@style/AppTheme" />
2020-07-31 12:17:15 +02:00
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
</application>
</manifest>