1. ホーム
  2. android

[解決済み] 解決に失敗しました:com.android.support:appcompat-v7:26.0.0

2023-06-28 09:55:11

質問

Android Studioでこの問題が発生しました。

Error:(22, 13) Failed to resolve: com.android.support:appcompat-v7:26.0.0
<a href="install.m2.repo">Install Repository and sync project</a><br><a href="openFile:C:/Users/username/AndroidStudioProjects/ElectroSave/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>

これは私のGradleのコードです。

apply plugin: 'com.android.application'

android {
       compileSdkVersion 26
      buildToolsVersion "25.0.2"
    defaultConfig {
    applicationId "com.example.noelly.myapplication"
    minSdkVersion 19
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
}
   buildTypes {
      release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'




 dependencies {
     compile fileTree(dir: 'libs', include: ['*.jar'])
     compile 'com.android.support:appcompat-v7:26.0.0'
}

どのように解決するのですか?

バージョン 26.0.0 以降のサポートライブラリを使用するには、以下のように Google の Maven リポジトリをプロジェクトの build.gradle ファイルに追加する必要があります。 https://developer.android.com/topic/libraries/support-library/setup.html

allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }

Android Studio 3.0.0以降用です。

allprojects {
        repositories {
            jcenter()
            google()
        }
    }