From ede7c584c1440e3c7edee72c9a33f1115260e653 Mon Sep 17 00:00:00 2001 From: Andrew Brogdon Date: Thu, 20 Feb 2020 09:23:46 -0800 Subject: [PATCH] Updates the framework build in travis script to use an absolute path. (#332) --- add_to_app/ios_fullscreen/Podfile.lock | 2 +- add_to_app/ios_using_plugin/Podfile.lock | 14 +++++++++++++- tool/travis_ios_script.sh | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/add_to_app/ios_fullscreen/Podfile.lock b/add_to_app/ios_fullscreen/Podfile.lock index b22d00b20..544ce3371 100644 --- a/add_to_app/ios_fullscreen/Podfile.lock +++ b/add_to_app/ios_fullscreen/Podfile.lock @@ -25,4 +25,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 1f9809794b37c933b7cb40791d64724dc2376c54 -COCOAPODS: 1.7.5 +COCOAPODS: 1.8.4 diff --git a/add_to_app/ios_using_plugin/Podfile.lock b/add_to_app/ios_using_plugin/Podfile.lock index 25a6544bf..f42069b69 100644 --- a/add_to_app/ios_using_plugin/Podfile.lock +++ b/add_to_app/ios_using_plugin/Podfile.lock @@ -7,12 +7,18 @@ PODS: - url_launcher - url_launcher (0.0.1): - Flutter + - url_launcher_macos (0.0.1): + - Flutter + - url_launcher_web (0.0.1): + - Flutter DEPENDENCIES: - Flutter (from `../flutter_module_using_plugin/.ios/Flutter/engine`) - flutter_module_using_plugin (from `../flutter_module_using_plugin/.ios/Flutter`) - FlutterPluginRegistrant (from `../flutter_module_using_plugin/.ios/Flutter/FlutterPluginRegistrant`) - url_launcher (from `../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher/ios`) + - url_launcher_macos (from `../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher_macos/ios`) + - url_launcher_web (from `../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher_web/ios`) EXTERNAL SOURCES: Flutter: @@ -23,13 +29,19 @@ EXTERNAL SOURCES: :path: "../flutter_module_using_plugin/.ios/Flutter/FlutterPluginRegistrant" url_launcher: :path: "../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher/ios" + url_launcher_macos: + :path: "../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher_macos/ios" + url_launcher_web: + :path: "../flutter_module_using_plugin/.ios/Flutter/.symlinks/url_launcher_web/ios" SPEC CHECKSUMS: Flutter: 0e3d915762c693b495b44d77113d4970485de6ec flutter_module_using_plugin: ab21df6109f463a98496d1b37ad061e4fd4e3664 FlutterPluginRegistrant: 5f023d9f4a14f5b49cc6bb950327099916b47859 url_launcher: a1c0cc845906122c4784c542523d8cacbded5626 + url_launcher_macos: fd7894421cd39320dce5f292fc99ea9270b2a313 + url_launcher_web: e5527357f037c87560776e36436bf2b0288b965c PODFILE CHECKSUM: 357b6c94e1edb8289fba0dbdd79daa105ab9d88c -COCOAPODS: 1.7.5 +COCOAPODS: 1.8.4 diff --git a/tool/travis_ios_script.sh b/tool/travis_ios_script.sh index 3d767a57b..dc1e6e486 100755 --- a/tool/travis_ios_script.sh +++ b/tool/travis_ios_script.sh @@ -31,7 +31,7 @@ echo "Pre-caching ios artifacts, such as the Flutter.framework" echo "Fetching dependencies and building 'flutter_module'." pushd add_to_app/flutter_module "${LOCAL_SDK_PATH}/bin/flutter" packages get -"${LOCAL_SDK_PATH}/bin/flutter" build ios-framework --output=../ios_using_prebuilt_module/Flutter +"${LOCAL_SDK_PATH}/bin/flutter" build ios-framework --output="$(pwd)/../ios_using_prebuilt_module/Flutter" popd echo "Fetching dependencies for 'flutter_module_using_plugin'."