diff --git a/TouchMouse/build.gradle b/TouchMouse/build.gradle index 74d9c34..31d2e85 100644 --- a/TouchMouse/build.gradle +++ b/TouchMouse/build.gradle @@ -2,6 +2,9 @@ plugins { id 'com.android.library' id 'kotlin-android' } +apply plugin: 'com.github.dcendents.android-maven' +group = 'github.hongbeomi.dividerseekbar' +version = '1.0.1' android { compileSdkVersion 30 @@ -11,7 +14,7 @@ android { minSdkVersion 21 targetSdkVersion 30 versionCode 1 - versionName "1.0" + versionName "1.0.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" consumerProguardFiles "consumer-rules.pro" diff --git a/build.gradle b/build.gradle index 24d1382..c10f1d1 100644 --- a/build.gradle +++ b/build.gradle @@ -4,11 +4,12 @@ buildscript { repositories { google() jcenter() + maven { url "https://jitpack.io" } } dependencies { classpath "com.android.tools.build:gradle:4.1.0" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - + classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }