-
Notifications
You must be signed in to change notification settings - Fork 559
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f7b656
commit bc9afd0
Showing
50 changed files
with
354 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/bin/cache/artifacts/engine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.5.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/flutter_pdf_viewer-0.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/google_sign_in-3.0.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/path_provider-0.4.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/share-0.5.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.4.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/Users/hillel/Code/flutter/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||
#include "Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
#include "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||
#include "Generated.xcconfig" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Uncomment this line to define a global platform for your project | ||
# platform :ios, '9.0' | ||
|
||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency. | ||
ENV['COCOAPODS_DISABLE_STATS'] = 'true' | ||
|
||
def parse_KV_file(file, separator='=') | ||
file_abs_path = File.expand_path(file) | ||
if !File.exists? file_abs_path | ||
return []; | ||
end | ||
pods_ary = [] | ||
skip_line_start_symbols = ["#", "/"] | ||
File.foreach(file_abs_path) { |line| | ||
next if skip_line_start_symbols.any? { |symbol| line =~ /^\s*#{symbol}/ } | ||
plugin = line.split(pattern=separator) | ||
if plugin.length == 2 | ||
podname = plugin[0].strip() | ||
path = plugin[1].strip() | ||
podpath = File.expand_path("#{path}", file_abs_path) | ||
pods_ary.push({:name => podname, :path => podpath}); | ||
else | ||
puts "Invalid plugin specification: #{line}" | ||
end | ||
} | ||
return pods_ary | ||
end | ||
|
||
target 'Runner' do | ||
# Prepare symlinks folder. We use symlinks to avoid having Podfile.lock | ||
# referring to absolute paths on developers' machines. | ||
system('rm -rf .symlinks') | ||
system('mkdir -p .symlinks/plugins') | ||
|
||
# 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." | ||
end | ||
generated_xcode_build_settings.map { |p| | ||
if p[:name] == 'FLUTTER_FRAMEWORK_DIR' | ||
symlink = File.join('.symlinks', 'flutter') | ||
File.symlink(File.dirname(p[:path]), symlink) | ||
pod 'Flutter', :path => File.join(symlink, File.basename(p[:path])) | ||
end | ||
} | ||
|
||
# Plugin Pods | ||
plugin_pods = parse_KV_file('../.flutter-plugins') | ||
plugin_pods.map { |p| | ||
symlink = File.join('.symlinks', 'plugins', p[:name]) | ||
File.symlink(p[:path], symlink) | ||
pod p[:name], :path => File.join(symlink, 'ios') | ||
} | ||
end | ||
|
||
post_install do |installer| | ||
installer.pods_project.targets.each do |target| | ||
target.build_configurations.each do |config| | ||
config.build_settings['ENABLE_BITCODE'] = 'NO' | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
PODS: | ||
- Firebase/Auth (5.0.1): | ||
- Firebase/CoreOnly | ||
- FirebaseAuth (= 5.0.0) | ||
- Firebase/Core (5.0.1): | ||
- Firebase/CoreOnly | ||
- FirebaseAnalytics (= 5.0.0) | ||
- Firebase/CoreOnly (5.0.1): | ||
- FirebaseCore (= 5.0.1) | ||
- firebase_auth (0.0.1): | ||
- Firebase/Auth | ||
- Firebase/Core | ||
- Flutter | ||
- FirebaseAnalytics (5.0.0): | ||
- FirebaseCore (~> 5.0) | ||
- FirebaseInstanceID (~> 3.0) | ||
- "GoogleToolboxForMac/NSData+zlib (~> 2.1)" | ||
- nanopb (~> 0.3) | ||
- FirebaseAuth (5.0.0): | ||
- FirebaseCore (~> 5.0) | ||
- GTMSessionFetcher/Core (~> 1.1) | ||
- FirebaseCore (5.0.1): | ||
- "GoogleToolboxForMac/NSData+zlib (~> 2.1)" | ||
- FirebaseInstanceID (3.0.0): | ||
- FirebaseCore (~> 5.0) | ||
- Flutter (1.0.0) | ||
- flutter_pdf_viewer (0.0.1): | ||
- Flutter | ||
- google_sign_in (0.0.1): | ||
- Flutter | ||
- GoogleSignIn (~> 4.0) | ||
- GoogleSignIn (4.1.2): | ||
- "GoogleToolboxForMac/NSDictionary+URLArguments (~> 2.1)" | ||
- "GoogleToolboxForMac/NSString+URLArguments (~> 2.1)" | ||
- GTMOAuth2 (~> 1.0) | ||
- GTMSessionFetcher/Core (~> 1.1) | ||
- GoogleToolboxForMac/DebugUtils (2.1.4): | ||
- GoogleToolboxForMac/Defines (= 2.1.4) | ||
- GoogleToolboxForMac/Defines (2.1.4) | ||
- "GoogleToolboxForMac/NSData+zlib (2.1.4)": | ||
- GoogleToolboxForMac/Defines (= 2.1.4) | ||
- "GoogleToolboxForMac/NSDictionary+URLArguments (2.1.4)": | ||
- GoogleToolboxForMac/DebugUtils (= 2.1.4) | ||
- GoogleToolboxForMac/Defines (= 2.1.4) | ||
- "GoogleToolboxForMac/NSString+URLArguments (= 2.1.4)" | ||
- "GoogleToolboxForMac/NSString+URLArguments (2.1.4)" | ||
- GTMOAuth2 (1.1.6): | ||
- GTMSessionFetcher (~> 1.1) | ||
- GTMSessionFetcher (1.1.15): | ||
- GTMSessionFetcher/Full (= 1.1.15) | ||
- GTMSessionFetcher/Core (1.1.15) | ||
- GTMSessionFetcher/Full (1.1.15): | ||
- GTMSessionFetcher/Core (= 1.1.15) | ||
- nanopb (0.3.8): | ||
- nanopb/decode (= 0.3.8) | ||
- nanopb/encode (= 0.3.8) | ||
- nanopb/decode (0.3.8) | ||
- nanopb/encode (0.3.8) | ||
- path_provider (0.0.1): | ||
- Flutter | ||
- share (0.5.2): | ||
- Flutter | ||
- shared_preferences (0.0.1): | ||
- Flutter | ||
- url_launcher (0.0.1): | ||
- Flutter | ||
|
||
DEPENDENCIES: | ||
- firebase_auth (from `.symlinks/plugins/firebase_auth/ios`) | ||
- Flutter (from `.symlinks/flutter/ios`) | ||
- flutter_pdf_viewer (from `.symlinks/plugins/flutter_pdf_viewer/ios`) | ||
- google_sign_in (from `.symlinks/plugins/google_sign_in/ios`) | ||
- path_provider (from `.symlinks/plugins/path_provider/ios`) | ||
- share (from `.symlinks/plugins/share/ios`) | ||
- shared_preferences (from `.symlinks/plugins/shared_preferences/ios`) | ||
- url_launcher (from `.symlinks/plugins/url_launcher/ios`) | ||
|
||
SPEC REPOS: | ||
https://github.com/cocoapods/specs.git: | ||
- Firebase | ||
- FirebaseAnalytics | ||
- FirebaseAuth | ||
- FirebaseCore | ||
- FirebaseInstanceID | ||
- GoogleSignIn | ||
- GoogleToolboxForMac | ||
- GTMOAuth2 | ||
- GTMSessionFetcher | ||
- nanopb | ||
|
||
EXTERNAL SOURCES: | ||
firebase_auth: | ||
:path: ".symlinks/plugins/firebase_auth/ios" | ||
Flutter: | ||
:path: ".symlinks/flutter/ios" | ||
flutter_pdf_viewer: | ||
:path: ".symlinks/plugins/flutter_pdf_viewer/ios" | ||
google_sign_in: | ||
:path: ".symlinks/plugins/google_sign_in/ios" | ||
path_provider: | ||
:path: ".symlinks/plugins/path_provider/ios" | ||
share: | ||
:path: ".symlinks/plugins/share/ios" | ||
shared_preferences: | ||
:path: ".symlinks/plugins/shared_preferences/ios" | ||
url_launcher: | ||
:path: ".symlinks/plugins/url_launcher/ios" | ||
|
||
SPEC CHECKSUMS: | ||
Firebase: d6861c2059d8c32d1e6dd8932e22ada346d90a3a | ||
firebase_auth: 27a5a77a032d557c18f8e223aaf8ec1368f6cdbc | ||
FirebaseAnalytics: 19812b49fa5f283dd6b23edf8a14b5d477029ab8 | ||
FirebaseAuth: acbeef02fe7c3a26624e309849f3fe30c84115af | ||
FirebaseCore: cafc814b2d84fc8733f09e653041cc2165332ad7 | ||
FirebaseInstanceID: 83e0040351565df711a5db3d8ebe5ea21aca998a | ||
Flutter: 9d0fac939486c9aba2809b7982dfdbb47a7b0296 | ||
flutter_pdf_viewer: 7b564f5905dcc826b8681b96569ff69714ec7537 | ||
google_sign_in: cbeb57b96679823d14df6b2240b629b983a42d79 | ||
GoogleSignIn: d9ef55b10f0aa401a5de2747f59b725e4b9732ac | ||
GoogleToolboxForMac: 91c824d21e85b31c2aae9bb011c5027c9b4e738f | ||
GTMOAuth2: c77fe325e4acd453837e72d91e3b5f13116857b2 | ||
GTMSessionFetcher: 5fa5b80fd20e439ef5f545fb2cb3ca6c6714caa2 | ||
nanopb: 5601e6bca2dbf1ed831b519092ec110f66982ca3 | ||
path_provider: 09407919825bfe3c2deae39453b7a5b44f467873 | ||
share: 222b5dcc8031238af9d7de91149df65bad1aef75 | ||
shared_preferences: 5a1d487c427ee18fcd3ea1f2a131569481834b53 | ||
url_launcher: 92b89c1029a0373879933c21642958c874539095 | ||
|
||
PODFILE CHECKSUM: 1e5af4103afd21ca5ead147d7b81d06f494f51a2 | ||
|
||
COCOAPODS: 1.5.2 |
Oops, something went wrong.