File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,12 @@ android {
2929 kotlinOptions {
3030 jvmTarget = ' 1.8'
3131 }
32+ publishing {
33+ singleVariant(" release" ) {
34+ withSourcesJar()
35+ withJavadocJar()
36+ }
37+ }
3238 namespace ' com.vtsen.sydneysuburbs'
3339}
3440
@@ -40,7 +46,7 @@ publishing {
4046 release(MavenPublication ) {
4147 groupId = ' com.github.vinchamp77'
4248 artifactId = ' demo-simple-android-lib'
43- version = ' 0.0.1 '
49+ version = ' 0.0.2 '
4450
4551 afterEvaluate {
4652 from components. release
Original file line number Diff line number Diff line change @@ -45,6 +45,12 @@ android {
4545 excludes + = ' /META-INF/{AL2.0,LGPL2.1}'
4646 }
4747 }
48+ publishing {
49+ singleVariant(" release" ) {
50+ withSourcesJar()
51+ withJavadocJar()
52+ }
53+ }
4854 namespace ' com.example.simpleandroidlibrary'
4955}
5056
@@ -59,6 +65,6 @@ dependencies {
5965 implementation ' androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
6066 implementation ' androidx.activity:activity-compose:1.6.1'
6167
62- // implementation project(':SydneySuburbs')
63- implementation ' com.github.vinchamp77:demo-simple-android-lib:0.0.1 '
68+ implementation project(' :SydneySuburbs' )
69+ // implementation 'com.github.vinchamp77:demo-simple-android-lib:0.0.2 '
6470}
You can’t perform that action at this time.
0 commit comments