前提・実現したいこと
『ほんきで学ぶAndroidアプリ開発入門』という本を参考にしつつ、
Android StudioでJavaアプリを作る練習をしています。
build gradleのSyncエラーが解決できないです。
発生している問題・エラーメッセージ
Failed to resolve: androidx.appcompat:1.1.0: Affected Modules: app
該当のソースコード
Java
1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2 3buildscript { 4 repositories { 5 jcenter() 6 google() 7 } 8 dependencies { 9 classpath 'com.android.tools.build:gradle:4.0.0' 10 11 // NOTE: Do not place your application dependencies here; they belong 12 // in the individual module build.gradle files 13 } 14} 15 16allprojects { 17 repositories { 18 google() 19 jcenter() 20 21 maven { url 'https://maven.google.com/' } 22 } 23} 24 25task clean(type: Delete) { 26 delete rootProject.buildDir 27}
Java
1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 29 5 6 defaultConfig { 7 applicationId "com.kayosystem.honki.chapter05.lesson21" 8 minSdkVersion 28 9 targetSdkVersion 29 10 versionCode 1 11 versionName "1.0" 12 } 13 buildTypes { 14 release { 15 minifyEnabled false 16 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 17 } 18 } 19} 20 21dependencies { 22 compile fileTree(dir: 'libs', include: ['*.jar']) 23 //0608追加androidx.appcompat:appcompat:$appcompat_version 24 //0608取消compile 'com.android.support:appcompat-v7:24.+' 25 def appcompat_version = "1.1.0" 26 27 implementation "androidx.appcompat:$appcompat_version" 28 //For loading and tinting drawables on older versions of the platform 29 implementation "androidx.appcompat:appcompat-resources:$appcompat_version" 30}
試したこと
プロジェクトのbuild gradleとappファイル内のbuild gradle両方にmavenを入れています。
プロジェクトのbuild gradle内だけにmavenを記述していたところ同期エラーが発生したためです。
補足情報(FW/ツールのバージョンなど)
Android Studio
現在のバージョン:AndroidStudio4.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/10 12:30