diff --git a/build.gradle b/build.gradle index 61f2816..10a9959 100644 --- a/build.gradle +++ b/build.gradle @@ -5,10 +5,14 @@ buildscript { repositories { google() jcenter() + maven{ + url 'https://jitpack.io' + } } dependencies { classpath 'com.android.tools.build:gradle:3.4.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -19,6 +23,9 @@ allprojects { repositories { google() jcenter() + maven{ + url 'https://jitpack.io' + } } } diff --git a/mvvm/build.gradle b/mvvm/build.gradle index 4374464..a93c91c 100644 --- a/mvvm/build.gradle +++ b/mvvm/build.gradle @@ -1,8 +1,11 @@ plugins { id 'com.android.library' + id 'com.github.dcendents.android-maven' id 'kotlin-android' } +group = 'com.github.AranAndroid009' + android { compileSdkVersion 30 buildToolsVersion "30.0.3"