android-P SDK 환경을 성공적으로 구성했습니다. Android 디자인 지원 라이브러리를 사용하려고하면 프로젝트 빌드 오류가 발생합니다. 프로젝트 구성은 다음과 같습니다.
IDE : 3.2 Canary 17 대상 API : 28 컴파일 API : 28
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.app.navigationpoc"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.0.0-alpha3'
implementation 'androidx.constraintlayout:constraintlayout:1.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-alpha3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-alpha3'
implementation 'com.android.support:design:28.0.0-alpha3'
implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
}
빌드 실패 오류는 다음과 같습니다.
매니페스트 병합 실패 : [androidx.core : core : 1.0.0-alpha3] AndroidManifest.xml : 22 : 18-86의 속성 application @ appComponentFactory value = (androidx.core.app.CoreComponentFactory)도 [com.android에 있습니다. .support : support-compat : 28.0.0-alpha3] AndroidManifest.xml : 22 : 18-91 value = (android.support.v4.app.CoreComponentFactory). 제안 : 재정의하려면 AndroidManifest.xml : 6 : 5-40 : 19의 요소에 'tools : replace = "android : appComponentFactory"'를 추가하세요.