728x90
오늘 개발을 했는데 sdk 최소 버전을 너무 높게 했더니 오류가 나오면서 설치를 하지 못한다.
자신의 스마트폰에 맞게 버전을 바꾸고 다시 apk 생성
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.landofsky.landofsky"
minSdkVersion 26
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(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
implementation 'com.google.android.gms:play-services-ads:15.0.1'
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'
}
728x90
반응형
'개발 > 안드로이드' 카테고리의 다른 글
gsjava 안드로이드 리스트뷰 전체 삭제 (0) | 2018.09.06 |
---|---|
TextInputLayout TextInputEditText 사용하기 (0) | 2018.09.06 |
안보이고 시작하기 (0) | 2018.09.05 |
Logcat 으로 보기 (0) | 2018.09.05 |
안드로이드 리스트 뷰 (0) | 2018.09.05 |