Skip to content

Commit 7563819

Browse files
committed
Update to use 0.0.2
1 parent dbaf979 commit 7563819

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

SydneySuburbs/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff 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

app/build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)