@@ -82,14 +82,14 @@ jobs:
82
82
- name : Install xcpretty
83
83
run : gem install xcpretty
84
84
85
- # Build the iOS app using Xcode (with xcpretty)
86
- - name : Build iOS App (Debug ) with xcpretty
85
+ # Build the iOS app using Xcode (with xcpretty, Release )
86
+ - name : Build iOS App (Release ) with xcpretty
87
87
working-directory : apps/external-display-example/ios
88
88
run : |
89
89
set -o pipefail && xcodebuild \
90
90
-workspace externaldisplayexample.xcworkspace \
91
91
-scheme externaldisplayexample \
92
- -configuration Debug \
92
+ -configuration Release \
93
93
-sdk iphonesimulator \
94
94
-derivedDataPath build | xcpretty
95
95
@@ -139,14 +139,14 @@ jobs:
139
139
- name : Install xcpretty
140
140
run : gem install xcpretty
141
141
142
- # Build the iOS app using Xcode (with xcpretty)
143
- - name : Build iOS App (Debug ) with xcpretty
142
+ # Build the iOS app using Xcode (with xcpretty, Release )
143
+ - name : Build iOS App (Release ) with xcpretty
144
144
working-directory : apps/external-display-example/ios
145
145
run : |
146
146
set -o pipefail && xcodebuild \
147
147
-workspace externaldisplayexample.xcworkspace \
148
148
-scheme externaldisplayexample \
149
- -configuration Debug \
149
+ -configuration Release \
150
150
-sdk iphonesimulator \
151
151
-derivedDataPath build | xcpretty
152
152
@@ -209,10 +209,10 @@ jobs:
209
209
working-directory : apps/external-display-example
210
210
run : echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties
211
211
212
- # Build the APK using Gradle (without running on a device )
212
+ # Build the APK using Gradle (Release )
213
213
- name : Build Android APK
214
214
working-directory : apps/external-display-example/android
215
- run : ./gradlew assembleDebug
215
+ run : ./gradlew assembleRelease
216
216
217
217
build-android-new-arch :
218
218
runs-on : ubuntu-latest
@@ -267,7 +267,7 @@ jobs:
267
267
working-directory : apps/external-display-example
268
268
run : echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties
269
269
270
- # Build the APK using Gradle (without running on a device )
270
+ # Build the APK using Gradle (Release )
271
271
- name : Build Android APK
272
272
working-directory : apps/external-display-example/android
273
- run : ./gradlew assembleDebug
273
+ run : ./gradlew assembleRelease
0 commit comments