Skip to content

Commit 4a9fee6

Browse files
committed
up version
1 parent 4ecaa8a commit 4a9fee6

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ This is a Kotlin MultiPlatform library that provides access to the resources on
5151
- 0.12.0
5252
- kotlin 1.4.0
5353
- 0.13.0
54+
- 0.13.1
5455

5556
## Installation
5657
root build.gradle
@@ -61,7 +62,7 @@ buildscript {
6162
}
6263
6364
dependencies {
64-
classpath "dev.icerock.moko:resources-generator:0.13.0"
65+
classpath "dev.icerock.moko:resources-generator:0.13.1"
6566
}
6667
}
6768
@@ -78,7 +79,7 @@ project build.gradle
7879
apply plugin: "dev.icerock.mobile.multiplatform-resources"
7980
8081
dependencies {
81-
commonMainApi("dev.icerock.moko:resources:0.13.0")
82+
commonMainApi("dev.icerock.moko:resources:0.13.1")
8283
}
8384
8485
multiplatformResources {
@@ -364,8 +365,7 @@ Sample `mpp-hierarhical` contains usage of `org.jetbrains.kotlin.native.cocoapod
364365
## Set Up Locally
365366
- The [resources directory](resources) contains the `resources` library;
366367
- The [gradle-plugin directory](gradle-plugin) contains a gradle plugin with a `MR` class generator;
367-
- The [sample directory](sample) contains sample apps for Android and iOS; plus the mpp-library connected to the apps;
368-
- For local testing use the `./publishToMavenLocal.sh` script - so that sample apps use the locally published version.
368+
- The [sample directory](sample) contains sample apps for Android and iOS; plus the mpp-library connected to the apps.
369369

370370
## Contributing
371371
All development (both new features and bug fixes) is performed in the `develop` branch. This way `master` always contains the sources of the most recently released version. Please send PRs with bug fixes to the `develop` branch. Documentation fixes in the markdown files are an exception to this rule. They are updated directly in `master`.

buildSrc/src/main/kotlin/Deps.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ object Deps {
1919

2020
private const val mokoGraphicsVersion = "0.4.0"
2121
private const val mokoParcelizeVersion = "0.4.0"
22-
const val mokoResourcesVersion = "0.13.0"
22+
const val mokoResourcesVersion = "0.13.1"
2323

2424
object Android {
2525
const val compileSdk = 28

gradle.properties

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ kotlin.mpp.enableGranularSourceSetsMetadata=true
88
kotlin.mpp.enableCompatibilityMetadataVariant=true
99

1010
android.useAndroidX=true
11-
android.enableJetifier=true
1211

1312
# Workaround for Bintray treating .sha512 files as artifacts
1413
# https://github.com/gradle/gradle/issues/11412

0 commit comments

Comments
 (0)