diff options
author | ByteHamster <info@bytehamster.com> | 2019-09-29 13:24:11 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2019-10-04 11:23:50 +0200 |
commit | 7574ca792088cdbe66c1c2a66a4ab9d57cacf3c9 (patch) | |
tree | 4f214c7df9002d6e400573eb470e2ca1ab279261 /app | |
parent | c130498fc6848ed46c17c2ab552ce6ae9f58c8d6 (diff) | |
download | AntennaPod-7574ca792088cdbe66c1c2a66a4ab9d57cacf3c9.zip |
Adapted dependency versions to stable ones
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 33 |
1 files changed, 13 insertions, 20 deletions
diff --git a/app/build.gradle b/app/build.gradle index a342fbd1e..707ab6188 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -131,14 +131,12 @@ dependencies { } else { System.out.println("app: free build hack, skipping some dependencies") } - implementation "androidx.legacy:legacy-support-v4:1.0.0-beta01" - implementation "androidx.appcompat:appcompat:1.0.0-beta01" - implementation "com.google.android.material:material:1.0.0-beta01" - implementation "androidx.legacy:legacy-preference-v14:1.0.0-beta01" - implementation "androidx.gridlayout:gridlayout:1.0.0-beta01" - implementation "androidx.recyclerview:recyclerview:1.0.0-beta01" - compileOnly 'com.google.android.wearable:wearable:2.2.0' - + implementation "androidx.appcompat:appcompat:1.1.0" + implementation "androidx.preference:preference:1.1.0" + implementation "androidx.gridlayout:gridlayout:1.0.0" + implementation "androidx.recyclerview:recyclerview:1.0.0" + implementation "com.google.android.material:material:1.0.0" + compileOnly "com.google.android.wearable:wearable:$wearableSupportVersion" implementation "org.apache.commons:commons-lang3:$commonslangVersion" implementation "commons-io:commons-io:$commonsioVersion" implementation "org.jsoup:jsoup:$jsoupVersion" @@ -158,26 +156,21 @@ dependencies { transitive = true } implementation "com.yqritc:recyclerview-flexibledivider:$recyclerviewFlexibledividerVersion" - implementation("com.githang:viewpagerindicator:2.5.1@aar") { - exclude module: "support-v4" - } - + implementation "com.githang:viewpagerindicator:2.5.1@aar" implementation "com.github.shts:TriangleLabelView:$triangleLabelViewVersion" - implementation 'com.leinardi.android:speed-dial:1.0.2' // 1.0.2 uses support 27.1.1 ; newer versions use 28.0.0; - + implementation 'com.leinardi.android:speed-dial:3.0.0' implementation "com.github.AntennaPod:AntennaPod-AudioPlayer:$audioPlayerVersion" - implementation 'com.github.mfietz:fyydlin:v0.4.2' implementation 'com.github.ByteHamster:SearchPreference:v1.3.0' androidTestImplementation "org.awaitility:awaitility:$awaitilityVersion" androidTestImplementation 'com.nanohttpd:nanohttpd-webserver:2.1.1' androidTestImplementation "com.jayway.android.robotium:robotium-solo:$robotiumSoloVersion" - androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha4' - androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.1.0-alpha4' - androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.0-alpha4' - androidTestImplementation 'androidx.test:runner:1.1.0-alpha4' - androidTestImplementation 'androidx.test:rules:1.1.0-alpha4' + androidTestImplementation "androidx.test.espresso:espresso-core:$espressoVersion" + androidTestImplementation "androidx.test.espresso:espresso-contrib:$espressoVersion" + androidTestImplementation "androidx.test.espresso:espresso-intents:$espressoVersion" + androidTestImplementation 'androidx.test:runner:1.2.0' + androidTestImplementation 'androidx.test:rules:1.2.0' } if (project.hasProperty("antennaPodServiceAccountEmail")) { |