Skip to content

Commit ffccedc

Browse files
v1.2.0+1 - code reformating
1 parent 9292903 commit ffccedc

File tree

7 files changed

+11
-6
lines changed

7 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.2.0+1
2+
- Code formatted according to dartfmt
3+
14
## 1.2.0
25
It is now possible to integrate a Flutter application with the iOS CallDirectory App Extension,
36
to block and identify incoming calls!

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- flutter_callkit_voximplant (1.2.0):
3+
- "flutter_callkit_voximplant (1.2.0+1)":
44
- Flutter
55

66
DEPENDENCIES:
@@ -15,7 +15,7 @@ EXTERNAL SOURCES:
1515

1616
SPEC CHECKSUMS:
1717
Flutter: 0e3d915762c693b495b44d77113d4970485de6ec
18-
flutter_callkit_voximplant: 3c1a1d4f0e11ccfee9faee36a09082eec2ff0a86
18+
flutter_callkit_voximplant: 926803f2e2cf7b0404893fa15b38f3c62ef524d1
1919

2020
PODFILE CHECKSUM: 8e679eca47255a8ca8067c4c67aab20e64cb974d
2121

ios/flutter_callkit_voximplant.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'flutter_callkit_voximplant'
7-
s.version = '1.2.0'
7+
s.version = '1.2.0+1'
88
s.summary = 'Flutter SDK for CallKit integration to Flutter applications on iOS'
99
s.homepage = 'https://github.com/voximplant/flutter_callkit'
1010
s.license = { :type => 'MIT',

lib/flutter_callkit_voximplant.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ const String _PLUGIN = 'Plugin';
9090
const String _PROVIDER = 'Provider';
9191
const String _CALL_CONTROLLER = 'CallController';
9292
const String _ACTION = 'Action';
93-
const String _TRANSACTION = 'Transaction';
93+
const String _TRANSACTION = 'Transaction';

lib/src/exceptions.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ class FCXPluginError {
3333
'ERROR_IMPLEMENTATION_NOT_FOUND';
3434
static const String ERROR_INVALID_ARGUMENTS = 'ERROR_INVALID_ARGUMENTS';
3535
static const String ERROR_LOW_IOS_VERSION = 'ERROR_LOW_IOS_VERSION';
36+
3637
/// Handler for the call not found in native iOS code.
3738
static const String ERROR_HANDLER_NOT_REGISTERED =
3839
'ERROR_HANDLER_NOT_REGISTERED';

lib/src/provider.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,8 @@ class FCXProvider {
387387
}
388388
} else if (eventName == 'timedOutPerformingAction') {
389389
if (timedOutPerformingAction != null) {
390-
final FCXAction action = _FCXActionMapDecodable._makeAction(map['action']);
390+
final FCXAction action =
391+
_FCXActionMapDecodable._makeAction(map['action']);
391392
timedOutPerformingAction(action);
392393
}
393394
} else if (eventName == 'didActivateAudioSession') {

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_callkit_voximplant
22
description: Flutter SDK for CallKit integration to Flutter applications on iOS
3-
version: 1.2.0
3+
version: 1.2.0+1
44
homepage: https://github.com/voximplant/flutter_callkit
55
repository: https://github.com/voximplant/flutter_callkit
66

0 commit comments

Comments
 (0)