diff --git a/CreditCardEntry/build.gradle b/CreditCardEntry/build.gradle index ba43c93..324b539 100644 --- a/CreditCardEntry/build.gradle +++ b/CreditCardEntry/build.gradle @@ -1,5 +1,6 @@ buildscript { repositories { + jcenter() mavenCentral() google() } @@ -10,14 +11,16 @@ buildscript { apply plugin: 'com.android.library' repositories { + jcenter() mavenCentral() + google() } android { compileSdkVersion 28 defaultConfig { - minSdkVersion 9 + minSdkVersion 14 targetSdkVersion 28 } @@ -36,5 +39,6 @@ android { } dependencies { - compile 'com.android.support:support-v4:25.3.1' + implementation 'com.android.support:support-annotations:27.1.1' + implementation 'com.android.support:support-compat:27.1.1' } diff --git a/CreditCardEntryDemo/build.gradle b/CreditCardEntryDemo/build.gradle index 1ad4f72..e008a7d 100644 --- a/CreditCardEntryDemo/build.gradle +++ b/CreditCardEntryDemo/build.gradle @@ -1,5 +1,6 @@ buildscript { repositories { + jcenter() mavenCentral() google() } @@ -10,14 +11,16 @@ buildscript { apply plugin: 'com.android.application' repositories { + jcenter() mavenCentral() + google() } android { compileSdkVersion 28 defaultConfig { - minSdkVersion 9 + minSdkVersion 14 targetSdkVersion 28 } @@ -35,6 +38,5 @@ android { } dependencies { - compile project(':CreditCardEntry') - compile 'com.android.support:support-v4:25.3.1' + implementation project(':CreditCardEntry') }