2022-11-28 09:25:19 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2023-02-16 16:20:02 +01:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
2022-11-28 14:59:18 +01:00
|
|
|
<application>
|
2022-11-28 14:46:53 +01:00
|
|
|
|
2022-11-28 14:59:18 +01:00
|
|
|
<service
|
|
|
|
android:name=".nsclient.services.NSClientService"
|
|
|
|
android:enabled="true"
|
2023-08-27 00:16:23 +02:00
|
|
|
android:exported="false" />
|
2023-02-16 16:20:02 +01:00
|
|
|
<activity
|
|
|
|
android:name=".openhumans.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>
|
2022-11-28 14:59:18 +01:00
|
|
|
|
|
|
|
</application>
|
2022-11-28 09:25:19 +01:00
|
|
|
|
|
|
|
</manifest>
|