Skip to content

Commit

Permalink
Bundle BinaryPrefs into target artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Urbanowicz committed Jan 14, 2019
1 parent c26e614 commit 32ac21f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -23,17 +23,17 @@ Then add following dependencies to the common module build.gradle:
sourceSets {
commonMain {
dependencies {
implementation 'com.netguru.kissme:kissme-common:0.2.0'
implementation 'com.netguru.kissme:kissme-common:0.2.1'
}
}
androidMain {
dependencies {
implementation 'com.netguru.kissme:kissme-android:0.2.0'
implementation 'com.netguru.kissme:kissme-android:0.2.1'
}
}
iosMain {
dependencies {
implementation 'com.netguru.kissme:kissme-ios:0.2.0'
implementation 'com.netguru.kissme:kissme-ios:0.2.1'
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Expand Up @@ -41,7 +41,7 @@ dependencies {
expectedBy project(':common')

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "com.github.yandextaxitech:binaryprefs:1.0.1"
api "com.github.yandextaxitech:binaryprefs:1.0.1"

testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testImplementation "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
Expand Down
1 change: 0 additions & 1 deletion sampleapp/app/build.gradle
Expand Up @@ -49,7 +49,6 @@ kotlin {
dependencies {
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
implementation "com.netguru.kissme:kissme-android:$libraryVersion"
implementation "com.github.yandextaxitech:binaryprefs:1.0.1" // TODO: This should be bundled inside kotlinmultiplatformstorage
}
}

Expand Down
2 changes: 1 addition & 1 deletion versions.gradle
@@ -1,5 +1,5 @@
ext {
androidMinSdkVersion = 23
androidCompileSdkVersion = 28
libraryVersion = '0.2.0'
libraryVersion = '0.2.1'
}

0 comments on commit 32ac21f

Please sign in to comment.