summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com>2021-02-11 17:39:03 +0100
committerGitHub <noreply@github.com>2021-02-11 17:39:03 +0100
commitce7ed65dc66f998762c14cbdb9a48bb30da3a136 (patch)
tree8af156bdd0536f7d7b0459ff219591b6c5a52d47
parentRename build.gradle to build.gradle. (diff)
downloadxManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar.gz
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar.bz2
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar.lz
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar.xz
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.tar.zst
xManager-ce7ed65dc66f998762c14cbdb9a48bb30da3a136.zip
-rw-r--r--app/build.gradle30
1 files changed, 30 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..26f8921
--- /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.1"
+ }
+ 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'
+}