Merge pull request #6116 from ByteHamster/shortcuts-fix

Fix shortcuts showing 'app not installed'
This commit is contained in:
ByteHamster 2022-10-02 13:18:59 +02:00 committed by GitHub
commit d251b1b8ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 6 deletions

View File

@ -47,11 +47,9 @@ android {
debug {
applicationIdSuffix ".debug"
resValue "string", "provider_authority", "de.danoeh.antennapod.debug.provider"
resValue "string", "application_id", "de.danoeh.antennapod.debug"
}
release {
resValue "string", "provider_authority", "de.danoeh.antennapod.provider"
resValue "string", "application_id", "de.danoeh.antennapod"
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.releaseConfig

View File

@ -8,7 +8,7 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="de.danoeh.antennapod.activity.MainActivity"
android:targetPackage="@string/application_id">
android:targetPackage="de.danoeh.antennapod">
<extra
android:name="fragment_tag"
android:value="QueueFragment" />
@ -23,7 +23,7 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="de.danoeh.antennapod.activity.MainActivity"
android:targetPackage="@string/application_id">
android:targetPackage="de.danoeh.antennapod">
<extra
android:name="fragment_tag"
android:value="EpisodesFragment" />
@ -38,7 +38,7 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="de.danoeh.antennapod.activity.MainActivity"
android:targetPackage="@string/application_id">
android:targetPackage="de.danoeh.antennapod">
<extra
android:name="fragment_tag"
android:value="SubscriptionFragment" />
@ -53,7 +53,7 @@
<intent
android:action="android.intent.action.VIEW"
android:targetClass="de.danoeh.antennapod.activity.MainActivity"
android:targetPackage="@string/application_id">
android:targetPackage="de.danoeh.antennapod">
<extra
android:name="refresh_on_start"
android:value="true" />