From 88de9b66d177ddc9f3fce179af11a5153b19eb31 Mon Sep 17 00:00:00 2001 From: JobGetabugit Date: Fri, 1 Nov 2019 19:29:04 +0300 Subject: [PATCH] fixed #1 updated to API 29 --- app/build.gradle | 12 ++++++------ droidLocationLibrary/build.gradle | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index a265d50..a70f236 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,12 +1,12 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 28 + compileSdkVersion 29 defaultConfig { applicationId "ax.synt.droidlocation.demo" minSdkVersion 15 - targetSdkVersion 28 + targetSdkVersion 29 versionCode 1 versionName "2.0" } @@ -19,8 +19,8 @@ android { } dependencies { - compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'androidx.appcompat:appcompat:1.0.2' - compile project(':droidLocationLibrary') - compile 'com.google.android.gms:play-services-location:16.0.0' + implementation fileTree(include: ['*.jar'], dir: 'libs') + implementation 'androidx.appcompat:appcompat:1.1.0' + implementation project(':droidLocationLibrary') + implementation 'com.google.android.gms:play-services-location:16.0.0' } diff --git a/droidLocationLibrary/build.gradle b/droidLocationLibrary/build.gradle index 871cc2f..d1986d5 100644 --- a/droidLocationLibrary/build.gradle +++ b/droidLocationLibrary/build.gradle @@ -35,11 +35,11 @@ ext { } android { - compileSdkVersion 28 + compileSdkVersion 29 defaultConfig { minSdkVersion 15 - targetSdkVersion 28 + targetSdkVersion 29 versionCode 2 versionName "2.0" }