-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
41 additions
and
40 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 |
---|---|---|
|
@@ -39,32 +39,32 @@ jobs: | |
|
||
- name: Build Minotaur JS app and update capacitor | ||
shell: bash | ||
run: npm run sync | ||
run: npm run sync --prefix apps/wallet/ | ||
|
||
- name: Setup Android build environment | ||
uses: android-actions/setup-android@v3 | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x ./android/gradlew | ||
run: chmod +x .apps/wallet/android/gradlew | ||
|
||
- name: Update AndroidManifest.xml | ||
uses: damienaicheh/[email protected] | ||
with: | ||
android-manifest-path: './android/app/src/main/AndroidManifest.xml' | ||
android-manifest-path: '.apps/wallet/android/app/src/main/AndroidManifest.xml' | ||
version-code: ${{ env.NUMBER_OF_COMMITS }} | ||
version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}' | ||
print-file: true | ||
|
||
- name: Update gradle version for Android | ||
uses: damienaicheh/[email protected] | ||
with: | ||
build-gradle-path: './android/app/build.gradle' | ||
build-gradle-path: '.apps/wallet/android/app/build.gradle' | ||
version-code: ${{ env.NUMBER_OF_COMMITS }} | ||
version-name: '${{ env.MAJOR }}.${{ env.MINOR }}.${{ env.PATCH }}${{ env.PRE_RELEASE }}' | ||
print-file: true | ||
|
||
- name: Build app bundle | ||
working-directory: android | ||
working-directory: apps/wallet/android | ||
run: ./gradlew clean app:assembleRelease | ||
|
||
- uses: r0adkll/sign-android-release@v1 | ||
|
@@ -74,7 +74,7 @@ jobs: | |
env: | ||
BUILD_TOOLS_VERSION: 34.0.0 | ||
with: | ||
releaseDirectory: android/app/build/outputs/apk/release | ||
releaseDirectory: apps/wallet/android/app/build/outputs/apk/release | ||
signingKeyBase64: ${{ secrets.SIGNING_KEYSTORE }} | ||
alias: ${{ secrets.SIGNING_KEY_ALIAS }} | ||
keyStorePassword: ${{ secrets.SIGNING_STORE_PASSWORD }} | ||
|
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
16 changes: 8 additions & 8 deletions
16
apps/wallet/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"images" : [ | ||
"images": [ | ||
{ | ||
"filename" : "[email protected]", | ||
"idiom" : "universal", | ||
"platform" : "ios", | ||
"size" : "1024x1024" | ||
"filename": "[email protected]", | ||
"idiom": "universal", | ||
"platform": "ios", | ||
"size": "1024x1024" | ||
} | ||
], | ||
"info" : { | ||
"author" : "xcode", | ||
"version" : 1 | ||
"info": { | ||
"author": "xcode", | ||
"version": 1 | ||
} | ||
} |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
"info": { | ||
"version": 1, | ||
"author": "xcode" | ||
} | ||
} | ||
} |
28 changes: 14 additions & 14 deletions
28
apps/wallet/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"images" : [ | ||
"images": [ | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "splash-2732x2732-2.png", | ||
"scale" : "1x" | ||
"idiom": "universal", | ||
"filename": "splash-2732x2732-2.png", | ||
"scale": "1x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "splash-2732x2732-1.png", | ||
"scale" : "2x" | ||
"idiom": "universal", | ||
"filename": "splash-2732x2732-1.png", | ||
"scale": "2x" | ||
}, | ||
{ | ||
"idiom" : "universal", | ||
"filename" : "splash-2732x2732.png", | ||
"scale" : "3x" | ||
"idiom": "universal", | ||
"filename": "splash-2732x2732.png", | ||
"scale": "3x" | ||
} | ||
], | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
"info": { | ||
"version": 1, | ||
"author": "xcode" | ||
} | ||
} | ||
} |
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
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
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