mirror of
https://github.com/Team-xManager/xManager.git
synced 2024-11-04 09:10:39 +01:00
34 lines
804 B
Groovy
34 lines
804 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
useLibrary 'org.apache.http.legacy'
|
|
|
|
defaultConfig {
|
|
applicationId "com.xc3fff0e.xmanager"
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 210209
|
|
versionName "4.4"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
implementation 'com.google.android.material:material:1.4.0'
|
|
implementation 'com.google.android.gms:play-services-ads:20.1.0'
|
|
implementation 'com.google.code.gson:gson:2.8.7'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
|
|
}
|