Skip to content

Commit 7854fcf

Browse files
author
Test
committed
fix build
1 parent c6d6862 commit 7854fcf

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

build-device.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ rm -rf build
88

99
mkdir build/
1010
cd build/
11-
cmake -G "Xcode" -DCMAKE_TOOLCHAIN_FILE=../ios-cmake/ios.toolchain.cmake -DIOS_DEPLOYMENT_TARGET=11.0 -DPLATFORM=OS64COMBINED ../
11+
cmake -G "Xcode" -DCMAKE_TOOLCHAIN_FILE=../ios-cmake/ios.toolchain.cmake -DIOS_DEPLOYMENT_TARGET=14.0 -DPLATFORM=OS64COMBINED ../
1212
cd ../

fastlane/Fastfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ platform :ios do
2020
lane :deployPro do
2121
sh("bash", "../build-device.sh")
2222
clear_derived_data
23-
build_app(workspace: "OpenDocumentReader.xcworkspace", scheme: "ODR Full")
23+
build_app(workspace: "OpenDocumentReader.xcworkspace", scheme: "ODR Full", xcargs: "-allowProvisioningUpdates")
2424
upload_to_app_store(
2525
app_identifier: "at.tomtasche.reader",
2626
skip_screenshots: true,
@@ -34,7 +34,7 @@ platform :ios do
3434
lane :deployLite do
3535
sh("bash", "../build-device.sh")
3636
clear_derived_data
37-
build_app(workspace: "OpenDocumentReader.xcworkspace", scheme: "ODR Lite")
37+
build_app(workspace: "OpenDocumentReader.xcworkspace", scheme: "ODR Lite", xcargs: "-allowProvisioningUpdates")
3838
upload_to_app_store(
3939
app_identifier: "at.tomtasche.reader.lite1",
4040
skip_screenshots: true,
@@ -51,7 +51,8 @@ platform :ios do
5151
workspace: "OpenDocumentReader.xcworkspace",
5252
scheme: "ODR Full",
5353
prelaunch_simulator: true,
54-
reset_simulator: true
54+
reset_simulator: true,
55+
xcargs: "-allowProvisioningUpdates"
5556
)
5657
end
5758

fastlane/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ fastlane ios uploadSymbols
3939

4040
----
4141

42-
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
42+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
4343
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
4444
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 commit comments

Comments
 (0)