Updates for latest gradle/build tools

Ref GH-504.
This commit is contained in:
Darryl Pogue
2018-09-26 00:29:31 -07:00
committed by Darryl Pogue
parent f1396c7aad
commit f1f1ac3cbd
13 changed files with 60 additions and 64 deletions

View File

@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.example.anis.myapplication"
minSdkVersion 21
targetSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
@@ -20,7 +20,7 @@ android {
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
implementation fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
implementation 'com.android.support:appcompat-v7:23.4.0'
}