Skip to content

Commit e09b002

Browse files
author
cnouguier
committed
wip: Upgrade to Quasar 2 / Vue 3 - try to fix cordova build #393
1 parent db477e1 commit e09b002

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ jobs:
8888
language: objective-c
8989
osx_image: xcode13.2
9090
before_install:
91-
- sudo gem install cocoapods
9291
- nvm install 16
9392
- npm install -g yarn
9493
- brew update

src-cordova/config.xml.tpl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@
6767
<splash density="port-xxxhdpi" src="res/screens/android/screen-xxxhdpi-portrait.png"/>
6868
</platform>
6969
<platform name="ios">
70+
<hook src="hooks/ios-update-pods.sh" type="before_platform_add"/>
71+
<hook src="hooks/ios-run-pods.sh" type="after_platform_add"/>
7072
<allow-intent href="itms:*"/>
7173
<allow-intent href="itms-apps:*"/>
7274
<feature name="CDVWKWebViewEngine">

src-cordova/fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ platform :android do
2626
skip_upload_images: true,
2727
skip_upload_screenshots: true,
2828
check_superseded_tracks: true,
29-
apk: './platforms/android/app/build/outputs/apk/release/app-release.apk')
29+
aab: './platforms/android/app/build/outputs/apk/release/app-release.aab')
3030
end
3131
lane :prod do
3232
upload_to_play_store(track: 'production',
3333
skip_upload_metadata: true,
3434
skip_upload_images: true,
3535
skip_upload_screenshots: true,
3636
check_superseded_tracks: true,
37-
apk: './platforms/android/app/build/outputs/apk/release/app-release.apk')
37+
aab: './platforms/android/app/build/outputs/apk/release/app-release.aab')
3838
end
3939
end

0 commit comments

Comments
 (0)