blob: 3396a6cca57638e4574e40f37e5426246b2cc888 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
plugins {
id 'com.android.application'
}
android {
compileSdkVersion 29
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "com.xc3fff0e.xmanager"
minSdkVersion 21
targetSdkVersion 29
versionCode 1
versionName "2.7"
}
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.firebase:firebase-database:19.0.0'
implementation 'com.google.code.gson:gson:2.8.7'
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
}
|