-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix android build and add Github Workflows run for building Android (#61
) * Create build-android.yml * Update build-android.yml * Update build-android.yml * Update build.gradle * Update build-android.yml * Update gradle.properties * Update build.gradle * Update gradle.properties * Update build-android.yml * Update gradle.properties * Update build.gradle * Update gradle.properties * Update build.gradle * Update and rename build-android.yml to build-android-release.yml * Create build-android-debug.yml * Update build-android-release.yml * Update build-android-debug.yml * Update build-android-debug.yml * Update build-android-release.yml * Update and rename build-android-release.yml to build-android-release-aab.yml * Create android-release-apk.yml * Rename android-release-apk.yml to build-android-release-apk.yml * Update and rename build-android-debug.yml to build-android-debug-aab.yml * Create build-android-debug-apk.yml * Update build-android-debug-aab.yml
- Loading branch information
1 parent
c7e3666
commit 01156ee
Showing
5 changed files
with
200 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Build Android App Debug AAB | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
|
||
- name: Install NPM Packages | ||
working-directory: app | ||
run: npm i | ||
|
||
- name: Decode and save the keystore file | ||
working-directory: app/android/app | ||
run: | | ||
echo "${{ secrets.ANDROID_UPLOAD_KEYSTORE_FILE_BASE64 }}" | base64 --decode > my-upload-key.keystore | ||
- name: Build Android App AAB | ||
working-directory: app/android | ||
run: ./gradlew bundleDebug | ||
env: | ||
KEYSTORE_FILE: my-upload-key.keystore | ||
KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_ALIAS }} | ||
KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_KEY_PASSWORD }} | ||
|
||
- name: Upload AAB | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: app-debug.aab | ||
path: app/android/app/build/outputs/bundle/release/app-release.aab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Build Android App Debug APK | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
|
||
- name: Install NPM Packages | ||
working-directory: app | ||
run: npm i | ||
|
||
- name: Decode and save the keystore file | ||
working-directory: app/android/app | ||
run: | | ||
echo "${{ secrets.ANDROID_UPLOAD_KEYSTORE_FILE_BASE64 }}" | base64 --decode > my-upload-key.keystore | ||
- name: Build Android App APK | ||
working-directory: app/android | ||
run: ./gradlew assembleDebug | ||
env: | ||
KEYSTORE_FILE: my-upload-key.keystore | ||
KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_ALIAS }} | ||
KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_KEY_PASSWORD }} | ||
|
||
- name: Upload APK | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: app-debug.apk | ||
path: app/android/app/build/outputs/bundle/release/app-release.aab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Build Android App Release AAB | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
|
||
- name: Install NPM Packages | ||
working-directory: app | ||
run: npm i | ||
|
||
- name: Decode and save the keystore file | ||
working-directory: app/android/app | ||
run: | | ||
echo "${{ secrets.ANDROID_UPLOAD_KEYSTORE_FILE_BASE64 }}" | base64 --decode > my-upload-key.keystore | ||
- name: Build Android App AAB | ||
working-directory: app/android | ||
run: ./gradlew bundleRelease | ||
env: | ||
KEYSTORE_FILE: my-upload-key.keystore | ||
KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_ALIAS }} | ||
KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_KEY_PASSWORD }} | ||
|
||
- name: Upload AAB | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: app-release.aab | ||
path: app/android/app/build/outputs/bundle/release/app-release.aab |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Build Android App Release APK | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'zulu' | ||
java-version: '11' | ||
|
||
- name: Install NPM Packages | ||
working-directory: app | ||
run: npm i | ||
|
||
- name: Decode and save the keystore file | ||
working-directory: app/android/app | ||
run: | | ||
echo "${{ secrets.ANDROID_UPLOAD_KEYSTORE_FILE_BASE64 }}" | base64 --decode > my-upload-key.keystore | ||
- name: Build Android App APK | ||
working-directory: app/android | ||
run: ./gradlew assembleRelease | ||
env: | ||
KEYSTORE_FILE: my-upload-key.keystore | ||
KEYSTORE_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_PASSWORD }} | ||
KEY_ALIAS: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_ALIAS }} | ||
KEY_PASSWORD: ${{ secrets.ANDROID_UPLOAD_KEYSTORE_KEY_PASSWORD }} | ||
|
||
- name: Upload APK | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: app-release.apk | ||
path: app/android/app/build/outputs/apk/release/app-release.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters