Skip to content

Commit b24f19c

Browse files
committed
Jetpack Compose
1 parent 153c763 commit b24f19c

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

ccp/build.gradle

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ android {
1616
defaultConfig {
1717
minSdk 21
1818
targetSdk 32
19-
19+
versionCode 1
20+
versionName "1.0"
2021
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2122
consumerProguardFiles "consumer-rules.pro"
2223

@@ -68,4 +69,17 @@ dependencies {
6869
testImplementation 'junit:junit:4.13.2'
6970
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
7071
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
72+
}
73+
74+
afterEvaluate {
75+
publishing {
76+
publications( {
77+
release(MavenPublication) {
78+
from components.release
79+
groupId = 'com.togisoft'
80+
artifactId = 'jetpack_country_code_picker'
81+
version = '1.0'
82+
}
83+
})
84+
}
7185
}

0 commit comments

Comments
 (0)