From bfc5851f281cbd3531b4252fb9b27a4263ec3432 Mon Sep 17 00:00:00 2001 From: strawmanbobi Date: Thu, 27 Nov 2025 14:19:06 +0800 Subject: [PATCH] removed unused comments --- android-sdk/build.gradle | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/android-sdk/build.gradle b/android-sdk/build.gradle index 34ab543..452426e 100644 --- a/android-sdk/build.gradle +++ b/android-sdk/build.gradle @@ -6,10 +6,10 @@ buildscript { mavenCentral() google() maven { - url = "https://maven.aliyun.com/nexus/content/repositories/releases/" // ADD = + url = "https://maven.aliyun.com/nexus/content/repositories/releases/" } maven { - url = "https://maven.aliyun.com/nexus/content/repositories/snapshots" // ADD = + url = "https://maven.aliyun.com/nexus/content/repositories/snapshots" } } dependencies { @@ -26,10 +26,10 @@ allprojects { mavenCentral() google() maven { - url = "https://maven.aliyun.com/nexus/content/repositories/releases/" // ADD = + url = "https://maven.aliyun.com/nexus/content/repositories/releases/" } maven { - url = "https://maven.aliyun.com/nexus/content/repositories/snapshots" // ADD = + url = "https://maven.aliyun.com/nexus/content/repositories/snapshots" } } } @@ -141,12 +141,10 @@ afterEvaluate { } repositories { - // Sonatype OSSRH (the gateway to Maven Central) maven { name = "OSSRH" url = uri('https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/') credentials { - // These variables must be set in your ~/.gradle/gradle.properties username = project.hasProperty('mavenCentralUsername') ? project.mavenCentralUsername : '' password = project.hasProperty('mavenCentralPassword') ? project.mavenCentralPassword : '' }