From 7e39dbd4d6f22df5457b784678f8345e01c0db15 Mon Sep 17 00:00:00 2001 From: aran <1321289731@qq.com> Date: Fri, 23 Apr 2021 19:14:35 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E5=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle | 7 +++++++ mvvm/build.gradle | 3 +++ 2 files changed, 10 insertions(+) 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"