編集:Android StudioとJava SDKを完全に再インストールして問題を修正しました。Android Studio Gradle Project Sync - エスプレッソコアとAppcompatを解決できませんでした[SOLVED]
私はアプリの開発で私の冒険を始めているので、私はhttps://developer.android.com/training/basics/firstapp/index.htmlにある 'First App'チュートリアルに従っています。
- Error:(23, 24) Failed to resolve: com.android.support.test:espresso-core:2.2.2
- Error:(26, 13) Failed to resolve: com.android.support:appcompat-v7:26.+
マイ(デフォルト/自動生成)build.gradle:Iものの
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.example.myfirstapp"
minSdkVersion 15
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.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
ただし、デフォルトの '空のアクティビティ' プロジェクトを作成し、それを構築しようとしている上で、私は次のエラーを受け取りますいくつかの関連するスタックオーバーフローの質問を見て、私はまだ動作するソリューションを見つけることです。私はAndroid Studio 2.3.3の新しくデフォルトのインストールを使用しています。この問題の解決に役立つ情報があればコメントしてください。事前に
おかげで、 オリ
どのAndroidスタジオのバージョンは使用していますか? –