File tree Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Expand file tree Collapse file tree 5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 1+ # Android release
2+ ``` bash
3+ npx cap sync
4+ # Build .aab file (will fail signing, use the next command to fix)
5+ npx cap build android --keystorepath " <path_to_keystore>" --keystorepass " <keystore_pass>" --keystorealias " <keystore_alias>" --keystorealiaspass " <keystore_alias_pass>" --androidreleasetype AAB
6+ # Sign the .aab
7+ jarsigner -verbose -keystore " <path_to_keystore>" " <path_to_aab>" " <keystore_alias>"
8+ ```
9+
10+ Then, ` mobile/android/app/build/outputs/bundle/release/app-released.aab ` is a signed .aab ready for publishing.
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
33android {
4- namespace " com.pulse .app"
4+ namespace " com.pulse_editor .app"
55 compileSdk rootProject. ext. compileSdkVersion
66 defaultConfig {
7- applicationId " com.pulse .app"
7+ applicationId " com.pulse_editor .app"
88 minSdkVersion rootProject. ext. minSdkVersion
99 targetSdkVersion rootProject. ext. targetSdkVersion
1010 versionCode 1
Original file line number Diff line number Diff line change 1- package com .pulse .app ;
1+ package com .pulse_editor .app ;
22
33import com .getcapacitor .BridgeActivity ;
44
Original file line number Diff line number Diff line change 22<resources >
33 <string name =" app_name" >Pulse Editor</string >
44 <string name =" title_activity_main" >Pulse Editor</string >
5- <string name =" package_name" >com.pulse .app</string >
6- <string name =" custom_url_scheme" >com.pulse .app</string >
5+ <string name =" package_name" >com.pulse_editor .app</string >
6+ <string name =" custom_url_scheme" >com.pulse_editor .app</string >
77</resources >
Original file line number Diff line number Diff line change 11import type { CapacitorConfig } from "@capacitor/cli" ;
22
33const config : CapacitorConfig = {
4- appId : "com.pulse .app" ,
4+ appId : "com.pulse_editor .app" ,
55 appName : "Pulse Editor" ,
66 webDir : "../build/next" ,
77 android : {
You can’t perform that action at this time.
0 commit comments