2021-02-11 17:39:03 +01:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
|
|
|
useLibrary 'org.apache.http.legacy'
|
2021-09-29 19:19:07 +02:00
|
|
|
compileSdkVersion 29
|
2021-02-11 17:39:03 +01:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.xc3fff0e.xmanager"
|
|
|
|
minSdkVersion 21
|
2021-09-29 19:19:07 +02:00
|
|
|
targetSdkVersion 29
|
2021-02-11 17:39:03 +01:00
|
|
|
versionCode 1
|
2021-11-29 10:48:57 +01:00
|
|
|
versionName "2.6"
|
2021-02-11 17:39:03 +01:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-09-29 19:19:07 +02:00
|
|
|
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:25.12.0')
|
|
|
|
|
2021-02-11 17:39:03 +01:00
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
2021-09-29 19:19:07 +02:00
|
|
|
implementation 'com.google.firebase:firebase-messaging'
|
|
|
|
implementation 'com.google.firebase:firebase-analytics'
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
2021-02-11 17:39:03 +01:00
|
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
|
|
implementation 'com.google.firebase:firebase-database:19.0.0'
|
|
|
|
implementation 'com.github.bumptech.glide:glide:3.7.0'
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.0'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
|
|
|
|
}
|