Implement intent filter; hide password for now

This commit is contained in:
2020-11-22 17:00:37 -06:00
parent 23f2978a64
commit 0859cec853
10 changed files with 155 additions and 42 deletions

View File

@@ -68,9 +68,16 @@
android:targetActivity=".activities.habits.list.ListHabitsActivity">
<intent-filter android:label="@string/main_activity_title">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="@string/app_name">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https"
android:host="loophabits.org"
android:pathPrefix="/sync" />
</intent-filter>
</activity-alias>
<activity