diff options
author | xC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com> | 2021-09-29 19:19:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 19:19:07 +0200 |
commit | 5cb404e3ba7337aa6485f81c13dccd374dedd3c3 (patch) | |
tree | 8fd9956a17a1ac6ba8513a91402daba83101e82a | |
parent | Update settings.gradle (diff) | |
download | xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar.gz xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar.bz2 xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar.lz xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar.xz xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.tar.zst xManager-5cb404e3ba7337aa6485f81c13dccd374dedd3c3.zip |
-rw-r--r-- | app/build.gradle | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle index 166d3c2..b7e5bfe 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -2,12 +2,12 @@ apply plugin: 'com.android.application' android {
useLibrary 'org.apache.http.legacy'
- compileSdkVersion 28
+ compileSdkVersion 29
defaultConfig {
applicationId "com.xc3fff0e.xmanager"
minSdkVersion 21
- targetSdkVersion 28
+ targetSdkVersion 29
versionCode 1
versionName "2.4"
}
@@ -20,8 +20,13 @@ android { }
dependencies {
+
+ implementation platform('com.google.firebase:firebase-bom:25.12.0')
+
compile fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.1.0'
+ implementation 'com.google.firebase:firebase-messaging'
+ implementation 'com.google.firebase:firebase-analytics'
+ implementation 'androidx.appcompat:appcompat:1.2.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'
|