Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #5 from blotoutio/bumped_version_0.9.0
Browse files Browse the repository at this point in the history
Bumped version 0.9.0
  • Loading branch information
NejcZdovc authored Jul 21, 2021
2 parents 3e22192 + c777556 commit ce0a188
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
32 changes: 20 additions & 12 deletions blotoutSDK/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,24 @@ android {

}

publishing {
publications {
BlotoutPublication(MavenPublication) {
groupId 'com.analytics.blotout'
version '0.8.0'
artifactId 'BlotOut'
artifact("$buildDir/outputs/aar/blotoutSDK-release.aar")
}
allprojects{
repositories{
maven {url 'https://jitpack.io'}
}
}




publishing{
repositories {
mavenCentral()
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId 'com.analytics.blotout'
version '0.9.0'
artifactId 'Blotout'
}
}
}
}
Expand Down Expand Up @@ -82,8 +87,11 @@ dependencies {
implementation "androidx.room:room-ktx:2.3.0"
kapt "androidx.room:room-compiler:2.3.0"




//test
testImplementation deps.mockito
testImplementation deps.mockito_android
testImplementation deps.junit
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ object Constant {
const val BO_VERSION_KEY = "BOVersionKey";

const val BOSDK_MAJOR_VERSION = 0;
const val BOSDK_MINOR_VERSION = 8;
const val BOSDK_MINOR_VERSION = 9;
const val BOSDK_PATCH_VERSION = 0;


Expand Down

0 comments on commit ce0a188

Please sign in to comment.