2022-01-17 14:29:51 +01:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
}
|
2021-02-11 17:39:03 +01:00
|
|
|
|
|
|
|
android {
|
2022-03-25 16:17:53 +01:00
|
|
|
compileSdkVersion 31
|
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"
|
|
|
|
minSdkVersion 21
|
2022-03-11 12:35:22 +01:00
|
|
|
targetSdkVersion 31
|
2022-03-16 16:04:03 +01:00
|
|
|
versionCode 2
|
2022-03-25 16:17:53 +01:00
|
|
|
versionName "3.2"
|
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'
|
2021-02-11 17:39:03 +01:00
|
|
|
implementation 'com.google.firebase:firebase-database:19.0.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'
|
|
|
|
}
|