を取得しています以前のバージョンのAndroid Studioで行われた以前のプロジェクト。 I.ビルドツールのバージョンを3.0.1以降にアップグレードし、testImplementation , androidTestImplementation, implementation
IIという用語を認識させます。すべてimplementation
に置き換えられるように、あなたのbuild.gradleアプリのファイルを編集しcompile
前
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'com.android.support:appcompat-v7:27.0.2'
testImplementation 'junit:junit:4.12'
// RecyclerView
implementation 'com.android.support:recyclerview-v7:27.0.2'
はずです上記の溶液は、その後、その後、追加することによって固定されているAAPTに関するエラーが発生し
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:27.0.2'
testImplementation 'junit:junit:4.12'
// RecyclerView
compile 'com.android.support:recyclerview-v7:27.0.2'
読みますgradle.propertiesファイルの下の行
android.enableAapt2=false
これは流行であるか、毎回動作するかどうかわかりません
説明を追加するか、ログインしてください.. @Agha –