dependencies {
// compile fileTree(include: ['*.jar'], dir: 'libs')
implementation project(':MPChartLib')
implementation fileTree(include: ['*.jar'], dir: 'libs')
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:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
implementation 'com.google.android.gms:play-services-maps:10.2.6'
implementation 'com.google.android.gms:play-services-location:10.2.6'
implementation 'com.google.maps.android:android-maps-utils:0.4+'
implementation 'com.github.PhilJay:MPAndroidChart-Realm:v2.0.2@aar'
implementation 'com.github.wseemann:FFmpegMediaPlayer:1.0.4'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'co.trikita:anvil-cardview-v7:0.5.2'
}

 

dependecies에서 library를 추가해줄 때


implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'

 

28.*.*의 버젼을 맞춰주지 않으면 appcompat 또는 support library에서 중복적으로 사용되는

라이브러리로 인하여 빌드시에 충돌이 일어난다.

'안드로이드' 카테고리의 다른 글

LatLng로 GPS 주소 불러오기  (0) 2019.07.25
Android와 PHP서버 MySQL 연동  (0) 2019.07.08
Android webview에서 동영상 재생시키기  (0) 2016.08.04

+ Recent posts