diff --git a/build.gradle b/build.gradle index d540b14..16695fa 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,7 @@ buildscript { ext.kotlin_version = '1.2.50' repositories { google() + maven { url 'https://jitpack.io' } jcenter() } dependencies { @@ -18,6 +19,7 @@ buildscript { allprojects { repositories { google() + maven { url 'https://jitpack.io' } jcenter() } } diff --git a/morph-bottom-navigation-sample/build.gradle b/morph-bottom-navigation-sample/build.gradle index 583b86d..fbcd24c 100644 --- a/morph-bottom-navigation-sample/build.gradle +++ b/morph-bottom-navigation-sample/build.gradle @@ -8,7 +8,7 @@ android { compileSdkVersion 28 defaultConfig { applicationId "com.tbuonomo.morphbottomnavigation" - minSdkVersion 19 + minSdkVersion 17 targetSdkVersion 28 versionCode 1 versionName "1.0" diff --git a/morph-bottom-navigation/build.gradle b/morph-bottom-navigation/build.gradle index 910d899..9d52a3b 100644 --- a/morph-bottom-navigation/build.gradle +++ b/morph-bottom-navigation/build.gradle @@ -11,7 +11,7 @@ android { defaultConfig { - minSdkVersion 19 + minSdkVersion 17 targetSdkVersion 28 versionCode 1 versionName "1.0" @@ -38,7 +38,7 @@ dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'androidx.core:core-ktx:1.0.0-alpha3' api 'com.google.android.material:material:1.0.0-alpha3' - api 'com.tbuonomo:magicshapepath:1.0.0-alpha3' + api 'com.github.MarsXan:magic-shape-path:1.0.1' }