Skip to content

Commit e2a3b6d

Browse files
authored
Fix: iOS and macOS pod install issue (#1)
fix: (iOS) podspec rename + (Android) Remove registrar build error on v1 plugin
1 parent aa3c45e commit e2a3b6d

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

cryptography_flutter/android/src/main/kotlin/dev/dint/cryptography_flutter/CryptographyFlutterPlugin.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import io.flutter.plugin.common.MethodCall
2121
import io.flutter.plugin.common.MethodChannel
2222
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
2323
import io.flutter.plugin.common.MethodChannel.Result
24-
import io.flutter.plugin.common.PluginRegistry.Registrar
2524
import java.math.BigInteger
2625
import java.security.*
2726
import java.security.interfaces.*

cryptography_flutter/ios/cryptography_flutter.podspec renamed to cryptography_flutter/ios/cryptography_flutter_plus.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Run `pod lib lint cryptography_flutter.podspec' to validate before publishing.
44
#
55
Pod::Spec.new do |s|
6-
s.name = 'cryptography_flutter'
6+
s.name = 'cryptography_flutter_plus'
77
s.version = '0.2.0'
88
s.summary = 'A cryptography plugin for Flutter.'
99
s.description = <<-DESC

cryptography_flutter/macos/cryptography_flutter.podspec renamed to cryptography_flutter/macos/cryptography_flutter_plus.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Run `pod lib lint cryptography_flutter.podspec' to validate before publishing.
44
#
55
Pod::Spec.new do |s|
6-
s.name = 'cryptography_flutter'
6+
s.name = 'cryptography_flutter_plus'
77
s.version = '0.2.0'
88
s.summary = 'A cryptography plugin for Flutter.'
99
s.description = <<-DESC
@@ -19,4 +19,4 @@ A new flutter plugin project.
1919
s.platform = :osx, '10.11'
2020
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2121
s.swift_version = '5.0'
22-
end
22+
end

0 commit comments

Comments
 (0)