CODEDRAGON ㆍDevelopment/Android
오류메시지
This support library should not use a different version (23) than the compileSdkVersion (26) more... (Ctrl + F1) |
|
해결방법
v4의 버전도 현재 targetSDK버전과 동일하게 모두 같은 버전을 사용해주어야 합니다. 26(Oreo)를 쓴다면 아래와 같이 추가합니다.
해결 전 |
dependencies{ implementationfileTree(include:['*.jar'],dir:'libs') implementation'com.android.support:appcompat-v7:26.1.0' implementation'com.android.support.constraint:constraint-layout:1.0.2' testImplementation'junit:junit:4.12' androidTestImplementation'com.android.support.test:runner:1.0.1' androidTestImplementation'com.android.support.test.espresso:espresso-core:3.0.1' implementation'com.android.support:support-v4:23.+' } |
해결 후 |
dependencies{ implementationfileTree(include:['*.jar'],dir:'libs') implementation'com.android.support:appcompat-v7:26.1.0' implementation'com.android.support.constraint:constraint-layout:1.0.2' testImplementation'junit:junit:4.12' androidTestImplementation'com.android.support.test:runner:1.0.1' androidTestImplementation'com.android.support.test.espresso:espresso-core:3.0.1' implementation'com.android.support:support-v4:26.+'
} |
'Development > Android' 카테고리의 다른 글
assets 폴도, assets 폴더 생성 방법 (0) | 2018.04.29 |
---|---|
Android Drawable Importer Plugin - 해상도별 아이콘 생성해주는 안드로이드스튜디오 플로그인 (0) | 2018.02.24 |
SQLiteOpenHelper클래스의 메소드 (0) | 2018.01.10 |
SQLite - 내장된 관계형 데이터베이스 (0) | 2018.01.10 |
JSON (JavaScript Object Notation; 제이슨) (0) | 2018.01.10 |