2021-08-20 19:37:38 +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-08-20 19:37:38 +02:00
|
|
|
|
|
|
|
<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>
|