added pod for biochecker
This commit is contained in:
23
ios/Podfile
23
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|
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user