summaryrefslogtreecommitdiff
path: root/org.fox.ttrss/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'org.fox.ttrss/build.gradle')
-rwxr-xr-xorg.fox.ttrss/build.gradle15
1 files changed, 10 insertions, 5 deletions
diff --git a/org.fox.ttrss/build.gradle b/org.fox.ttrss/build.gradle
index bda4f9ed..98b3552d 100755
--- a/org.fox.ttrss/build.gradle
+++ b/org.fox.ttrss/build.gradle
@@ -1,15 +1,20 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 30
- buildToolsVersion "28.0.3"
+ compileSdkVersion 31
+ buildToolsVersion "29.0.2"
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
defaultConfig {
applicationId "org.fox.ttrss"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
buildConfigField "boolean", "ENABLE_UPDATER", "false"
- minSdkVersion 16
- targetSdkVersion 30
+ minSdkVersion 24
+ targetSdkVersion 31
}
signingConfigs {
@@ -58,7 +63,7 @@ dependencies {
implementation files('libs/glide-transformations-2.0.2.jar')
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'androidx.appcompat:appcompat:1.3.0'
+ implementation 'androidx.appcompat:appcompat:1.4.0'
implementation 'androidx.browser:browser:1.0.0'
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
implementation 'com.github.natario1:NestedScrollCoordinatorLayout:5a33a7dbd8'