我正在使用android AIDE应用程序制作android应用程序。在恢复出厂设置之前,我已经下载并安装了所有Google,Android和Firebase库。但是在恢复出厂设置后,当我再次安装AIDE应用时,它仅下载google&firebase库。当我将firebase依赖项放入build gradle中时,它不会为我下载firebase库。在这种情况下,请帮助我。
这是我的构建包:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.0"
defaultConfig {
applicationId "com.rb.aagrikoli"
minSdkVersion 18
targetSdkVersion 25
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}}
dependencies {
compile 'com.google.android.gms:play-services-ads:+'
compile 'com.google.firebase:firebase-auth:+'
compile 'com.android.support:cardview-v7:+'
compile 'com.android.support:support-v4:+'
compile 'com.android.support:appcompat-v7:+'
compile 'com.roughike:bottom-bar:2.3.1'
compile 'com.github.bumptech.glide:glide:4.7.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
}
apply plugin: 'com.google.gms.google-services'
答案 0 :(得分:0)
您应该在gradle文件中使用所有库的最新版本
尝试替换所有与目标SDK相符的库
还要将compileSdkVersion 21
buildToolsVersion "21.1.0"
更改为25(与目标sdk相同)