私はbuild.gradleAndroidの依存関係のエラー
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.example.myapp.myapplication"
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.thefinestartist:finestwebview:1.2.7'
testCompile 'junit:junit:4.12'
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}
内のコードを次があるが、私は次の行のエラー
compile 'com.android.support:appcompat-v7:26.0.0'
は、いずれかを助けることができる取得私はこの問題をどのように修正するのですか?
(https://stackoverflow.com/questions/42374151/all-com-android-support-libraries-must- [すべてのcom.android.supportライブラリがまったく同じバージョンの仕様を使用する必要があります]の可能性のある重複 – Ibrahim
サポートライブラリの3年前のバージョンに依存するライブラリ( 'com.thefinestartist:finestwebview:1.2.7')を使用しています。フォークを維持してサポートライブラリのバージョンに関して最新の状態に保つことができるように、そのライブラリの使用を中止するか、フォークすることをお勧めします。 – CommonsWare
yup.thanks CommonsWare.Becauseそれはそのerorrを与える – iCoders