我将把firebase集成到我的android项目中,但是在学习了本教程之后,我发现此错误出现了 错误:程序包android.support.v7.app不存在。 我试图清理该项目,并在android中检查了更新。 这是我的build.gradle [module]
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation
'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services-auth:17.0.0'
}
这是我的build.gradle [项目]
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
请帮忙解决这个问题,我整天都在寻找解决方案。谢谢
答案 0 :(得分:0)
如果您想使用'com.google.android.gms:play-services-auth:17.0.0'
(17.0.0版本),或者不想迁移androdiX使用16.0.0 implementation 'com.google.android.gms:play-services-auth:16.0.0'
版本,我认为您应该迁移到AndroidX。
答案 1 :(得分:0)
对于最新版本(3.4或更高版本)的Android Studio
代替
import android.support.v7.app.AppcompatActivity
使用此
import androidx.appcompat.app.AppcompatActivity
在MainActivity.java
或主Java文件中