我正在使用android AIDE应用程序制作android应用程序。在我工厂重置我的android之前,我有所有的谷歌,android&firebase库被下载&已安装。但在工厂重置后,当我再次安装AIDE应用程序时,它只下载谷歌&firebase库。当我把firebase依赖项放在buildgradle中时,它并没有为我下载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'
您应该在gradle文件中使用所有库的最新版本尝试替换与目标SDK相关的所有库同时将compileSdkVersion 21
buildToolsVersion "21.1.0"
更改为25(与目标sdk相同(