これはエラーです:が解決に失敗しました:com.android.support.constraint:CONSTRAINT-レイアウト:1.1.0-beta1の
Error:(23, 13) Failed to resolve: com.android.support.constraint:constraint-
layout:1.1.0-beta1
Upgrade plugin to version 2.3.3 and sync project
Show in File
Show in Project Structure dialog
アップグレードプラグインで私をクリックすると、何も起こりません。私はこれを解決する方法を知らない。私はリポジトリmavenのGoogleを追加しようとしましたが、動作しません。ここで
は、アプリのコードです:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.google.googleio"
minSdkVersion 22
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'])
testCompile 'junit:junit:4.12'
compile 'com.android.support.constraint:constraint-layout:1.1.0-beta1'
}
これはgradleのプラグインです。あなたのプロジェクトはどのようにしてgradleのように見えますか? –
'constraint-layout:1.0.2'を設定しました –
https://developer.android.com/studio/build/dependencies.html#google-maven –