Skip to content

Commit 805bc41

Browse files
committed
chore: update .gitignore, add devtools_options.yaml, and refactor iOS project settings
1 parent 685d5d9 commit 805bc41

12 files changed

Lines changed: 71 additions & 81 deletions

File tree

devtools_options.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
description: This file stores settings for Dart & Flutter DevTools.
2+
documentation: https://docs.flutter.dev/tools/devtools/extensions#configure-extension-enablement-states
3+
extensions:

example/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
1113
migrate_working_dir/
1214

1315
# IntelliJ related

example/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, '12.0'
2+
platform :ios, '12.0'
33

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

example/ios/Podfile.lock

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- smart_auth (0.0.1):
4-
- Flutter
53

64
DEPENDENCIES:
75
- Flutter (from `Flutter`)
8-
- smart_auth (from `.symlinks/plugins/smart_auth/ios`)
96

107
EXTERNAL SOURCES:
118
Flutter:
129
:path: Flutter
13-
smart_auth:
14-
:path: ".symlinks/plugins/smart_auth/ios"
1510

1611
SPEC CHECKSUMS:
1712
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
18-
smart_auth: 4bedbc118723912d0e45a07e8ab34039c19e04f2
1913

20-
PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796
14+
PODFILE CHECKSUM: 7be2f5f74864d463a8ad433546ed1de7e0f29aef
2115

