summaryrefslogtreecommitdiff
path: root/app/src/main
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-05-07 21:54:00 +0200
committerByteHamster <info@bytehamster.com>2022-05-07 21:54:02 +0200
commit0ea973cef1b7d3c58d465ecc0c6ffca6bc2b8c9f (patch)
tree63fc089aa643c85a8c562e05b4b6f0131aac8419 /app/src/main
parent25679c2aae1a11b36f3b2725cc028dfe9cc01770 (diff)
downloadAntennaPod-0ea973cef1b7d3c58d465ecc0c6ffca6bc2b8c9f.zip
Remove Gradle plugins that are no longer needed
- We use MultiDex now, so we no longer need dexcount - We can use a resValue instead of a resourcePlaceholder - Simplify getting default value of properties
Diffstat (limited to 'app/src/main')
-rw-r--r--app/src/main/res/xml/shortcuts.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/src/main/res/xml/shortcuts.xml b/app/src/main/res/xml/shortcuts.xml
index 03042f224..c802e2bba 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="${applicationId}">
+ android:targetPackage="@string/application_id">
<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="${applicationId}">
+ android:targetPackage="@string/application_id">
<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="${applicationId}">
+ android:targetPackage="@string/application_id">
<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="${applicationId}">
+ android:targetPackage="@string/application_id">
<extra
android:name="refresh_on_start"
android:value="true" />