Skip to content

Commit b9f9049

Browse files
committed
Merge branch 'master' into 1139-single-record-ios
2 parents 702b213 + 93851f9 commit b9f9049

43 files changed

Lines changed: 4697 additions & 4657 deletions

Some content is hidden

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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,4 @@ app.*.symbols
124124

125125
.sdkmanrc
126126
**/.cxx/
127+
.zed/settings.json

.zed/settings.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"lsp": {
3+
"dart": {
4+
"binary": {
5+
"path": "/opt/homebrew/bin/fvm",
6+
"arguments": ["dart", "language-server", "--protocol=lsp"]
7+
}
8+
}
9+
},
10+
"auto_install_extensions": {
11+
"dart": true
12+
},
13+
"debugger": {
14+
"stepping_granularity": "line",
15+
"save_breakpoints": true,
16+
"show_button": true,
17+
"timeout": 3000
18+
}
19+
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# CACHET Flutter plugins
1+
# CARP Flutter plugins
22

3-
This repo contains the source code for Flutter first-party plugins developed by developers at the [Copenhagen Center for Health Technology (CACHET)](http://www.cachet.dk/) at The Technical University of Denmark.
3+
This repo contains the source code for Flutter first-party plugins developed by developers at the [Copenhagen Research Platform (CARP)](http://www.carp.dk/) at The Technical University of Denmark.
44
Check the `packages` directory for all plugins.
55

66
Flutter plugins enable access to platform-specific APIs using a platform channel.
7-
For more information about plugins, and how to use them, see
7+
For more information about plugins and how to use them, see
88
[https://flutter.io/platform-plugins/](https://flutter.io/platform-plugins/).
99

1010
## Plugins

packages/audio_streamer/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 4.2.2
2+
3+
* Reverts [#1226](https://github.com/cph-cachet/flutter-plugins/pull/1226)
4+
15
## 4.2.0
26

37
* Gradle files restructure for example app

packages/audio_streamer/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: audio_streamer
22
description: Streaming of Pulse-code modulation (PCM) audio from Android and iOS
3-
version: 4.2.0
3+
version: 4.2.2
44
homepage: https://github.com/cph-cachet/flutter-plugins/tree/master/packages/
55

66
environment:

packages/carp_background_location/example/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>

packages/carp_background_location/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, '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'

packages/carp_background_location/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
97C146E61CF9000F007C117D /* Project object */ = {
164164
isa = PBXProject;
165165
attributes = {
166-
LastUpgradeCheck = 1300;
166+
LastUpgradeCheck = 1510;
167167
ORGANIZATIONNAME = "";
168168
TargetAttributes = {
169169
97C146ED1CF9000F007C117D = {
@@ -350,7 +350,7 @@
350350
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
351351
GCC_WARN_UNUSED_FUNCTION = YES;
352352
GCC_WARN_UNUSED_VARIABLE = YES;
353-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
353+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
354354
MTL_ENABLE_DEBUG_INFO = NO;
355355
SDKROOT = iphoneos;
356356
SUPPORTED_PLATFORMS = iphoneos;
@@ -436,7 +436,7 @@
436436
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
437437
GCC_WARN_UNUSED_FUNCTION = YES;
438438
GCC_WARN_UNUSED_VARIABLE = YES;
439-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
439+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
440440
MTL_ENABLE_DEBUG_INFO = YES;
441441
ONLY_ACTIVE_ARCH = YES;
442442
SDKROOT = iphoneos;
@@ -485,7 +485,7 @@
485485
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
486486
GCC_WARN_UNUSED_FUNCTION = YES;
487487
GCC_WARN_UNUSED_VARIABLE = YES;
488-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
488+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
489489
MTL_ENABLE_DEBUG_INFO = NO;
490490
SDKROOT = iphoneos;
491491
SUPPORTED_PLATFORMS = iphoneos;

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

Lines changed: 2 additions & 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"
@@ -50,6 +50,7 @@
5050
ignoresPersistentStateOnLaunch = "NO"
5151
debugDocumentVersioning = "YES"
5252
debugServiceExtension = "internal"
53+
enableGPUValidationMode = "1"
5354
allowLocationSimulation = "YES">
5455
<BuildableProductRunnable
5556
runnableDebuggingMode = "0">

packages/carp_background_location/example/ios/Runner/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ func registerPlugins(registry: FlutterPluginRegistry) -> () {
88
}
99
}
1010

11-
@UIApplicationMain
11+
@main
1212
@objc class AppDelegate: FlutterAppDelegate {
1313
override func application(
1414
_ application: UIApplication,

0 commit comments

Comments
 (0)