summaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle15
1 files changed, 10 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 06d04bd49..e407390be 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,7 +1,7 @@
plugins {
id('com.android.application')
id('com.getkeepsafe.dexcount')
- id('com.github.triplet.play') version '3.4.0' apply false
+ id('com.github.triplet.play') version '3.6.0-agp4.2' apply false
}
apply from: "../common.gradle"
apply from: "../playFlavor.gradle"
@@ -76,9 +76,9 @@ android {
dexcount {
if (project.hasProperty("enableDexcountInDebug")) {
- runOnEachPackage enableDexcountInDebug.toBoolean()
+ runOnEachPackage = enableDexcountInDebug.toBoolean()
} else { // default to not running dexcount
- runOnEachPackage false
+ runOnEachPackage = false
}
}
}
@@ -111,10 +111,13 @@ android {
dependencies {
implementation project(":core")
+ implementation project(":event")
implementation project(':model')
implementation project(':net:sync:gpoddernet')
implementation project(':net:sync:model')
implementation project(':parser:feed')
+ implementation project(':playback:base')
+ implementation project(':playback:cast')
implementation project(':ui:app-start-intent')
implementation project(':ui:common')
@@ -122,11 +125,13 @@ dependencies {
implementation "androidx.appcompat:appcompat:$appcompatVersion"
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.1.0'
implementation "androidx.core:core:$coreVersion"
+ implementation "androidx.fragment:fragment:$fragmentVersion"
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation "androidx.media:media:$mediaVersion"
+ implementation "androidx.palette:palette:$paletteVersion"
implementation "androidx.preference:preference:$preferenceVersion"
- implementation 'androidx.recyclerview:recyclerview:1.1.0'
- implementation 'androidx.viewpager2:viewpager2:1.1.0-alpha01'
+ implementation "androidx.recyclerview:recyclerview:$recyclerViewVersion"
+ implementation "androidx.viewpager2:viewpager2:$viewPager2Version"
implementation "androidx.work:work-runtime:$workManagerVersion"
implementation "com.google.android.material:material:$googleMaterialVersion"