簡體   English   中英

錯誤:包 android.support.v7.app 不存在

[英]error: package android.support.v7.app does not exist

我打算將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 文件中

如果你想使用'com.google.android.gms:play-services-auth:17.0.0' (17.0.0 版本)或者你不想遷移 AndroidX 使用 16.0 版本,我認為你應該遷移到 AndroidX .0 implementation 'com.google.android.gms:play-services-auth:16.0.0'

AppcompatActivity 中的 c 必須為大寫:

import androidx.appcompat.app.AppCompatActivity

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM