From 90f9e081379ad2c50787ac475e0364143d865a5c Mon Sep 17 00:00:00 2001 From: vtretyakov Date: Tue, 29 May 2018 12:29:17 +0700 Subject: [PATCH] added pod for biochecker --- ios/Podfile | 23 +++++++++++++++++++++++ pubspec.lock | 6 +++--- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/ios/Podfile b/ios/Podfile index 2a83614..2c7a719 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -75,6 +75,29 @@ target ‘Crypto’ do } end end +target ‘BioChecker’ do + # Pods for BioChecker + pod 'DropDown' + use_frameworks! + + # Flutter Pods + pod 'Flutter', :path => ENV['FLUTTER_FRAMEWORK_DIR'] + + if File.exists? '../.flutter-plugins' + flutter_root = File.expand_path('..') + File.foreach('../.flutter-plugins') { |line| + plugin = line.split(pattern='=') + if plugin.length == 2 + name = plugin[0].strip() + path = plugin[1].strip() + resolved_path = File.expand_path("#{path}/ios", flutter_root) + pod name, :path => resolved_path + else + puts "Invalid plugin specification: #{line}" + end + } + end +end post_install do |installer| installer.pods_project.targets.each do |target| diff --git a/pubspec.lock b/pubspec.lock index 283533c..24d4656 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -47,7 +47,7 @@ packages: name: image_picker url: "https://pub.dartlang.org" source: hosted - version: "0.4.1" + version: "0.4.2" matcher: dependency: transitive description: @@ -61,7 +61,7 @@ packages: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.1.2" + version: "1.1.5" path: dependency: transitive description: @@ -152,5 +152,5 @@ packages: source: hosted version: "3.0.0" sdks: - dart: ">=2.0.0-dev.35 <=2.0.0-edge.c080951d45e79cd25df98036c4be835b284a269c" + dart: ">=2.0.0-dev.35 <=2.0.0-dev.55.0.flutter-97b6c2e09d" flutter: ">=0.1.4 <2.0.0"