gpt4 book ai didi

java - 错误: package android. support.v7.app不存在

转载 作者:行者123 更新时间:2023-12-02 09:44:01 29 4
gpt4 key购买 nike

我打算将 firebase 集成到我的 android 项目中,但是在按照教程进行操作后,我发现出现了此错误错误:包 android.support.v7.app 不存在。我尝试清理该项目,并检查了 android 中的更新。这是我的 build.gradle [模块]

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
}

请帮助解决这个问题,我花了一整天的时间寻找解决方案。谢谢你

最佳答案

适用于 Android Studio 的最新版本(3.4 或更高版本)

而不是

import android.support.v7.app.AppcompatActivity

使用这个

import androidx.appcompat.app.AppcompatActivity

MainActivity.java或主java文件中

关于java - 错误: package android. support.v7.app不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56821250/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com