File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ buildscript {
1919 dependencies {
2020 classpath ' com.android.tools.build:gradle:4.2.2'
2121 classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
22- classpath ' com.github.dcendents:android-maven-gradle-plugin:2.1'
2322 // NOTE: Do not place your application dependencies here; they belong
2423 // in the individual module build.gradle files
2524 }
Original file line number Diff line number Diff line change 1+ jdk :
2+ - openjdk11
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22apply plugin : ' kotlin-android'
3+ apply plugin : ' maven-publish'
34
45android {
56 compileSdkVersion sdk_version
@@ -35,3 +36,15 @@ dependencies {
3536 implementation " androidx.appcompat:appcompat:$appcompatx_version "
3637 implementation " com.google.android.material:material:$material_version "
3738}
39+
40+ afterEvaluate {
41+ publishing {
42+ publications {
43+ release(MavenPublication ) {
44+ from components. release
45+ groupId = ' com.alexdeww.reactiveviewmodel'
46+ version = ' 2.3.5'
47+ }
48+ }
49+ }
50+ }
You can’t perform that action at this time.
0 commit comments