Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/android_alarm_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.4.4+1

* Update and migrate iOS example project.
* Define clang module for iOS.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bkonyi does this need a new version? The currently published one is 0.4.4.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably not, based on a discussion with @cyanglaz.


## 0.4.4

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar {
FlutterMethodChannel* channel =
[FlutterMethodChannel methodChannelWithName:@"plugins.flutter.io/android_alarm_manager"
binaryMessenger:[registrar messenger]
codec:[FlutterJSONMessageCodec sharedInstance]];
codec:[FlutterJSONMethodCodec sharedInstance]];
FLTAndroidAlarmManagerPlugin* instance = [[FLTAndroidAlarmManagerPlugin alloc] init];
[registrar addMethodCallDelegate:instance channel:channel];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ A new flutter plugin project.
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'

s.ios.deployment_target = '8.0'
s.platform = :ios, '8.0'
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'VALID_ARCHS[sdk=iphonesimulator*]' => 'x86_64' }
end

1 change: 0 additions & 1 deletion script/lint_darwin_plugins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ function lint_packages() {

# TODO: These packages have linter errors. Remove plugins from this list as linter issues are fixed.
local skipped_packages=(
'android_alarm_manager'
'android_intent'
'battery'
'connectivity'
Expand Down