AndroidAPS/openhumans/src/main/AndroidManifest.xml
2022-06-06 10:25:08 +02:00

23 lines
No EOL
822 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<activity
android:name=".ui.OHLoginActivity"
android:launchMode="singleTop"
android:theme="@style/OpenHumans"
android:label="Setup Open Humans"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:host="setup-openhumans"
android:scheme="androidaps" />
</intent-filter>
</activity>
</application>
</manifest>