From 7af3377da30a6dc6666609e0c733d6e7faf37eaa Mon Sep 17 00:00:00 2001 From: imodeljs-admin <38288322+imodeljs-admin@users.noreply.github.com> Date: Thu, 23 Jan 2025 12:20:25 +0000 Subject: [PATCH] 5.0.41 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 2b290ee..e30a43f 100644 --- a/build.gradle +++ b/build.gradle @@ -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.40/iTwinAndroidLibrary.aar' + commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/5.0.41/iTwinAndroidLibrary.aar' } // An alternative task for downloading (useful for authenticated downloads) task assembleGitHub(type: Exec) { - commandLine 'gh', 'release', 'download', '5.0.40', '-p', 'iTwinAndroidLibrary.aar' + commandLine 'gh', 'release', 'download', '5.0.41', '-p', 'iTwinAndroidLibrary.aar' } publishing { @@ -30,7 +30,7 @@ publishing { publications { maven(MavenPublication) { groupId = 'com.github.itwin' - version = '5.0.40' + version = '5.0.41' artifact('iTwinAndroidLibrary.aar') { extension 'aar' }