File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
src/main/java/com/segment/analytics/kotlin/core Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -78,4 +78,8 @@ dependencies {
7878
7979apply from : rootProject. file(' gradle/artifacts-android.gradle' )
8080apply from : rootProject. file(' gradle/mvn-publish.gradle' )
81- apply from : rootProject. file(' gradle/codecov.gradle' )
81+ apply from : rootProject. file(' gradle/codecov.gradle' )
82+
83+ tasks. named(" signReleasePublication" ) {
84+ dependsOn(" bundleReleaseAar" )
85+ }
Original file line number Diff line number Diff line change @@ -38,4 +38,8 @@ dependencies {
3838
3939apply from : rootProject. file(' gradle/artifacts-core.gradle' )
4040apply from : rootProject. file(' gradle/mvn-publish.gradle' )
41- apply from : rootProject. file(' gradle/codecov.gradle' )
41+ apply from : rootProject. file(' gradle/codecov.gradle' )
42+
43+ tasks. named(" signReleasePublication" ) {
44+ dependsOn(" jar" )
45+ }
Original file line number Diff line number Diff line change 11package com.segment.analytics.kotlin.core
22
33object Constants {
4- const val LIBRARY_VERSION = " 1.19.2 "
4+ const val LIBRARY_VERSION = " 1.20.0 "
55 const val DEFAULT_API_HOST = " api.segment.io/v1"
66 const val DEFAULT_CDN_HOST = " cdn-settings.segment.com/v1"
77}
Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ android.useAndroidX=true
1919android.enableJetifier =true
2020# Kotlin code style for this project: "official" or "obsolete":
2121kotlin.code.style =official
22+ android.disableAutomaticComponentCreation =true
2223
2324# Deployment variables
2425GROUP =com.segment.analytics.kotlin
2526
26- VERSION_CODE =1192
27- VERSION_NAME =1.19.2
27+ VERSION_CODE =1200
28+ VERSION_NAME =1.20.0
2829
2930POM_NAME =Segment for Kotlin
3031POM_DESCRIPTION =The hassle-free way to add analytics to your Kotlin app.
You can’t perform that action at this time.
0 commit comments