diff --git a/README.md b/README.md index b7089a0..2153b9f 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ This is pre-release software and provided as-is. This repository contains the Kotlin code used to build [iTwin.js](http://www.itwinjs.org) applications on Android devices. ## Note -This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 3.2.2__, and your app must use that same version of iTwin.js. +This package is designed to be used with the [@itwin/mobile-sdk-core](https://github.com/iTwin/mobile-sdk-core) and [@itwin/mobile-ui-react](https://github.com/iTwin/mobile-ui-react) packages. Those two packages are intended to be installed via npm, and their version number must match the version number of this package. Furthermore, they use __iTwin.js 3.2.3__, and your app must use that same version of iTwin.js. diff --git a/mobile-sdk/build.gradle b/mobile-sdk/build.gradle index 32a67a0..342ebcf 100644 --- a/mobile-sdk/build.gradle +++ b/mobile-sdk/build.gradle @@ -17,7 +17,7 @@ android { minSdk 24 targetSdk 31 versionCode 1 - versionName '0.10.27' + versionName '0.10.28' testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' consumerProguardFiles 'consumer-rules.pro' @@ -52,7 +52,7 @@ dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.5.0' implementation 'net.openid:appauth:0.11.1' - api 'com.github.itwin:mobile-native-android:3.2.10' + api 'com.github.itwin:mobile-native-android:3.2.11' // testImplementation 'junit:junit:4.+' // androidTestImplementation 'androidx.test.ext:junit:1.1.3' @@ -82,7 +82,7 @@ afterEvaluate { from components.release groupId = 'com.github.itwin' artifactId = 'mobile-sdk-android' - version = '0.10.27' + version = '0.10.28' } // Creates a Maven publication called 'debug'. debug(MavenPublication) { @@ -90,7 +90,7 @@ afterEvaluate { artifact(sourceJar) groupId = 'com.github.itwin' artifactId = 'mobile-sdk-android' - version = '0.10.27-debug' + version = '0.10.28-debug' } } }