From f598cce27ad8b05cef10649a4bf69a09a121e933 Mon Sep 17 00:00:00 2001 From: "akash.patel" Date: Fri, 20 Aug 2021 12:42:50 +0530 Subject: [PATCH] changed target SDK --- LiquidNavBar/build.gradle | 9 +++------ build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/LiquidNavBar/build.gradle b/LiquidNavBar/build.gradle index 0fe2792..465eb8b 100644 --- a/LiquidNavBar/build.gradle +++ b/LiquidNavBar/build.gradle @@ -5,10 +5,10 @@ apply plugin: 'kotlin-kapt' apply plugin: 'com.github.dcendents.android-maven' android { - compileSdkVersion 31 + compileSdkVersion 30 defaultConfig { minSdkVersion 21 - targetSdkVersion 31 + targetSdkVersion 30 versionCode 2 versionName "0.0.2" @@ -16,6 +16,7 @@ android { } buildFeatures { dataBinding true + viewBinding true } buildTypes { release { @@ -32,11 +33,9 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) - testImplementation 'junit:junit:4.13.2' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' - implementation "tyrantgit:explosionfield:1.0.1" implementation 'androidx.constraintlayout:constraintlayout:2.1.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" @@ -47,9 +46,7 @@ dependencies { buildscript { ext.kotlin_version = '1.5.21' repositories { - jcenter() mavenCentral() - maven { url "https://jitpack.io" } } diff --git a/build.gradle b/build.gradle index ac97425..f81a776 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { ext.kotlin_version = '1.5.21' repositories { google() - jcenter() + mavenCentral() maven { url "https://jitpack.io" } } dependencies { @@ -20,7 +20,7 @@ buildscript { allprojects { repositories { google() - jcenter() + mavenCentral() maven { url "https://jitpack.io" } } }