Skip to content

Commit eb2af5c

Browse files
chore: remove unnecessary dependency to OSCommonLib on iOS (#42)
* chore: remove unnecessary dependency to OSCommonLib on iOS References: https://outsystemsrd.atlassian.net/browse/RMET-4899 * chore: update changelog
1 parent 0dff642 commit eb2af5c

File tree

3 files changed

+6
-15
lines changed

3 files changed

+6
-15
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Changelog
22
=========
33

4+
2.6.8-OS26 - 2026-01-05
5+
------------------
6+
- Chore: [iOS] Remove unnecessary dependency to OSCommonPluginLib on iOS (https://outsystemsrd.atlassian.net/browse/RMET-4899)
7+
48
2.6.8-OS25 - 2025-11-14
59
------------------
610
- Fix: [android] Fixes missing strings.xml on target project (https://outsystemsrd.atlassian.net/browse/RMET-4780)

plugin.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,6 @@
3737

3838
<source-file src="src/ios/SecureStorage.swift"/>
3939
<framework src="src/ios/frameworks/OSKeyStoreLib.xcframework" embed="true" custom="true" />
40-
41-
<podspec>
42-
<config>
43-
<source url="https://cdn.cocoapods.org/"/>
44-
</config>
45-
<pods use-frameworks="true">
46-
<pod name="OSCommonPluginLib" spec="1.0.0" />
47-
</pods>
48-
</podspec>
4940
</platform>
5041

5142
<platform name="android">

src/ios/SecureStorage.swift

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import OSCommonPluginLib
21
import OSKeyStoreLib
32

43
@objc(SecureStorage)
@@ -119,11 +118,8 @@ class SecureStorage: CDVPlugin {
119118
self.plugin?.delete(service: service)
120119
}
121120
}
122-
}
123-
124-
// MARK: - OSCore's PlatformProtocol Methods
125-
extension SecureStorage: PlatformProtocol {
126-
func sendResult(result: String?, error: NSError?, callBackID: String) {
121+
122+
private func sendResult(result: String?, error: NSError?, callBackID: String) {
127123
var pluginResult = CDVPluginResult(status: CDVCommandStatus_ERROR)
128124

129125
if let error = error {

0 commit comments

Comments
 (0)