summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorTaco <SkytkRSfan3895@gmail.com>2023-04-01 17:16:53 -0400
committerGitHub <noreply@github.com>2023-04-01 23:16:53 +0200
commit78f65349d597a2d3b251323f1ea4def77c4993d4 (patch)
tree608dd121c48b8d8f027fb588a5e291e61c78f001 /app
parent8c9b61e599df6124e39066b409f62cfed083d849 (diff)
downloadAntennaPod-78f65349d597a2d3b251323f1ea4def77c4993d4.zip
Update AGP to 7.4.0 (#5655)
Diffstat (limited to 'app')
-rw-r--r--app/build.gradle12
-rw-r--r--app/src/main/AndroidManifest.xml12
2 files changed, 13 insertions, 11 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 47e7a550a..9c6edb45b 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
plugins {
id('com.android.application')
- id('com.github.triplet.play') version '3.7.0-agp4.2' apply false
+ id('com.github.triplet.play') version '3.7.0' apply false
}
apply from: "../common.gradle"
apply from: "../playFlavor.gradle"
@@ -56,23 +56,19 @@ android {
}
}
- lintOptions {
+ lint {
disable 'ObsoleteLintCustomCheck', 'CheckResult', 'UnusedAttribute', 'BatteryLife', 'InflateParams',
'RestrictedApi', 'TrustAllX509TrustManager', 'ExportedReceiver', 'AllowBackup', 'VectorDrawableCompat',
'StaticFieldLeak', 'UseCompoundDrawables', 'NestedWeights', 'Overdraw', 'UselessParent', 'TextFields',
'AlwaysShowAction', 'Autofill', 'ClickableViewAccessibility', 'ContentDescription',
'KeyboardInaccessibleWidget', 'LabelFor', 'SetTextI18n', 'HardcodedText', 'RelativeOverlap',
'RtlCompat', 'RtlHardcoded', 'MissingMediaBrowserServiceIntentFilter', 'VectorPath',
- 'InvalidPeriodicWorkRequestInterval'
+ 'InvalidPeriodicWorkRequestInterval', 'NotifyDataSetChanged', 'RtlEnabled'
}
- aaptOptions {
+ androidResources {
additionalParameters "--no-version-vectors"
}
-
- dexOptions {
- jumboMode true
- }
}
dependencies {
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index d784e8709..a1b596d6c 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -76,7 +76,6 @@
<activity
android:name=".activity.SplashActivity"
- android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenSize"
android:exported="true">
<intent-filter>
@@ -99,7 +98,6 @@
android:configChanges="keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout|density|uiMode|keyboard|navigation"
android:windowSoftInputMode="stateAlwaysHidden"
android:launchMode="singleTask"
- android:label="@string/app_name"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
@@ -111,14 +109,21 @@
android:host="antennapod.org"
android:pathPrefix="/deeplink/main"
android:scheme="https" />
+ </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:host="antennapod.org"
android:pathPrefix="/deeplink/search"
android:scheme="https" />
</intent-filter>
<intent-filter>
- <action android:name="de.danoeh.antennapod.intents.MAIN_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
+ <action android:name="de.danoeh.antennapod.intents.MAIN_ACTIVITY" />
<action android:name="android.service.quicksettings.action.QS_TILE_PREFERENCES"/>
</intent-filter>
</activity>
@@ -382,6 +387,7 @@
</provider>
<meta-data
+ tools:ignore="Deprecated"
android:name="com.google.android.actions"
android:resource="@xml/actions" />
</application>