Skip to content

Commit da47f30

Browse files
Merge pull request #1156 from SteveGilvarry/master
Updates from Steve
2 parents 0557b66 + eb5c5d5 commit da47f30

File tree

7 files changed

+1706
-253
lines changed

7 files changed

+1706
-253
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-node@v4
2727
with:
28-
node-version: '18'
28+
node-version: '20'
2929
cache: 'npm'
3030
- run: npm ci
3131
- run: npm test || echo "No tests configured yet"
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v4
3838
- uses: actions/setup-node@v4
3939
with:
40-
node-version: '18'
40+
node-version: '20'
4141
cache: 'npm'
4242
- uses: actions/setup-java@v4
4343
with:
@@ -56,10 +56,9 @@ jobs:
5656
- uses: actions/checkout@v4
5757
- uses: actions/setup-node@v4
5858
with:
59-
node-version: '18'
59+
node-version: '20'
6060
- run: npm install
6161
- run: npm ci
62-
- run: sudo xcodebuild -workspace App.xcworkspace -scheme App -configuration Debug -destination 'generic/platform=iOS Simulator' build
6362
- run: npm install -g cordova@12.0.0
6463
- run: cordova platform add ios
6564
- run: cordova build ios --debug

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ dist/
2121
.gradle/
2222
**/docgen/
2323
.env
24+
.idea/
2425

2526

2627
www/templates/zmNinja.code-workspace

build_android.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ ver=${APPVER//.}9
121121

122122
echo "About to build version: $APPVER [$ver] ($MODE)"
123123
echo $ver
124-
read -p "Press any key..."
125124

126125
echo "Removing wkwebview..."
127126
cordova plugin remove cordova-plugin-ionic-webview > /dev/null 2>&1

config.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
<preference name="SplashMaintainAspectRatio" value="true" />
2828
<preference name="FadeSplashScreen" value="false" />
2929
<preference name="BackgroundColor" value="#444444" />
30-
<preference name="android-targetSdkVersion" value="34" />
31-
<preference name="android-compileSdkVersion" value="34" />
30+
<preference name="android-targetSdkVersion" value="35" />
31+
<preference name="android-compileSdkVersion" value="35" />
3232
<preference name="android-minSdkVersion" value="22" />
3333
<preference name="SplashScreenBackgroundColor" value="#ababab" />
3434
<preference name="StatusBarOverlaysWebView" value="false" />

hooks/after_platform_add/010_create_notification_extension.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ module.exports = function(context) {
7676
if (cfg.buildSettings.PRODUCT_NAME === `"${extName}"`) {
7777
cfg.buildSettings.PRODUCT_BUNDLE_IDENTIFIER = desiredExtBundleId;
7878
cfg.buildSettings.INFOPLIST_FILE = `"${extName}/${extName}-Info.plist"`;
79+
cfg.buildSettings.DEVELOPMENT_TEAM = 'P97TSUFFDX';
7980

8081
// sensible defaults for extensions
8182
cfg.buildSettings.SDKROOT = 'iphoneos';

0 commit comments

Comments
 (0)