IT_World
implementation 'com.android.support:design:28.0.0' 에러 본문
안드로이드 스튜디오에서의 지원하는 라이브러리인 ExifInterface 지원 라이브러리 를 사용하려는 도중 Gradle에 값을 추가하였는데, 에러가 나오는경우 아래와같이 처리할 수 있다.
developer.android.com/topic/libraries/support-library/packages
위에서 기재되어있는 ExifInterface 지원 라이브러리 를 사용하려고 아래와같이 값을 입력하였다,
implementation 'com.android.support:design:28.0.0' 위와같이 입력하였는데, 에러가 나온다.
com.android.support:design:28.0.0
경로는
com.google.android.material:material:1.0.0-rc01
위의 경로로 변경되었다.
따라서 값을 추가하고자할때, 아래와같이 추가하여야 한다.
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'com.google.android.material:material:1.0.0-rc01'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
위와같이 입력하게되면, 정상적으로 해결되지 않고 새로운 에러가 생겼다.
Merging Errors: Error: tools:replace specified at line for attribute android:appComponentFactory, but no new value specified.app main manifest (this file), line 5 Error: Validation failed, exiting Instagram.app main manifest (this file)
android.useAndroidX=true
android.enablejetifier=true
#추가