diff options
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 2 | ||||
-rw-r--r-- | app/src/main/res/xml/shortcuts.xml | 8 |
2 files changed, 4 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle index 9d73b77e8..b52be3017 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 diff --git a/app/src/main/res/xml/shortcuts.xml b/app/src/main/res/xml/shortcuts.xml index c802e2bba..6ae07c4b9 100644 --- a/app/src/main/res/xml/shortcuts.xml +++ b/app/src/main/res/xml/shortcuts.xml @@ -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" /> |