Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
mobile_scanner
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Navaron Bracke
2023-10-22 17:56:27 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
aab246924418e9ca1762bb659d30baf578a6f940
aab24692
1 parent
12e39bfe
fix indent in podfiles; add RunnerTests block in podfiles; remove bitcode setting
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
example/ios/Podfile
example/macos/Podfile
example/ios/Podfile
View file @
aab2469
# Uncomment this line to define a global platform for your project
platform
:ios
,
'11.0'
#
platform :ios, '11.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV
[
'COCOAPODS_DISABLE_STATS'
]
=
'true'
...
...
@@ -32,13 +32,15 @@ target 'Runner' do
use_modular_headers!
flutter_install_all_ios_pods
File
.
dirname
(
File
.
realpath
(
__FILE__
))
target
'RunnerTests'
do
inherit!
:search_paths
end
end
post_install
do
|
installer
|
installer
.
pods_project
.
targets
.
each
do
|
target
|
flutter_additional_ios_build_settings
(
target
)
target
.
build_configurations
.
each
do
|
config
|
config
.
build_settings
[
'ENABLE_BITCODE'
]
=
'NO'
config
.
build_settings
[
'IPHONEOS_DEPLOYMENT_TARGET'
]
=
'11.0'
end
end
...
...
example/macos/Podfile
View file @
aab2469
...
...
@@ -31,6 +31,9 @@ target 'Runner' do
use_modular_headers!
flutter_install_all_macos_pods
File
.
dirname
(
File
.
realpath
(
__FILE__
))
target
'RunnerTests'
do
inherit!
:search_paths
end
end
post_install
do
|
installer
|
...
...
Please
register
or
login
to post a comment