개발/Adroid
[Android Studio] 프로젝트 종속성 설정
KEI NETWORK
2019. 6. 11. 01:32
728x90
안드로이드 스튜디오 28 버전
외부 라이브러리 종속성 설정
28버전의 외부 라이브러리 종속성을 설정한다.
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-v4:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.android.support:design:28.0.0'
}
728x90