summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/build.gradle
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-02-08 10:29:41 +0300
committerAndrew Dolgov <[email protected]>2019-02-08 10:29:41 +0300
commitdb32a684712369baa46216f9710dea6cb77799c5 (patch)
treed6f5b958eff5e593bf91b1bfb1e3a24f809a4149 /org.fox.ttrss/build.gradle
parent406bf377c20606541ab6dc5464ca2009e41d9ffa (diff)
migrate from android support library to androidx
set target sdk 28
Diffstat (limited to 'org.fox.ttrss/build.gradle')
-rwxr-xr-xorg.fox.ttrss/build.gradle15
1 files changed, 7 insertions, 8 deletions
diff --git a/org.fox.ttrss/build.gradle b/org.fox.ttrss/build.gradle
index 3bbf843c..c9f6a45d 100755
--- a/org.fox.ttrss/build.gradle
+++ b/org.fox.ttrss/build.gradle
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 27
+ compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
@@ -9,7 +9,7 @@ android {
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
buildConfigField "boolean", "ENABLE_TRIAL", "true"
minSdkVersion 16
- targetSdkVersion 27 // we're not targeting SDK 25 because of this: https://issuetracker.google.com/issues/37103380#makechanges
+ targetSdkVersion 28 // we're not targeting SDK 25 because of this: https://issuetracker.google.com/issues/37103380#makechanges
}
signingConfigs {
@@ -56,12 +56,11 @@ dependencies {
implementation 'com.bogdwellers:pinchtozoom:0.1'
implementation 'com.github.bumptech.glide:glide:3.8.0'
implementation 'jp.wasabeef:glide-transformations:2.0.2'
- implementation 'com.android.support:recyclerview-v7:27.1.1'
- implementation 'com.android.support:cardview-v7:27.1.1'
- implementation 'com.android.support:support-v4:27.1.1'
- implementation 'com.android.support:appcompat-v7:27.1.1'
- implementation 'com.android.support:customtabs:27.1.1'
- implementation 'com.android.support:design:27.1.1'
+ implementation 'androidx.recyclerview:recyclerview:1.0.0'
+ implementation 'androidx.legacy:legacy-support-v4:1.0.0'
+ implementation 'androidx.appcompat:appcompat:1.0.2'
+ implementation 'androidx.browser:browser:1.0.0'
+ implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.shamanland:fab:0.0.8'
implementation 'com.ToxicBakery.viewpager.transforms:view-pager-transforms:1.2.32@aar'