aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorIván Ávalos <avalos@disroot.org>2023-01-08 17:00:11 -0600
committerIván Ávalos <avalos@disroot.org>2023-01-08 17:00:11 -0600
commitc6879f14223a82f9e67767fd7299606f6d43703a (patch)
treed47765638cbb886ef1f74e367890cc798aea2c7b /app/build.gradle
parentf14affd3ca86202b9cb5eb627264618c6ab8f0c2 (diff)
downloaddsub-c6879f14223a82f9e67767fd7299606f6d43703a.tar.gz
dsub-c6879f14223a82f9e67767fd7299606f6d43703a.tar.bz2
dsub-c6879f14223a82f9e67767fd7299606f6d43703a.zip
Migrate to AndroidX
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle21
1 files changed, 13 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index e380fdef..19f45111 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 30
+ compileSdkVersion 33
defaultConfig {
applicationId "me.avalos.dsub"
- minSdkVersion 15
- targetSdkVersion 29
+ minSdkVersion 26
+ targetSdkVersion 33
versionCode 208
versionName '5.5.3'
setProperty("archivesBaseName", "DSub $versionName")
@@ -59,16 +59,21 @@ android {
storeFile file('../debug.keystore')
}
}
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
}
dependencies {
implementation project(path: ':ServerProxy')
implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support:support-v4:27.1.+'
- implementation 'com.android.support:appcompat-v7:27.1.+'
- implementation 'com.android.support:mediarouter-v7:27.1.+'
- implementation 'com.android.support:recyclerview-v7:27.1.+'
- implementation 'com.android.support:design:27.1.+'
+ implementation 'androidx.legacy:legacy-support-v4:1.0.0'
+ implementation 'androidx.appcompat:appcompat:1.5.1'
+ implementation 'androidx.mediarouter:mediarouter:1.3.1'
+ implementation 'androidx.recyclerview:recyclerview:1.2.1'
+ implementation 'com.google.android.material:material:1.6.0'
googleImplementation 'com.google.android.gms:play-services-cast:8.1.0'
implementation 'com.sothree.slidinguppanel:library:3.0.0'
implementation 'de.hdodenhof:circleimageview:1.2.1'