Skip to content

Commit

Permalink
4.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
imodeljs-admin committed Jun 11, 2024
1 parent b4bb860 commit 661745c
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.7.25/iTwinAndroidLibrary.aar'
commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/4.8.0/iTwinAndroidLibrary.aar'
}

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

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

0 comments on commit 661745c

Please sign in to comment.