1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00

flutter pub (#86)

This commit is contained in:
Michael Thomsen
2019-05-22 16:54:09 +02:00
committed by GitHub
parent fa356540c6
commit 3098bf2c9a
4 changed files with 4 additions and 4 deletions

View File

@@ -35,7 +35,7 @@ target 'Runner' do
# Flutter Pods
generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
if generated_xcode_build_settings.empty?
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first."
end
generated_xcode_build_settings.map { |p|
if p[:name] == 'FLUTTER_FRAMEWORK_DIR'

View File

@@ -35,7 +35,7 @@ target 'Runner' do
# Flutter Pods
generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
if generated_xcode_build_settings.empty?
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first."
end
generated_xcode_build_settings.map { |p|
if p[:name] == 'FLUTTER_FRAMEWORK_DIR'

View File

@@ -41,7 +41,7 @@ target 'Runner' do
# Flutter Pods
generated_xcode_build_settings = parse_KV_file('./Flutter/Generated.xcconfig')
if generated_xcode_build_settings.empty?
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter packages get is executed first."
puts "Generated.xcconfig must exist. If you're running pod install manually, make sure flutter pub get is executed first."
end
generated_xcode_build_settings.map { |p|
if p[:name] == 'FLUTTER_FRAMEWORK_DIR'

View File

@@ -15,7 +15,7 @@ Go into one of the sample directories, get packages, and run.
```console
$ cd gallery
$ flutter packages pub get # or `pub get` with the Dart SDK
$ flutter pub get # or `pub get` with the Dart SDK
$ webdev serve
```