Build Android APK via Myket maven mirror (verified)

- Myket mirror serves maven2 layout at root https://maven.myket.ir (proxies
  Maven Central + Google/AGP); android/build.gradle uses it
- gradle-mirror.init.gradle template injects the mirror into all modules and
  pins build-tools 36 + Java 17 (this env lacks build-tools 35 / JDK 21)
- ANDROID.md updated with the exact working build command
- Produces app-debug.apk (~4.5 MB)

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
soroush.asadi
2026-06-04 15:22:34 +03:30
parent 38691154c8
commit 84ccbea56a
3 changed files with 52 additions and 39 deletions
+2
View File
@@ -3,6 +3,7 @@
buildscript {
repositories {
maven { url 'https://maven.myket.ir' }
google()
mavenCentral()
}
@@ -19,6 +20,7 @@ apply from: "variables.gradle"
allprojects {
repositories {
maven { url 'https://maven.myket.ir' }
google()
mavenCentral()
}