Skip to content

Commit d531fe2

Browse files
authored
Merge pull request #121 from diegotori/pigeon_v26_upgrade
Pigeon v26.2 upgrade
2 parents 0c74e5b + 8b5d060 commit d531fe2

36 files changed

Lines changed: 774 additions & 320 deletions

File tree

.github/workflows/checks.yml

Lines changed: 467 additions & 68 deletions
Large diffs are not rendered by default.

.github/workflows/pana.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
- uses: axel-op/dart-package-analyzer@v3
3232
with:
3333
relativePath: ${{ matrix.package }}

wakelock_plus/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ pubspec.lock
6868
**/ios/Flutter/flutter_export_environment.sh
6969
**/ios/ServiceDefinitions.json
7070
**/ios/Runner/GeneratedPluginRegistrant.*
71+
**/.build/
7172

7273
# Exceptions to above rules.
7374
!**/ios/**/default.mode1v3

wakelock_plus/analysis_options.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ analyzer:
77
- ".git/**" # Exclude private git directory
88
- "build/**" # Exclude generated files in the build directory
99
- ".dart_tool/**" # Exclude Dart tool-generated files
10+
- "pigeons/**" # Exclude pigeons
1011

1112
linter:
1213
rules:

wakelock_plus/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ android {
4646

4747
defaultConfig {
4848
// Use flutter.minSdkVersion once the minimum supported Flutter version is 3.35 or higher.
49-
minSdkVersion 21
49+
minSdkVersion flutter.minSdkVersion
5050
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
5151
}
5252

wakelock_plus/android/src/main/kotlin/dev/fluttercommunity/plus/wakelock/WakelockPlusMessages.g.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Autogenerated from Pigeon (v26.0.1), do not edit directly.
1+
// Autogenerated from Pigeon (v26.2.3), do not edit directly.
22
// See also: https://pub.dev/packages/pigeon
33
@file:Suppress("UNCHECKED_CAST", "ArrayInDataClass")
44

@@ -56,7 +56,7 @@ private object WakelockPlusMessagesPigeonUtils {
5656
}
5757
if (a is Map<*, *> && b is Map<*, *>) {
5858
return a.size == b.size && a.all {
59-
(b as Map<Any?, Any?>).containsKey(it.key) &&
59+
(b as Map<Any?, Any?>).contains(it.key) &&
6060
deepEquals(it.value, b[it.key])
6161
}
6262
}

wakelock_plus/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,5 @@
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
23-
<key>MinimumOSVersion</key>
24-
<string>12.0</string>
2523
</dict>
2624
</plist>

wakelock_plus/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, '13.0'
33

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

wakelock_plus/example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ EXTERNAL SOURCES:
2424
:path: ".symlinks/plugins/wakelock_plus/ios"
2525

2626
SPEC CHECKSUMS:
27-
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
27+
Flutter: cabc95a1d2626b1b06e7179b784ebcf0c0cde467
2828
integration_test: 4a889634ef21a45d28d50d622cf412dc6d9f586e
2929
package_info_plus: af8e2ca6888548050f16fa2f1938db7b5a5df499
3030
wakelock_plus: e29112ab3ef0b318e58cfa5c32326458be66b556
3131

32-
PODFILE CHECKSUM: beab77b38961de946f08660e554f80ac174dc842
32+
PODFILE CHECKSUM: a5dd15803c05a42a9ae1068254e24631f03bf853
3333

3434
COCOAPODS: 1.16.2

wakelock_plus/example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@
463463
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
464464
GCC_WARN_UNUSED_FUNCTION = YES;
465465
GCC_WARN_UNUSED_VARIABLE = YES;
466-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
466+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
467467
MTL_ENABLE_DEBUG_INFO = NO;
468468
SDKROOT = iphoneos;
469469
SUPPORTED_PLATFORMS = iphoneos;
@@ -580,7 +580,7 @@
580580
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
581581
GCC_WARN_UNUSED_FUNCTION = YES;
582582
GCC_WARN_UNUSED_VARIABLE = YES;
583-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
583+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
584584
MTL_ENABLE_DEBUG_INFO = YES;
585585
ONLY_ACTIVE_ARCH = YES;
586586
SDKROOT = iphoneos;
@@ -629,7 +629,7 @@
629629
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
630630
GCC_WARN_UNUSED_FUNCTION = YES;
631631
GCC_WARN_UNUSED_VARIABLE = YES;
632-
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
632+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
633633
MTL_ENABLE_DEBUG_INFO = NO;
634634
SDKROOT = iphoneos;
635635
SUPPORTED_PLATFORMS = iphoneos;

0 commit comments

Comments
 (0)