Skip to content

Commit

Permalink
Update version to 0.10.23
Browse files Browse the repository at this point in the history
  • Loading branch information
tcobbs-bentley committed May 4, 2022
1 parent 681dd6a commit 245b879
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ jobs:
uses: actions/checkout@v3
with:
repository: iTwin/mobile-native-android
ref: '3.1.9'
ref: '3.1.10'
token: ${{ secrets.GH_PAT }}
path: mobile-native-android

- name: Deploy mobile-native-android to maven local
if: steps.cache.outputs.cache-hit != 'true'
run: |
cd mobile-native-android
gh release download 3.1.9 -p '*.aar'
gh release download 3.1.10 -p '*.aar'
chmod +x gradlew
./gradlew publishToMavenLocal
cd ..
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.0__, 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.1.3__, and your app must use that same version of iTwin.js.
6 changes: 3 additions & 3 deletions mobile-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ android {
minSdk 24
targetSdk 31
versionCode 1
versionName '0.9.12'
versionName '0.10.23'

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
consumerProguardFiles 'consumer-rules.pro'
Expand Down Expand Up @@ -80,15 +80,15 @@ afterEvaluate {
from components.release
groupId = 'com.github.itwin'
artifactId = 'mobile-sdk-android'
version = '0.9.12'
version = '0.10.23'
}
// Creates a Maven publication called 'debug'.
debug(MavenPublication) {
from components.debug
artifact(sourceJar)
groupId = 'com.github.itwin'
artifactId = 'mobile-sdk-android'
version = '0.9.12-debug'
version = '0.10.23'
}
}
}
Expand Down

0 comments on commit 245b879

Please sign in to comment.