Skip to content

Commit

Permalink
add deeplinks for language settings
Browse files Browse the repository at this point in the history
  • Loading branch information
frett committed Mar 12, 2024
1 parent a0426f2 commit 25b2a24
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,32 @@

<activity
android:name=".ui.languages.LanguageSettingsActivity"
android:exported="true"
android:label="@string/title_language_settings"
android:parentActivityName=".ui.dashboard.DashboardActivity"
android:screenOrientation="@integer/default_screen_orientation" />
android:screenOrientation="@integer/default_screen_orientation">
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />

<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="godtoolsapp.com" />
<data android:path="/deeplink/settings/language" />
</intent-filter>
<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:scheme="godtools" />
<data android:host="${hostGodtoolsCustomUri}" />
<data android:path="/settings/language" />
</intent-filter>
</activity>

<activity
android:name=".article.ui.ArticlesActivity"
Expand Down

0 comments on commit 25b2a24

Please sign in to comment.