Skip to content

Commit bcb3bea

Browse files
DominicGBauerDominicGBauerbenitav
authored
chore: update podfile.lock (#67)
* chore: update podfile.lock * docs: update readme * chore: uncomment platform * Update demos/supabase-todolist/README.md Co-authored-by: benitav <[email protected]> * Update Readme instructions for both demo apps * Update demos/supabase-todolist/README.md Co-authored-by: benitav <[email protected]> * Update demos/supabase-simple-chat/README.md Co-authored-by: benitav <[email protected]> * chore: update podfile.lock --------- Co-authored-by: DominicGBauer <[email protected]> Co-authored-by: benitav <[email protected]> Co-authored-by: benitav <[email protected]>
1 parent ea8e924 commit bcb3bea

File tree

6 files changed

+42
-40
lines changed

6 files changed

+42
-40
lines changed

demos/supabase-simple-chat/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ Based on the Supabase Flutter tutorial to build a simple chat app: <https://supa
44

55
## Instructions
66

7-
1. `git clone`
8-
2. `cd` into folder
9-
3. `cp lib/app_config_template lib/app_config.dart`
10-
4. edit `app_config.dart`
7+
Ensure you have [melos](https://melos.invertase.dev/~melos-latest/getting-started) installed.
8+
9+
1. `cd demos/supabase-simple-chat`
10+
2. `melos bootstrap`
11+
3. `cp lib/app_config_template.dart lib/app_config.dart`
12+
4. Insert your Supabase project credentials into `lib/app_config.dart`
1113
5. `flutter run`

demos/supabase-simple-chat/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'

demos/supabase-simple-chat/ios/Podfile.lock

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ PODS:
1010
- FlutterMacOS
1111
- sign_in_with_apple (0.0.1):
1212
- Flutter
13-
- sqlite3 (3.43.1):
14-
- sqlite3/common (= 3.43.1)
15-
- sqlite3/common (3.43.1)
16-
- sqlite3/fts5 (3.43.1):
13+
- sqlite3 (3.45.1):
14+
- sqlite3/common (= 3.45.1)
15+
- sqlite3/common (3.45.1)
16+
- sqlite3/fts5 (3.45.1):
1717
- sqlite3/common
18-
- sqlite3/perf-threadsafe (3.43.1):
18+
- sqlite3/perf-threadsafe (3.45.1):
1919
- sqlite3/common
20-
- sqlite3/rtree (3.43.1):
20+
- sqlite3/rtree (3.45.1):
2121
- sqlite3/common
2222
- sqlite3_flutter_libs (0.0.1):
2323
- Flutter
24-
- sqlite3 (~> 3.43.1)
24+
- sqlite3 (~> 3.45.1)
2525
- sqlite3/fts5
2626
- sqlite3/perf-threadsafe
2727
- sqlite3/rtree
@@ -64,15 +64,15 @@ EXTERNAL SOURCES:
6464

6565
SPEC CHECKSUMS:
6666
app_links: 5ef33d0d295a89d9d16bb81b0e3b0d5f70d6c875
67-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
68-
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
69-
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
67+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
68+
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
69+
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
7070
sign_in_with_apple: f3bf75217ea4c2c8b91823f225d70230119b8440
71-
sqlite3: e0a0623a33a20a47cb5921552aebc6e9e437dc91
72-
sqlite3_flutter_libs: 0d61e18fab1bed977dbd2d2fc76a726044ca00e7
73-
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
74-
webview_flutter_wkwebview: 2e2d318f21a5e036e2c3f26171342e95908bd60a
71+
sqlite3: 73b7fc691fdc43277614250e04d183740cb15078
72+
sqlite3_flutter_libs: af0e8fe9bce48abddd1ffdbbf839db0302d72d80
73+
url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812
74+
webview_flutter_wkwebview: be0f0d33777f1bfd0c9fdcb594786704dbf65f36
7575

76-
PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189
76+
PODFILE CHECKSUM: 7be2f5f74864d463a8ad433546ed1de7e0f29aef
7777

78-
COCOAPODS: 1.14.3
78+
COCOAPODS: 1.15.2

demos/supabase-todolist/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ Demo app demonstrating use of the PowerSync SDK for Flutter together with Supaba
66

77
# Running the app
88

9-
Install the Flutter SDK, then:
9+
Ensure you have [melos](https://melos.invertase.dev/~melos-latest/getting-started) installed.
1010

11-
```sh
12-
cp lib/app_config_template.dart lib/app_config.dart
13-
flutter pub get
14-
flutter run
15-
```
11+
1. `cd demos/supabase-todolist`
12+
2. `melos bootstrap`
13+
3. `cp lib/app_config_template.dart lib/app_config.dart`
14+
4. Insert your Supabase and PowerSync project credentials into `lib/app_config.dart` (See instructions below)
15+
5. `flutter run`
1616

1717
# Set up Supabase Project
1818

demos/supabase-todolist/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'

demos/supabase-todolist/ios/Podfile.lock

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ PODS:
1010
- shared_preferences_foundation (0.0.1):
1111
- Flutter
1212
- FlutterMacOS
13-
- sqlite3 (3.44.0):
14-
- sqlite3/common (= 3.44.0)
15-
- sqlite3/common (3.44.0)
16-
- sqlite3/fts5 (3.44.0):
13+
- sqlite3 (3.45.1):
14+
- sqlite3/common (= 3.45.1)
15+
- sqlite3/common (3.45.1)
16+
- sqlite3/fts5 (3.45.1):
1717
- sqlite3/common
18-
- sqlite3/perf-threadsafe (3.44.0):
18+
- sqlite3/perf-threadsafe (3.45.1):
1919
- sqlite3/common
20-
- sqlite3/rtree (3.44.0):
20+
- sqlite3/rtree (3.45.1):
2121
- sqlite3/common
2222
- sqlite3_flutter_libs (0.0.1):
2323
- Flutter
24-
- sqlite3 (~> 3.44.0)
24+
- sqlite3 (~> 3.45.1)
2525
- sqlite3/fts5
2626
- sqlite3/perf-threadsafe
2727
- sqlite3/rtree
@@ -59,14 +59,14 @@ EXTERNAL SOURCES:
5959

6060
SPEC CHECKSUMS:
6161
app_links: 5ef33d0d295a89d9d16bb81b0e3b0d5f70d6c875
62-
camera_avfoundation: 8b8d780bcfb6a4a02b0fbe2b4bd17b5b71946e68
62+
camera_avfoundation: 759172d1a77ae7be0de08fc104cfb79738b8a59e
6363
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
6464
path_provider_foundation: 3784922295ac71e43754bd15e0653ccfd36a147c
6565
shared_preferences_foundation: b4c3b4cddf1c21f02770737f147a3f5da9d39695
66-
sqlite3: 6e2d4a4879854d0ec86b476bf3c3e30870bac273
67-
sqlite3_flutter_libs: eb769059df0356dc52ddda040f09cacc9391a7cf
66+
sqlite3: 73b7fc691fdc43277614250e04d183740cb15078
67+
sqlite3_flutter_libs: af0e8fe9bce48abddd1ffdbbf839db0302d72d80
6868
url_launcher_ios: bbd758c6e7f9fd7b5b1d4cde34d2b95fcce5e812
6969

70-
PODFILE CHECKSUM: 13e359f40c4925bcdf0c1bfa13aeba35011fde30
70+
PODFILE CHECKSUM: f7b3cb7384a2d5da4b22b090e1f632de7f377987
7171

72-
COCOAPODS: 1.14.3
72+
COCOAPODS: 1.15.2

0 commit comments

Comments
 (0)