PIPELINE COMPLETO QUE RODOU: 1. JDK 17 instalado em ~/jdk17 (portátil, sem admin) 2. Android SDK cmdline-tools + platform-34 + build-tools-34 + platform-tools instalados em ~/android-sdk 3. JAVA_HOME e ANDROID_HOME setados no PATH user 4. npm install + npx cap add android (estrutura Android gerada) 5. AndroidManifest.xml com 10 permissions (location background, vibrate, wake_lock, foreground service, post_notifications) 6. Keystore PERMANENTE shivao-release.keystore gerado via keytool (validade 10000d, RSA 2048) 7. build.gradle: signingConfigs.release + applicationId br.com.pontualtech.shivao + versionCode 2 + versionName 1.2.0 8. local.properties: sdk.dir=C:/Users/pontu/android-sdk (forward slashes — Java properties NÃO aceitam \) 9. ./gradlew bundleRelease assembleRelease — primeira build em 1m39s 10. APK 3.4MB + AAB 3.1MB — ambos signed com keystore permanente ARTEFATOS: - C:/Users/pontu/Downloads/Shivao-v1.2.0-capacitor.apk (3.4MB) - C:/Users/pontu/Downloads/Shivao-v1.2.0-capacitor.aab (3.1MB) — pronto pra Play Store - mobile/android/app/shivao-release.keystore (NÃO commitado, .gitignore protege) - C:/Users/pontu/Downloads/Shivao-keystore-backup/shivao-release-CAPACITOR.keystore (BACKUP) Release Forgejo v1.2.0 publicada com APK + AAB anexados. Próximo: criar conta Google Play ($25 1×) e submeter o AAB. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
22 lines
987 B
Properties
22 lines
987 B
Properties
# Project-wide Gradle settings.
|
|
|
|
# IDE (e.g. Android Studio) users:
|
|
# Gradle settings configured through the IDE *will override*
|
|
# any settings specified in this file.
|
|
|
|
# For more details on how to configure your build environment visit
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
org.gradle.jvmargs=-Xmx1536m
|
|
|
|
# When configured, Gradle will run in incubating parallel mode.
|
|
# This option should only be used with decoupled projects. More details, visit
|
|
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
|
# org.gradle.parallel=true
|
|
|
|
# AndroidX package structure to make it clearer which packages are bundled with the
|
|
# Android operating system, and which are packaged with your app's APK
|
|
# https://developer.android.com/topic/libraries/support-library/androidx-rn
|
|
android.useAndroidX=true
|