Skip to content

Commit

Permalink
4.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
imodeljs-admin committed Aug 23, 2024
1 parent e07b0f0 commit 46ff88e
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.9/iTwinAndroidLibrary.aar'
commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/4.9.10/iTwinAndroidLibrary.aar'
}

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

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

0 comments on commit 46ff88e

Please sign in to comment.