From e0d144bab3c3d0dcb60b006d6a907e4a7f5619c0 Mon Sep 17 00:00:00 2001 From: Nikola Simsic Date: Thu, 21 May 2026 12:55:56 +0200 Subject: [PATCH] Use nexus instead of maven repositories --- android/build.gradle | 4 ++-- android/gradle.properties | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index b7a6b0f..f12024a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -4,8 +4,8 @@ buildscript { } repositories { + maven { url "https://nexus.rnd.mendix.com/repository/repo1-proxy/" } google() - mavenCentral() } dependencies { @@ -65,7 +65,7 @@ android { } repositories { - mavenCentral() + maven { url "https://nexus.rnd.mendix.com/repository/repo1-proxy/" } google() } diff --git a/android/gradle.properties b/android/gradle.properties index 25d5a2f..a90251b 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -1,4 +1,6 @@ MendixNative_kotlinVersion=2.0.21 +mendix.repo1=https://nexus.rnd.mendix.com/repository/repo1-proxy/ +mendix.google=https://nexus.rnd.mendix.com/repository/repo1-proxy/ MendixNative_minSdkVersion=29 MendixNative_targetSdkVersion=36 MendixNative_compileSdkVersion=36