Skip to content

Commit

Permalink
4.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
imodeljs-admin committed Sep 23, 2024
1 parent adaa093 commit 0b6ac34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ apply plugin: 'maven-publish'

// Downloads the AAR file from releases using wget so it can then be published to the local Maven repo
task assemble(type: Exec) {
commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/4.9.28/iTwinAndroidLibrary.aar'
commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/4.10.3/iTwinAndroidLibrary.aar'
}

// An alternative task for downloading (useful for authenticated downloads)
task assembleGitHub(type: Exec) {
commandLine 'gh', 'release', 'download', '4.9.28', '-p', 'iTwinAndroidLibrary.aar'
commandLine 'gh', 'release', 'download', '4.10.3', '-p', 'iTwinAndroidLibrary.aar'
}

publishing {
Expand All @@ -30,7 +30,7 @@ publishing {
publications {
maven(MavenPublication) {
groupId = 'com.github.itwin'
version = '4.9.28'
version = '4.10.3'
artifact('iTwinAndroidLibrary.aar') {
extension 'aar'
}
Expand Down

0 comments on commit 0b6ac34

Please sign in to comment.