From 252cdd43abc09cd2a57f47cde0147a6927d83afc Mon Sep 17 00:00:00 2001 From: imodeljs-admin <38288322+imodeljs-admin@users.noreply.github.com> Date: Tue, 10 Oct 2023 16:46:20 +0000 Subject: [PATCH] 3.7.5 --- build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index fc17315..59c0534 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/4.1.15/iTwinAndroidLibrary.aar' + commandLine 'wget', '-qN', 'https://github.com/iTwin/mobile-native-android/releases/download/3.7.5/iTwinAndroidLibrary.aar' } // An alternative task for downloading (useful for authenticated downloads) task assembleGitHub(type: Exec) { - commandLine 'gh', 'release', 'download', '4.1.15', '-p', 'iTwinAndroidLibrary.aar' + commandLine 'gh', 'release', 'download', '3.7.5', '-p', 'iTwinAndroidLibrary.aar' } publishing { @@ -30,7 +30,7 @@ publishing { publications { maven(MavenPublication) { groupId = 'com.github.itwin' - version = '4.1.15' + version = '3.7.5' artifact('iTwinAndroidLibrary.aar') { extension 'aar' }