Skip to content

Commit

Permalink
5.0.19
Browse files Browse the repository at this point in the history
  • Loading branch information
imodeljs-admin committed Dec 17, 2024
1 parent 06ff068 commit 848c418
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/5.0.18/iTwinAndroidLibrary.aar'
commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/5.0.19/iTwinAndroidLibrary.aar'
}

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

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

0 comments on commit 848c418

Please sign in to comment.