Skip to content

Commit 7f5b280

Browse files
authored
Merge pull request #1632 from encointer/cl/merge-master-to-fdroid
merge master to fdroid
2 parents ce0c3f5 + 282cb27 commit 7f5b280

File tree

1,053 files changed

+4863
-15519
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,053 files changed

+4863
-15519
lines changed

.flutter

Submodule .flutter updated 2245 files

.github/workflows/android_build.yml

-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
branches: [master, f-droid]
88

99
env:
10-
NODE_VERSION: 18.14.2
1110
JAVA_VERSION: 12.x
1211

1312
jobs:
@@ -34,18 +33,11 @@ jobs:
3433
- name: Install flutter wrapper
3534
run: ./scripts/install_flutter_wrapper.sh
3635

37-
- uses: actions/setup-node@v3
38-
with:
39-
node-version: ${{ env.NODE_VERSION }}
40-
4136
- name: Get dependencies (i.e., melos)
4237
run: .flutter/bin/dart pub get
4338

4439
- name: Melos Bootstrap
4540
run: .flutter/bin/dart run melos bootstrap
4641

47-
- name: "Build JS"
48-
run: .flutter/bin/dart run melos yarn-build
49-
5042
- name: "Build apk"
5143
run: .flutter/bin/dart run melos build-apk-fdroid

.github/workflows/android_integration_test.yml

-9
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
branches: [master, f-droid]
88

99
env:
10-
NODE_VERSION: 18.14.2
1110
JAVA_VERSION: 12.x
1211
ARTIFACT_PATH: ./screenshots
1312

@@ -54,20 +53,12 @@ jobs:
5453
- name: List android images
5554
run: sdkmanager --list | grep system-images
5655

57-
# JS Stuff
58-
- uses: actions/setup-node@v3
59-
with:
60-
node-version: ${{ env.NODE_VERSION }}
61-
6256
- name: Get dependencies (i.e., melos)
6357
run: .flutter/bin/dart pub get
6458

6559
- name: Melos Bootstrap
6660
run: .flutter/bin/dart run melos bootstrap
6761

68-
- name: "Build JS"
69-
run: .flutter/bin/dart run melos yarn-build
70-
7162
- name: Gradle cache
7263
uses: actions/cache@v3
7364
with:

.github/workflows/ios_integration_test.yml

+4-14
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
branches: [master, f-droid]
1010

1111
env:
12-
NODE_VERSION: 18.14.2
1312
JAVA_VERSION: 12.x
1413
ARTIFACT_PATH: ./screenshots
1514

@@ -79,27 +78,18 @@ jobs:
7978
xcrun simctl create "iPhone 8 Plus" "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus" "com.apple.CoreSimulator.SimRuntime.iOS-16-4" || \
8079
xcrun simctl create "iPhone 8 Plus" "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus" "com.apple.CoreSimulator.SimRuntime.iOS-16-2"
8180
82-
# JS Stuff
83-
- uses: actions/setup-node@v3
84-
with:
85-
node-version: ${{ env.NODE_VERSION }}
86-
8781
- name: Get dependencies (i.e., melos)
8882
run: .flutter/bin/dart pub get
8983

9084
- name: Melos Bootstrap
9185
run: .flutter/bin/dart run melos bootstrap
9286

93-
- name: "Build JS"
94-
run: .flutter/bin/dart run melos yarn-build
95-
9687
- name: Start colima a docker runtime for MacOs
97-
# Work around an upstream issue with the runner image:
98-
# https://github.com/actions/runner-images/issues/8500
88+
# The brew install returns exit code 1 for a non-fatal dependency linker error.
89+
# We don't care, the subsequent steps will work still.
9990
run: |
100-
brew upgrade || brew link --overwrite python@3.11
101-
brew install docker
102-
brew install colima
91+
brew install docker || true
92+
brew install colima || true
10393
colima start
10494
10595
- name: Run encointer-node

.github/workflows/js_ci.yml

-85
This file was deleted.

.github/workflows/unit_tests.yml

-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,6 @@ jobs:
2323
- name: Melos Bootstrap
2424
run: .flutter/bin/dart run melos bootstrap
2525

26-
- name: "Build JS"
27-
run: .flutter/bin/dart run melos yarn-build
28-
2926
- name: "Check fmt"
3027
run: .flutter/bin/dart run melos format-check
3128

README.md

+2-2

app/ios/Podfile.lock

+7-13
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ PODS:
5454
- GoogleUtilitiesComponents (1.1.0):
5555
- GoogleUtilities/Logger
5656
- GTMSessionFetcher/Core (2.3.0)
57-
- image_picker_ios (0.0.1):
58-
- Flutter
5957
- local_auth_ios (0.0.1):
6058
- Flutter
6159
- MLImage (1.0.0-beta4)
@@ -76,7 +74,7 @@ PODS:
7674
- GTMSessionFetcher/Core (< 3.0, >= 1.1)
7775
- MLImage (= 1.0.0-beta4)
7876
- MLKitCommon (~> 9.0)
79-
- mobile_scanner (3.2.0):
77+
- mobile_scanner (3.5.5):
8078
- Flutter
8179
- GoogleMLKit/BarcodeScanning (~> 4.0.0)
8280
- nanopb (2.30909.0):
@@ -119,7 +117,6 @@ DEPENDENCIES:
119117
- flutter_local_notifications (from `.symlinks/plugins/flutter_local_notifications/ios`)
120118
- flutter_secure_storage (from `.symlinks/plugins/flutter_secure_storage/ios`)
121119
- flutter_timezone (from `.symlinks/plugins/flutter_timezone/ios`)
122-
- image_picker_ios (from `.symlinks/plugins/image_picker_ios/ios`)
123120
- local_auth_ios (from `.symlinks/plugins/local_auth_ios/ios`)
124121
- mobile_scanner (from `.symlinks/plugins/mobile_scanner/ios`)
125122
- package_info_plus (from `.symlinks/plugins/package_info_plus/ios`)
@@ -170,8 +167,6 @@ EXTERNAL SOURCES:
170167
:path: ".symlinks/plugins/flutter_secure_storage/ios"
171168
flutter_timezone:
172169
:path: ".symlinks/plugins/flutter_timezone/ios"
173-
image_picker_ios:
174-
:path: ".symlinks/plugins/image_picker_ios/ios"
175170
local_auth_ios:
176171
:path: ".symlinks/plugins/local_auth_ios/ios"
177172
mobile_scanner:
@@ -196,11 +191,11 @@ EXTERNAL SOURCES:
196191
:path: ".symlinks/plugins/wakelock_plus/ios"
197192

