xManager/app/build.gradle

34 lines
804 B
Groovy
Raw Normal View History

2022-01-17 14:29:51 +01:00
plugins {
id 'com.android.application'
}
2021-02-11 17:39:03 +01:00
android {
2022-05-26 14:43:54 +02:00
compileSdkVersion 29
2021-02-11 17:39:03 +01:00
2022-01-17 14:29:51 +01:00
useLibrary 'org.apache.http.legacy'
2021-02-11 17:39:03 +01:00
defaultConfig {
applicationId "com.xc3fff0e.xmanager"
2022-05-26 14:43:54 +02:00
minSdkVersion 21
2023-02-01 11:29:32 +01:00
targetSdkVersion 29
2022-07-05 08:12:28 +02:00
versionCode 210209
2023-02-01 11:29:32 +01:00
versionName "4.4"
2021-02-11 17:39:03 +01:00
}
2022-01-17 14:29:51 +01:00
2021-02-11 17:39:03 +01:00
buildTypes {
release {
minifyEnabled false
2022-01-17 14:29:51 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2021-02-11 17:39:03 +01:00
}
}
}
dependencies {
2022-01-17 14:29:51 +01:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2021-09-29 19:19:07 +02:00
implementation 'androidx.appcompat:appcompat:1.2.0'
2022-01-17 14:29:51 +01:00
implementation 'com.google.android.material:material:1.4.0'
2022-04-05 16:04:09 +02:00
implementation 'com.google.android.gms:play-services-ads:20.1.0'
2022-01-17 14:29:51 +01:00
implementation 'com.google.code.gson:gson:2.8.7'
2021-02-11 17:39:03 +01:00
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
}