Skip to content

Commit 1f7b0e0

Browse files
committed
build
1 parent 5f25521 commit 1f7b0e0

File tree

11 files changed

+194
-27
lines changed

11 files changed

+194
-27
lines changed

.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "3.24.5"
3+
}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
.dart_tool/
55
.flutter-plugins
66
.flutter-plugins-dependencies
7-
.fvm/flutter_sdk
87
.packages
98
.pub-cache/
109
.pub/
@@ -276,3 +275,6 @@ hs_err_pid*
276275
### Melos ###
277276
# https://melos.invertase.dev/guides/migrations#local-package-linking-with-pubspec_overridesyaml
278277
pubspec_overrides.yaml
278+
279+
# FVM Version Cache
280+
.fvm/

apps/tasks/.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,9 @@ flycheck_*.el
122122
# network security
123123
/network-security.data
124124

125-
126125
### Flutter ###
127126
# Flutter/Dart/Pub related
128127
**/doc/api/
129-
.fvm/flutter_sdk
130128
.pub-cache/
131129
.pub/
132130
coverage/
@@ -566,3 +564,6 @@ hs_err_pid*
566564
!/gradle/wrapper/gradle-wrapper.jar
567565

568566
# End of https://www.toptal.com/developers/gitignore/api/vim,dart,emacs,xcode,android,flutter,intellij,intellij+all,intellij+iml,androidstudio,xcodeinjection
567+
568+
# FVM Version Cache
569+
.fvm/

apps/tasks/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

apps/tasks/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
# platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

apps/tasks/ios/Podfile.lock

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
PODS:
2+
- Flutter (1.0.0)
3+
- flutter_native_splash (2.4.3):
4+
- Flutter
5+
- flutter_secure_storage (6.0.0):
6+
- Flutter
7+
- path_provider_foundation (0.0.1):
8+
- Flutter
9+
- FlutterMacOS
10+
- shared_preferences_foundation (0.0.1):
11+
- Flutter
12+
- FlutterMacOS
13+
- url_launcher_ios (0.0.1):
14+
- Flutter
15+
16+
DEPENDENCIES:
17+
- Flutter (from `Flutter`)
18+
- flutter_native_splash (from `.symlinks/plugins/flutter_native_splash/ios`)
19+
- flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
20+
- path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`)
21+
- shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`)
22+
- url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`)
23+
24+
EXTERNAL SOURCES:
25+
Flutter:
26+
:path: Flutter
27+
flutter_native_splash:
28+
:path: ".symlinks/plugins/flutter_native_splash/ios"
29+
flutter_secure_storage:
30+
:path: ".symlinks/plugins/flutter_secure_storage/ios"
31+
path_provider_foundation:
32+
:path: ".symlinks/plugins/path_provider_foundation/darwin"
33+
shared_preferences_foundation:
34+
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
35+
url_launcher_ios:
36+
:path: ".symlinks/plugins/url_launcher_ios/ios"
37+
38+
SPEC CHECKSUMS:
39+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
40+
flutter_native_splash: e8a1e01082d97a8099d973f919f57904c925008a
41+
flutter_secure_storage: 23fc622d89d073675f2eaa109381aefbcf5a49be
42+
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
43+
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
44+
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
45+
46+
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
47+
48+
COCOAPODS: 1.15.2

apps/tasks/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 129 additions & 19 deletions
Large diffs are not rendered by default.

apps/tasks/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1300"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

apps/tasks/ios/Runner.xcworkspace/contents.xcworkspacedata

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/tasks/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import UIKit
22
import Flutter
33

4-
@UIApplicationMain
4+
@main
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,

0 commit comments

Comments
 (0)