198193
SPEC CHECKSUMS:
199-
add_2_calendar: e9d68636aed37fb18e12f5a3d74c2e0589487af0
194+
add_2_calendar: 5eee66d5a3b99cd5e1487a7e03abd4e3ac4aff11
200195
aes_ecb_pkcs5_flutter: a82e6ecc47654000805ad9d094a8cd29e4bf9667
201196
app_links: 5ef33d0d295a89d9d16bb81b0e3b0d5f70d6c875
202197
connectivity_plus: bf0076dd84a130856aa636df1c71ccaff908fa1d
203-
device_info_plus: 7545d84d8d1b896cb16a4ff98c19f07ec4b298ea
198+
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
204199
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
205200
flutter_inappwebview: 166ed136c90e43c69b451f6d825da379be66c847
206201
flutter_local_notifications: 0c0b1ae97e741e1521e4c1629a459d04b9aec743
@@ -212,25 +207,24 @@ SPEC CHECKSUMS:
212207
GoogleUtilities: 9aa0ad5a7bc171f8bae016300bfcfa3fb8425749
213208
GoogleUtilitiesComponents: 679b2c881db3b615a2777504623df6122dd20afe
214209
GTMSessionFetcher: 3a63d75eecd6aa32c2fc79f578064e1214dfdec2
215-
image_picker_ios: 4a8aadfbb6dc30ad5141a2ce3832af9214a705b5
216210
local_auth_ios: c6cf091ded637a88f24f86a8875d8b0f526e2605
217211
MLImage: 7bb7c4264164ade9bf64f679b40fb29c8f33ee9b
218212
MLKitBarcodeScanning: 04e264482c5f3810cb89ebc134ef6b61e67db505
219213
MLKitCommon: c1b791c3e667091918d91bda4bba69a91011e390
220214
MLKitVision: 8baa5f46ee3352614169b85250574fde38c36f49
221-
mobile_scanner: 47056db0c04027ea5f41a716385542da28574662
215+
mobile_scanner: 202ab6f652e40a9add68b10de4c4fb2a745c4348
222216
nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
223217
OrderedSet: aaeb196f7fef5a9edf55d89760da9176ad40b93c
224218
package_info_plus: 115f4ad11e0698c8c1c5d8a689390df880f47e85
225-
path_provider_foundation: eaf5b3e458fc0e5fbb9940fb09980e853fe058b8
219+
path_provider_foundation: 29f094ae23ebbca9d3d0cec13889cd9060c0e943
226220
permission_handler_apple: e76247795d700c14ea09e3a2d8855d41ee80a2e6
227221
printing: 233e1b73bd1f4a05615548e9b5a324c98588640b
228222
PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef
229223
ReachabilitySwift: 985039c6f7b23a1da463388634119492ff86c825
230224
screen_brightness_ios: 715ca807df953bf676d339f11464e438143ee625
231225
share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5
232-
shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
233-
url_launcher_ios: 08a3dfac5fb39e8759aeb0abbd5d9480f30fc8b4
226+
shared_preferences_foundation: 5b919d13b803cadd15ed2dc053125c68730e5126
227+
url_launcher_ios: bf5ce03e0e2088bad9cc378ea97fa0ed5b49673b
234228
wakelock_plus: 8b09852c8876491e4b6d179e17dfe2a0b5f60d47
235229

236230
PODFILE CHECKSUM: 90aee035b683484f7e14ac9a57b7dc9185377dcb

app/ios/Runner.xcodeproj/project.pbxproj

-2
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@
245245
"${BUILT_PRODUCTS_DIR}/flutter_local_notifications/flutter_local_notifications.framework",
246246
"${BUILT_PRODUCTS_DIR}/flutter_secure_storage/flutter_secure_storage.framework",
247247
"${BUILT_PRODUCTS_DIR}/flutter_timezone/flutter_timezone.framework",
248-
"${BUILT_PRODUCTS_DIR}/image_picker_ios/image_picker_ios.framework",
249248
"${BUILT_PRODUCTS_DIR}/local_auth_ios/local_auth_ios.framework",
250249
"${BUILT_PRODUCTS_DIR}/nanopb/nanopb.framework",
251250
"${BUILT_PRODUCTS_DIR}/package_info_plus/package_info_plus.framework",
@@ -275,7 +274,6 @@
275274
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_local_notifications.framework",
276275
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_secure_storage.framework",
277276
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/flutter_timezone.framework",
278-
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/image_picker_ios.framework",
279277
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/local_auth_ios.framework",
280278
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/nanopb.framework",
281279
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/package_info_plus.framework",

app/js_service_encointer/.browserslistrc

-11
This file was deleted.

app/js_service_encointer/.gitignore

-7
This file was deleted.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)