We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 153c763 commit b24f19cCopy full SHA for b24f19c
ccp/build.gradle
@@ -16,7 +16,8 @@ android {
16
defaultConfig {
17
minSdk 21
18
targetSdk 32
19
-
+ versionCode 1
20
+ versionName "1.0"
21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
22
consumerProguardFiles "consumer-rules.pro"
23
@@ -68,4 +69,17 @@ dependencies {
68
69
testImplementation 'junit:junit:4.13.2'
70
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
71
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
85
}
0 commit comments