aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
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'