diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-02 17:46:39 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-02 17:46:39 +0200 |
commit | 223eb659a73e2a42f119bdd197bcd41b00e4b09d (patch) | |
tree | 6e7e11ebbfa985b24141e37b21d7406302df4983 /README.md | |
parent | 2d8e55fd49a7aca6ce46726a216aeb22089f142d (diff) |
android: set up
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -4,3 +4,25 @@ # .env EXPO_PUBLIC_API_URL= ``` + +# Set up for android + +1. Generate a release key + +``` +keytool -genkey -v -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -storepass KEYSTORE_PASSWORD -keypass KEY_PASSWORD -alias cas4 -keystore release.keystore -dname "CN=Santo Cariotti, OU=Unknown, O=Unknown, L=Bologna, ST=Italy, C=IT" +``` + +2. Build Android app + +``` +eas build --platform android +``` + +3. Download the artifact from Expo page + +4. Create APKS from the AAB file + +``` +java -jar bundletool-all-1.17.1.jar build-apks --bundle=application-XXXX.aab --output=cas.apks --mode=universal --ks android/keystores/release.keystore --ks-key-alias=cas4 +``` |