22-
COCOAPODS: 1.14.3
16+
COCOAPODS: 1.16.2

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,6 @@
198198
97C146EC1CF9000F007C117D /* Resources */,
199199
9705A1C41CF9048500538489 /* Embed Frameworks */,
200200
3B06AD1E1E4923F5004D2608 /* Thin Binary */,
201-
EA686CC9DCD1471AAAE73556 /* [CP] Embed Pods Frameworks */,
202201
);
203202
buildRules = (
204203
);
@@ -323,23 +322,6 @@
323322
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
324323
showEnvVarsInLog = 0;
325324
};
326-
EA686CC9DCD1471AAAE73556 /* [CP] Embed Pods Frameworks */ = {
327-
isa = PBXShellScriptBuildPhase;
328-
buildActionMask = 2147483647;
329-
files = (
330-
);
331-
inputFileListPaths = (
332-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
333-
);
334-
name = "[CP] Embed Pods Frameworks";
335-
outputFileListPaths = (
336-
"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
337-
);
338-
runOnlyForDeploymentPostprocessing = 0;
339-
shellPath = /bin/sh;
340-
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
341-
showEnvVarsInLog = 0;
342-
};
343325
EE5C12F69A50529F4C131494 /* [CP] Check Pods Manifest.lock */ = {
344326
isa = PBXShellScriptBuildPhase;
345327
buildActionMask = 2147483647;

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
ignoresPersistentStateOnLaunch = "NO"
6060
debugDocumentVersioning = "YES"
6161
debugServiceExtension = "internal"
62+
enableGPUValidationMode = "1"
6263
allowLocationSimulation = "YES">
6364
<BuildableProductRunnable
6465
runnableDebuggingMode = "0">

example/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,

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class MyApp extends StatelessWidget {
4040
},
4141
loginConfig: const LoginConfig(
4242
logo: FlutterLogo(size: 100),
43-
title: 'Mohesu Enterprise',
43+
title: 'Mohesu Enterprises',
4444
subtitle: 'Let\'s Sign In',
4545
),
4646
providers: [

example/pubspec.lock

Lines changed: 56 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,42 +5,42 @@ packages:
55
dependency: transitive
66
description:
77
name: async
8-
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
8+
sha256: d2872f9c19731c2e5f10444b14686eb7cc85c76274bd6c16e1816bff9a3bab63
99
url: "https://pub.dev"
1010
source: hosted
11-
version: "2.11.0"
11+
version: "2.12.0"
1212
boolean_selector:
1313
dependency: transitive
1414
description:
1515
name: boolean_selector
16-
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
16+
sha256: "8aab1771e1243a5063b8b0ff68042d67334e3feab9e95b9490f9a6ebf73b42ea"
1717
url: "https://pub.dev"
1818
source: hosted
19-
version: "2.1.1"
19+
version: "2.1.2"
2020
characters:
2121
dependency: transitive
2222
description:
2323
name: characters
24-
sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
24+
sha256: f71061c654a3380576a52b451dd5532377954cf9dbd272a78fc8479606670803
2525
url: "https://pub.dev"
2626
source: hosted
27-
version: "1.3.0"
27+
version: "1.4.0"
2828
clock:
2929
dependency: transitive
3030
description:
3131
name: clock
32-
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
32+
sha256: fddb70d9b5277016c77a80201021d40a2247104d9f4aa7bab7157b7e3f05b84b
3333
url: "https://pub.dev"
3434
source: hosted
35-
version: "1.1.1"
35+
version: "1.1.2"
3636
collection:
3737
dependency: transitive
3838
description:
3939
name: collection
40-
sha256: a1ace0a119f20aabc852d165077c036cd864315bd99b7eaa10a60100341941bf
40+
sha256: "2f5709ae4d3d59dd8f7cd309b4e023046b57d8a6c82130785d2b0e5868084e76"
4141
url: "https://pub.dev"
4242
source: hosted
43-
version: "1.19.0"
43+
version: "1.19.1"
4444
crypto:
4545
dependency: transitive
4646
description:
@@ -69,10 +69,10 @@ packages:
6969
dependency: transitive
7070
description:
7171
name: fake_async
72-
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
72+
sha256: "6a95e56b2449df2273fd8c45a662d6947ce1ebb7aafe80e550a3f68297f3cacc"
7373
url: "https://pub.dev"
7474
source: hosted
75-
version: "1.3.1"
75+
version: "1.3.2"
7676
fixnum:
7777
dependency: transitive
7878
description:
@@ -92,7 +92,7 @@ packages:
9292
path: ".."
9393
relative: true
9494
source: path
95-
version: "0.0.12"
95+
version: "0.0.13"
9696
flutter_intl_phone_field:
9797
dependency: transitive
9898
description:
@@ -139,18 +139,18 @@ packages:
139139
dependency: transitive
140140
description:
141141
name: leak_tracker
142-
sha256: "7bb2830ebd849694d1ec25bf1f44582d6ac531a57a365a803a6034ff751d2d06"
142+
sha256: c35baad643ba394b40aac41080300150a4f08fd0fd6a10378f8f7c6bc161acec
143143
url: "https://pub.dev"
144144
source: hosted
145-
version: "10.0.7"
145+
version: "10.0.8"
146146
leak_tracker_flutter_testing:
147147
dependency: transitive
148148
description:
149149
name: leak_tracker_flutter_testing
150-
sha256: "9491a714cca3667b60b5c420da8217e6de0d1ba7a5ec322fab01758f6998f379"
150+
sha256: f8b613e7e6a13ec79cfdc0e97638fddb3ab848452eff057653abd3edba760573
151151
url: "https://pub.dev"
152152
source: hosted
153-
version: "3.0.8"
153+
version: "3.0.9"
154154
leak_tracker_testing:
155155
dependency: transitive
156156
description:
@@ -179,10 +179,10 @@ packages:
179179
dependency: transitive
180180
description:
181181
name: matcher
182-
sha256: d2323aa2060500f906aa31a895b4030b6da3ebdcc5619d14ce1aada65cd161cb
182+
sha256: dc58c723c3c24bf8d3e2d3ad3f2f9d7bd9cf43ec6feaa64181775e60190153f2
183183
url: "https://pub.dev"
184184
source: hosted
185-
version: "0.12.16+1"
185+
version: "0.12.17"
186186
material_color_utilities:
187187
dependency: transitive
188188
description:
@@ -203,18 +203,18 @@ packages:
203203
dependency: transitive
204204
description:
205205
name: meta
206-
sha256: bdb68674043280c3428e9ec998512fb681678676b3c54e773629ffe74419f8c7
206+
sha256: e3641ec5d63ebf0d9b41bd43201a66e3fc79a65db5f61fc181f04cd27aab950c
207207
url: "https://pub.dev"
208208
source: hosted
209-
version: "1.15.0"
209+
version: "1.16.0"
210210
path:
211211
dependency: transitive
212212
description:
213213
name: path
214-
sha256: "087ce49c3f0dc39180befefc60fdb4acd8f8620e5682fe2476afd0b3688bb4af"
214+
sha256: "75cca69d1490965be98c73ceaea117e8a04dd21217b37b292c9ddbec0d955bc5"
215215
url: "https://pub.dev"
216216
source: hosted
217-
version: "1.9.0"
217+
version: "1.9.1"
218218
pausable_timer:
219219
dependency: transitive
220220
description:
@@ -231,30 +231,38 @@ packages:
231231
url: "https://pub.dev"
232232
source: hosted
233233
version: "5.0.0"
234+
preact_signals:
235+
dependency: transitive
236+
description:
237+
name: preact_signals
238+
sha256: a5b445796a02244b85fa43d79a7030fbfbbb08f7c48277ee93c636140a8fb2e0
239+
url: "https://pub.dev"
240+
source: hosted
241+
version: "1.8.3"
234242
signals:
235243
dependency: transitive
236244
description:
237245
name: signals
238-
sha256: ee9f01220aecf63fb90576a158e1785c54a8279335560bc6548419dd66aef87c
246+
sha256: "85225d03e71720b6fff62a8296ba7328a3e363d1ffbb9f3a85efaa05d9e85e67"
239247
url: "https://pub.dev"
240248
source: hosted
241-
version: "5.3.0"
249+
version: "6.0.2"
242250
signals_core:
243251
dependency: transitive
244252
description:
245253
name: signals_core
246-
sha256: "2122bdf258af0b90d13d0b4bd6ce673158b3beace85bf02693804ab7f8b00c72"
254+
sha256: "5668ff1fb953fe48c88b03d50d43c5fe128cd7c831b932a4157f5f6be868b80f"
247255
url: "https://pub.dev"
248256
source: hosted
249-
version: "5.3.0"
257+
version: "6.0.2"
250258
signals_flutter:
251259
dependency: transitive
252260
description:
253261
name: signals_flutter
254-
sha256: "1f1c2026794091e5a07464d5c891006a70033936776d4d07e71f940ffbed3fd7"
262+
sha256: "66b36ed0b5961cc7d8d0606813bc3fd66758dc1728cbfcffef0d2a97c7a706a2"
255263
url: "https://pub.dev"
256264
source: hosted
257-
version: "5.3.0"
265+
version: "6.0.2"
258266
sky_engine:
259267
dependency: transitive
260268
description: flutter
@@ -264,10 +272,10 @@ packages:
264272
dependency: transitive
265273
description:
266274
name: source_span
267-
sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
275+
sha256: "254ee5351d6cb365c859e20ee823c3bb479bf4a293c22d17a9f1bf144ce86f7c"
268276
url: "https://pub.dev"
269277
source: hosted
270-
version: "1.10.0"
278+
version: "1.10.1"
271279
sprintf:
272280
dependency: transitive
273281
description:
@@ -280,50 +288,50 @@ packages:
280288
dependency: transitive
281289
description:
282290
name: stack_trace
283-
sha256: "9f47fd3630d76be3ab26f0ee06d213679aa425996925ff3feffdec504931c377"
291+
sha256: "8b27215b45d22309b5cddda1aa2b19bdfec9df0e765f2de506401c071d38d1b1"
284292
url: "https://pub.dev"
285293
source: hosted
286-
version: "1.12.0"
294+
version: "1.12.1"
287295
stream_channel:
288296
dependency: transitive
289297
description:
290298
name: stream_channel
291-
sha256: ba2aa5d8cc609d96bbb2899c28934f9e1af5cddbd60a827822ea467161eb54e7
299+
sha256: "969e04c80b8bcdf826f8f16579c7b14d780458bd97f56d107d3950fdbeef059d"
292300
url: "https://pub.dev"
293301
source: hosted
294-
version: "2.1.2"
302+
version: "2.1.4"
295303
string_scanner:
296304
dependency: transitive
297305
description:
298306
name: string_scanner
299-
sha256: "688af5ed3402a4bde5b3a6c15fd768dbf2621a614950b17f04626c431ab3c4c3"
307+
sha256: "921cd31725b72fe181906c6a94d987c78e3b98c2e205b397ea399d4054872b43"
300308
url: "https://pub.dev"
301309
source: hosted
302-
version: "1.3.0"
310+
version: "1.4.1"
303311
term_glyph:
304312
dependency: transitive
305313
description:
306314
name: term_glyph
307-
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
315+
sha256: "7f554798625ea768a7518313e58f83891c7f5024f88e46e7182a4558850a4b8e"
308316
url: "https://pub.dev"
309317
source: hosted
310-
version: "1.2.1"
318+
version: "1.2.2"
311319
test_api:
312320
dependency: transitive
313321
description:
314322
name: test_api
315-
sha256: "664d3a9a64782fcdeb83ce9c6b39e78fd2971d4e37827b9b06c3aa1edc5e760c"
323+
sha256: fb31f383e2ee25fbbfe06b40fe21e1e458d14080e3c67e7ba0acfde4df4e0bbd
316324
url: "https://pub.dev"
317325
source: hosted
318-
version: "0.7.3"
326+
version: "0.7.4"
319327
toastification:
320328
dependency: transitive
321329
description:
322330
name: toastification
323-
sha256: ffd10916d4cd0e8b944f3df334c7892ef55cdc7c1875b1c7b007780b9f5fc756
331+
sha256: "4d97fbfa463dfe83691044cba9f37cb185a79bb9205cfecb655fa1f6be126a13"
324332
url: "https://pub.dev"
325333
source: hosted
326-
version: "2.1.0"
334+
version: "2.3.0"
327335
typed_data:
328336
dependency: transitive
329337
description:
@@ -344,10 +352,10 @@ packages:
344352
dependency: transitive
345353
description:
346354
name: uuid
347-
sha256: "83d37c7ad7aaf9aa8e275490669535c8080377cfa7a7004c24dfac53afffaa90"
355+
sha256: a5be9ef6618a7ac1e964353ef476418026db906c4facdedaa299b7a2e71690ff
348356
url: "https://pub.dev"
349357
source: hosted
350-
version: "4.4.2"
358+
version: "4.5.1"
351359
vector_math:
352360
dependency: transitive
353361
description:
@@ -360,10 +368,10 @@ packages:
360368
dependency: transitive
361369
description:
362370
name: vm_service
363-
sha256: f6be3ed8bd01289b34d679c2b62226f63c0e69f9fd2e50a6b3c1c729a961041b
371+
sha256: "0968250880a6c5fe7edc067ed0a13d4bae1577fe2771dcf3010d52c4a9d3ca14"
364372
url: "https://pub.dev"
365373
source: hosted
366-
version: "14.3.0"
374+
version: "14.3.1"
367375
sdks:
368-
dart: ">=3.4.0 <4.0.0"
376+
dart: ">=3.7.0-0 <4.0.0"
369377
flutter: ">=3.18.0-18.0.pre.54"

0 commit comments

Comments
 (0)