diff --git a/ios/customer_io.podspec b/ios/customer_io.podspec old mode 100644 new mode 100755 index 434218b..e80b05a --- a/ios/customer_io.podspec +++ b/ios/customer_io.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'customer_io' - s.version = '1.0.0-alpha.4' + s.version = '1.0.0-alpha.5' s.summary = 'Customer.io plugin for Flutter' s.homepage = 'https://customer.io/' s.license = { :file => '../LICENSE' } diff --git a/lib/customer_io_method_channel.dart b/lib/customer_io_method_channel.dart index 56778b3..743d7be 100644 --- a/lib/customer_io_method_channel.dart +++ b/lib/customer_io_method_channel.dart @@ -123,5 +123,4 @@ class CustomerIOMethodChannel extends CustomerIOPlatform { } } } - } diff --git a/lib/customer_io_platform_interface.dart b/lib/customer_io_platform_interface.dart index f352b03..9490b28 100644 --- a/lib/customer_io_platform_interface.dart +++ b/lib/customer_io_platform_interface.dart @@ -24,7 +24,6 @@ abstract class CustomerIOPlatform extends PlatformInterface { _instance = instance; } - Future initialize({ required CustomerIOConfig config, }) { diff --git a/lib/customer_io_plugin_version.dart b/lib/customer_io_plugin_version.dart old mode 100644 new mode 100755 index b2e307c..4f342ac --- a/lib/customer_io_plugin_version.dart +++ b/lib/customer_io_plugin_version.dart @@ -1,2 +1,2 @@ // Don't modify this line - it's automatically updated -const version = "1.0.0-alpha.4"; \ No newline at end of file +const version = "1.0.0-alpha.5"; diff --git a/test/customer_io_method_channel_test.dart b/test/customer_io_method_channel_test.dart index 68d44da..9437524 100644 --- a/test/customer_io_method_channel_test.dart +++ b/test/customer_io_method_channel_test.dart @@ -15,5 +15,4 @@ void main() { tearDown(() { channel.setMockMethodCallHandler(null); }); - } diff --git a/test/customer_io_test.dart b/test/customer_io_test.dart index b38126c..4a0d87e 100644 --- a/test/customer_io_test.dart +++ b/test/customer_io_test.dart @@ -7,7 +7,6 @@ import 'package:plugin_platform_interface/plugin_platform_interface.dart'; class MockCustomerIoPlatform with MockPlatformInterfaceMixin implements CustomerIOPlatform { - @override Future initialize({required CustomerIOConfig config}) { // TODO: implement config @@ -20,12 +19,15 @@ class MockCustomerIoPlatform } @override - void identify({required String identifier, Map attributes = const {}}) { + void identify( + {required String identifier, + Map attributes = const {}}) { // TODO: implement identify } @override - void screen({required String name, Map attributes = const {}}) { + void screen( + {required String name, Map attributes = const {}}) { // TODO: implement screen } @@ -40,10 +42,10 @@ class MockCustomerIoPlatform } @override - void track({required String name, Map attributes = const {}}) { + void track( + {required String name, Map attributes = const {}}) { // TODO: implement track } - } void main() {