-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Nish <[email protected]> Signed-off-by: Nish Patel <[email protected]>
- Loading branch information
1 parent
dab11a5
commit 70d6864
Showing
48 changed files
with
1,576 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This file tracks properties of this Flutter project. | ||
# Used by Flutter tool to assess capabilities and perform upgrades etc. | ||
# | ||
# This file should be version controlled and should not be manually edited. | ||
|
||
version: | ||
revision: "2524052335ec76bb03e04ede244b071f1b86d190" | ||
channel: "stable" | ||
|
||
project_type: app | ||
|
||
# Tracks metadata for the flutter migrate command | ||
migration: | ||
platforms: | ||
- platform: root | ||
create_revision: 2524052335ec76bb03e04ede244b071f1b86d190 | ||
base_revision: 2524052335ec76bb03e04ede244b071f1b86d190 | ||
- platform: ios | ||
create_revision: 2524052335ec76bb03e04ede244b071f1b86d190 | ||
base_revision: 2524052335ec76bb03e04ede244b071f1b86d190 | ||
|
||
# User provided section | ||
|
||
# List of Local paths (relative to this file) that should be | ||
# ignored by the migrate tool. | ||
# | ||
# Files that are not part of the templates will be ignored by default. | ||
unmanaged_files: | ||
- 'lib/main.dart' | ||
- 'ios/Runner.xcodeproj/project.pbxproj' |
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,34 @@ | ||
**/dgph | ||
*.mode1v3 | ||
*.mode2v3 | ||
*.moved-aside | ||
*.pbxuser | ||
*.perspectivev3 | ||
**/*sync/ | ||
.sconsign.dblite | ||
.tags* | ||
**/.vagrant/ | ||
**/DerivedData/ | ||
Icon? | ||
**/Pods/ | ||
**/.symlinks/ | ||
profile | ||
xcuserdata | ||
**/.generated/ | ||
Flutter/App.framework | ||
Flutter/Flutter.framework | ||
Flutter/Flutter.podspec | ||
Flutter/Generated.xcconfig | ||
Flutter/ephemeral/ | ||
Flutter/app.flx | ||
Flutter/app.zip | ||
Flutter/flutter_assets/ | ||
Flutter/flutter_export_environment.sh | ||
ServiceDefinitions.json | ||
Runner/GeneratedPluginRegistrant.* | ||
|
||
# Exceptions to above rules. | ||
!default.mode1v3 | ||
!default.mode2v3 | ||
!default.pbxuser | ||
!default.perspectivev3 |
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,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>App</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>io.flutter.flutter.app</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>App</string> | ||
<key>CFBundlePackageType</key> | ||
<string>FMWK</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>MinimumOSVersion</key> | ||
<string>11.0</string> | ||
</dict> | ||
</plist> |
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,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 |
---|---|---|
@@ -0,0 +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,44 @@ | ||
# Uncomment this line to define a global platform for your project | ||
# platform :ios, '11.0' | ||
|
||
# CocoaPods analytics sends network stats synchronously affecting flutter build latency. | ||
ENV['COCOAPODS_DISABLE_STATS'] = 'true' | ||
|
||
project 'Runner', { | ||
'Debug' => :debug, | ||
'Profile' => :release, | ||
'Release' => :release, | ||
} | ||
|
||
def flutter_root | ||
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) | ||
unless File.exist?(generated_xcode_build_settings_path) | ||
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" | ||
end | ||
|
||
File.foreach(generated_xcode_build_settings_path) do |line| | ||
matches = line.match(/FLUTTER_ROOT\=(.*)/) | ||
return matches[1].strip if matches | ||
end | ||
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" | ||
end | ||
|
||
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) | ||
|
||
flutter_ios_podfile_setup | ||
|
||
target 'Runner' do | ||
use_frameworks! | ||
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) | ||
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,185 @@ | ||
PODS: | ||
- camera_avfoundation (0.0.1): | ||
- Flutter | ||
- DKImagePickerController/Core (4.3.4): | ||
- DKImagePickerController/ImageDataManager | ||
- DKImagePickerController/Resource | ||
- DKImagePickerController/ImageDataManager (4.3.4) | ||
- DKImagePickerController/PhotoGallery (4.3.4): | ||
- DKImagePickerController/Core | ||
- DKPhotoGallery | ||
- DKImagePickerController/Resource (4.3.4) | ||
- DKPhotoGallery (0.0.17): | ||
- DKPhotoGallery/Core (= 0.0.17) | ||
- DKPhotoGallery/Model (= 0.0.17) | ||
- DKPhotoGallery/Preview (= 0.0.17) | ||
- DKPhotoGallery/Resource (= 0.0.17) | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Core (0.0.17): | ||
- DKPhotoGallery/Model | ||
- DKPhotoGallery/Preview | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Model (0.0.17): | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Preview (0.0.17): | ||
- DKPhotoGallery/Model | ||
- DKPhotoGallery/Resource | ||
- SDWebImage | ||
- SwiftyGif | ||
- DKPhotoGallery/Resource (0.0.17): | ||
- SDWebImage | ||
- SwiftyGif | ||
- file_picker (0.0.1): | ||
- DKImagePickerController/PhotoGallery | ||
- Flutter | ||
- Flutter (1.0.0) | ||
- flutter_file_dialog (0.0.1): | ||
- Flutter | ||
- flutter_local_notifications (0.0.1): | ||
- Flutter | ||
- flutter_native_splash (0.0.1): | ||
- Flutter | ||
- flutter_zxing (0.0.1): | ||
- Flutter | ||
- FMDB (2.7.5): | ||
- FMDB/standard (= 2.7.5) | ||
- FMDB/standard (2.7.5) | ||
- image_picker_ios (0.0.1): | ||
- Flutter | ||
- integration_test (0.0.1): | ||
- Flutter | ||
- open_file (0.0.1): | ||
- Flutter | ||
- package_info_plus (0.4.5): | ||
- Flutter | ||
- path_provider_foundation (0.0.1): | ||
- Flutter | ||
- FlutterMacOS | ||
- permission_handler_apple (9.1.1): | ||
- Flutter | ||
- quick_actions_ios (0.0.1): | ||
- Flutter | ||
- SDWebImage (5.18.0): | ||
- SDWebImage/Core (= 5.18.0) | ||
- SDWebImage/Core (5.18.0) | ||
- share_plus (0.0.1): | ||
- Flutter | ||
- shared_preferences_foundation (0.0.1): | ||
- Flutter | ||
- FlutterMacOS | ||
- sqflite (0.0.3): | ||
- Flutter | ||
- FMDB (>= 2.7.5) | ||
- SwiftyGif (5.4.4) | ||
- url_launcher_ios (0.0.1): | ||
- Flutter | ||
- wakelock_plus (0.0.1): | ||
- Flutter | ||
- webview_flutter_wkwebview (0.0.1): | ||
- Flutter | ||
|
||
DEPENDENCIES: | ||
- camera_avfoundation (from `.symlinks/plugins/camera_avfoundation/ios`) | ||
- file_picker (from `.symlinks/plugins/file_picker/ios`) | ||
- Flutter (from `Flutter`) | ||
- flutter_file_dialog (from `.symlinks/plugins/flutter_file_dialog/ios`) | ||
- flutter_local_notifications (from `.symlinks/plugins/flutter_local_notifications/ios`) | ||
- flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`) | ||
- flutter_zxing (from `.symlinks/plugins/flutter_zxing/ios`) | ||
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`) | ||
- integration_test (from `.symlinks/plugins/integration_test/ios`) | ||
- open_file (from `.symlinks/plugins/open_file/ios`) | ||
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`) | ||
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`) | ||
- permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) | ||
- quick_actions_ios (from `.symlinks/plugins/quick_actions_ios/ios`) | ||
- share_plus (from `.symlinks/plugins/share_plus/ios`) | ||
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) | ||
- sqflite (from `.symlinks/plugins/sqflite/ios`) | ||
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) | ||
- wakelock_plus (from `.symlinks/plugins/wakelock_plus/ios`) | ||
- webview_flutter_wkwebview (from `.symlinks/plugins/webview_flutter_wkwebview/ios`) | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- DKImagePickerController | ||
- DKPhotoGallery | ||
- FMDB | ||
- SDWebImage | ||
- SwiftyGif | ||
|
||
EXTERNAL SOURCES: | ||
camera_avfoundation: | ||
:path: ".symlinks/plugins/camera_avfoundation/ios" | ||
file_picker: | ||
:path: ".symlinks/plugins/file_picker/ios" | ||
Flutter: | ||
:path: Flutter | ||
flutter_file_dialog: | ||
:path: ".symlinks/plugins/flutter_file_dialog/ios" | ||
flutter_local_notifications: | ||
:path: ".symlinks/plugins/flutter_local_notifications/ios" | ||
flutter_native_splash: | ||
:path: ".symlinks/plugins/flutter_native_splash/ios" | ||
flutter_zxing: | ||
:path: ".symlinks/plugins/flutter_zxing/ios" | ||
image_picker_ios: | ||
:path: ".symlinks/plugins/image_picker_ios/ios" | ||
integration_test: | ||
:path: ".symlinks/plugins/integration_test/ios" | ||
open_file: | ||
:path: ".symlinks/plugins/open_file/ios" | ||
package_info_plus: | ||
:path: ".symlinks/plugins/package_info_plus/ios" | ||
path_provider_foundation: | ||
:path: ".symlinks/plugins/path_provider_foundation/darwin" | ||
permission_handler_apple: | ||
:path: ".symlinks/plugins/permission_handler_apple/ios" | ||
quick_actions_ios: | ||
:path: ".symlinks/plugins/quick_actions_ios/ios" | ||
share_plus: | ||
:path: ".symlinks/plugins/share_plus/ios" | ||
shared_preferences_foundation: | ||
:path: ".symlinks/plugins/shared_preferences_foundation/darwin" | ||
sqflite: | ||
:path: ".symlinks/plugins/sqflite/ios" | ||
url_launcher_ios: | ||
:path: ".symlinks/plugins/url_launcher_ios/ios" | ||
wakelock_plus: | ||
:path: ".symlinks/plugins/wakelock_plus/ios" | ||
webview_flutter_wkwebview: | ||
:path: ".symlinks/plugins/webview_flutter_wkwebview/ios" | ||
|
||
SPEC CHECKSUMS: | ||
camera_avfoundation: 3125e8cd1a4387f6f31c6c63abb8a55892a9eeeb | ||
DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac | ||
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179 | ||
file_picker: ce3938a0df3cc1ef404671531facef740d03f920 | ||
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854 | ||
flutter_file_dialog: 4c014a45b105709a27391e266c277d7e588e9299 | ||
flutter_local_notifications: 0c0b1ae97e741e1521e4c1629a459d04b9aec743 | ||
flutter_native_splash: 52501b97d1c0a5f898d687f1646226c1f93c56ef | ||
flutter_zxing: 19a866d17c8a87ee1026d68521c69d2f008635f6 | ||
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a | ||
image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5 | ||
integration_test: 13825b8a9334a850581300559b8839134b124670 | ||
open_file: 02eb5cb6b21264bd3a696876f5afbfb7ca4f4b7d | ||
package_info_plus: fd030dabf36271f146f1f3beacd48f564b0f17f7 | ||
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943 | ||
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6 | ||
quick_actions_ios: 9e80dcfadfbc5d47d9cf8f47bcf428b11cf383d4 | ||
SDWebImage: 182830bcddc30cde95fbc60dfe4badc3553d94ba | ||
share_plus: 599aa54e4ea31d4b4c0e9c911bcc26c55e791028 | ||
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126 | ||
sqflite: 31f7eba61e3074736dff8807a9b41581e4f7f15a | ||
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f | ||
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4 | ||
wakelock_plus: 8b09852c8876491e4b6d179e17dfe2a0b5f60d47 | ||
webview_flutter_wkwebview: 2e2d318f21a5e036e2c3f26171342e95908bd60a | ||
|
||
PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189 | ||
|
||
COCOAPODS: 1.11.3 |
Oops, something went wrong.