-
Notifications
You must be signed in to change notification settings - Fork 227
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
I am trying to publish an app with arkit_plugin 1.0.6, but apple store rejecet #207
Comments
Hey. Read the README file, scroll to the Before you go to AppStore. |
but using this code: ## Before you go to AppStore post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
... # Here are some configurations automatically generated by flutter
config.build_settings['OTHER_SWIFT_FLAGS'] = '-DDISABLE_TRUEDEPTH_API'
end
end
end i have the problem when compiling in android studio on ios
end |
You don't need to put it in post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['OTHER_SWIFT_FLAGS'] = '-DDISABLE_TRUEDEPTH_API'
... # Your other stuff
end
end
end |
It is already in the gcc preprocessor definitions |
@PierluigiV, please read the first sentence of my response one more time. |
I have an issue and i havo no idea how to fix it, i've tried different solutions but none works properly. The issue is that apple store development team reject the app due to the use of the true Depth APIs, does anyone have an idea on how solve this problem? Thanks a lot
The text was updated successfully, but these errors were encountered: