@@ -82,14 +82,14 @@ jobs:
8282 - name : Install xcpretty
8383 run : gem install xcpretty
8484
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
8787 working-directory : apps/external-display-example/ios
8888 run : |
8989 set -o pipefail && xcodebuild \
9090 -workspace externaldisplayexample.xcworkspace \
9191 -scheme externaldisplayexample \
92- -configuration Debug \
92+ -configuration Release \
9393 -sdk iphonesimulator \
9494 -derivedDataPath build | xcpretty
9595
@@ -139,14 +139,14 @@ jobs:
139139 - name : Install xcpretty
140140 run : gem install xcpretty
141141
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
144144 working-directory : apps/external-display-example/ios
145145 run : |
146146 set -o pipefail && xcodebuild \
147147 -workspace externaldisplayexample.xcworkspace \
148148 -scheme externaldisplayexample \
149- -configuration Debug \
149+ -configuration Release \
150150 -sdk iphonesimulator \
151151 -derivedDataPath build | xcpretty
152152
@@ -209,10 +209,10 @@ jobs:
209209 working-directory : apps/external-display-example
210210 run : echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties
211211
212- # Build the APK using Gradle (without running on a device )
212+ # Build the APK using Gradle (Release )
213213 - name : Build Android APK
214214 working-directory : apps/external-display-example/android
215- run : ./gradlew assembleDebug
215+ run : ./gradlew assembleRelease
216216
217217 build-android-new-arch :
218218 runs-on : ubuntu-latest
@@ -267,7 +267,7 @@ jobs:
267267 working-directory : apps/external-display-example
268268 run : echo "org.gradle.jvmargs=-Xmx4096m -XX:MaxPermSize=1024m" >> android/gradle.properties
269269
270- # Build the APK using Gradle (without running on a device )
270+ # Build the APK using Gradle (Release )
271271 - name : Build Android APK
272272 working-directory : apps/external-display-example/android
273- run : ./gradlew assembleDebug
273+ run : ./gradlew assembleRelease
0 commit comments