-
Notifications
You must be signed in to change notification settings - Fork 28.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade to 1.20.1 app can not load the flutter module and creates a new folder #63176
Comments
Hi @beydeng flutter doctor -v
Can you please provide your |
my iOS podfile is Uncomment this line to define a global platform for your projectflutter_application_path = '../flutter_module/' platform :ios,
end |
I can't find any problem in my app... |
As i switch V17.5,it's runs fine. |
I can reproduce this issue, it creates this new folder when running native app with flutter module when using your pod files flutter doctor -v
flutter doctor -v
|
cc @jmagman |
I fixed up the App.framework path problem (which #63568 also does) and it still doesn't embed the App.framework into the resulting host app, though it does make the phantom |
Interesting, for me it would still make App.framework after printing that error:
And the app ran fine, but I'm still using Xcode 11. |
@szotp you're right. I updated #63412 to just fix the path issue and make the test more complete. The tests pass, and in my own local test I see the embedded App.framework. Would you mind reviewing and validating that PR works? I appreciate that you already did #63568, I fixed it in a slightly different way. |
The workaround is to use |
Another workaround: make App.framework manually before running pod install:
|
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of |
Flutter 1.20.1 • channel stable • https://github.com/flutter/flutter.git
Framework • revision 2ae3451 (29 hours ago) • 2020-08-05 19:53:19 -0700
Engine • revision c8e3b94853
Tools • Dart 2.9.0
My iOS podfile
flutter_application_path = '../flutter_module'
load File.join(flutter_application_path, '.ios', 'Flutter', 'podhelper.rb')
end
as i run pod install,it will create a new folder on my app root;
like this :
flutter_module
Dany/flutter_module/.ios/Flutter/podhelper.rb (the new floder)
myiOS
it seems like my app can not find podhelper.rb in the flutter_module floder,but to the new floder;
how can i solve this problem
The text was updated successfully, but these errors were encountered: