diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2021-02-08 19:01:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-08 19:01:57 +0100 |
commit | c69ab90bea57c81cff06b98f5ef0256aaa94e2af (patch) | |
tree | 6495e5c2606da7e4368e7afa5f00710efeea8d62 | |
parent | Delete build.gradle (diff) | |
download | xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar.gz xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar.bz2 xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar.lz xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar.xz xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.tar.zst xManager-c69ab90bea57c81cff06b98f5ef0256aaa94e2af.zip |
-rw-r--r-- | app/build.gradle | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..e1aa5a0 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,30 @@ +apply plugin: 'com.android.application'
+
+android {
+ useLibrary 'org.apache.http.legacy'
+ compileSdkVersion 28
+
+ defaultConfig {
+ applicationId "com.xc3fff0e.xmanager"
+ minSdkVersion 21
+ targetSdkVersion 28
+ versionCode 1
+ versionName "1.0"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ compile fileTree(dir: 'libs', include: ['*.jar'])
+ implementation 'androidx.appcompat:appcompat:1.1.0'
+ 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'
+}
|