summaryrefslogtreecommitdiffstats
path: root/app/build.gradle.
diff options
context:
space:
mode:
authorxC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com>2021-02-11 17:38:22 +0100
committerGitHub <noreply@github.com>2021-02-11 17:38:22 +0100
commit7b44513ed723e0845fa9c01214a8131bc2feee4c (patch)
treebfd74ac01f51ba4c52df0a0a4b20d1b24a2e9dbe /app/build.gradle.
parentUpdate README.md (diff)
downloadxManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar.gz
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar.bz2
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar.lz
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar.xz
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.tar.zst
xManager-7b44513ed723e0845fa9c01214a8131bc2feee4c.zip
Diffstat (limited to 'app/build.gradle.')
-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'
+}