From ce7ed65dc66f998762c14cbdb9a48bb30da3a136 Mon Sep 17 00:00:00 2001 From: xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> Date: Fri, 12 Feb 2021 00:39:03 +0800 Subject: Add files via upload --- app/build.gradle | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 app/build.gradle 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' +} -- cgit v1.2.3