File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 1
1
PODS:
2
2
- KeychainSwift (20.0.0)
3
- - LMStorage (1.0.6 ):
3
+ - LMStorage (1.0.7 ):
4
4
- KeychainSwift
5
5
6
6
DEPENDENCIES:
@@ -16,8 +16,8 @@ EXTERNAL SOURCES:
16
16
17
17
SPEC CHECKSUMS:
18
18
KeychainSwift: 0ce6a4d13f7228054d1a71bb1b500448fb2ab837
19
- LMStorage: f231736ce408aebabcdb90b1329e7695daa91a93
19
+ LMStorage: c9ed5f5f798dee0bc9147c5358273cc47f706376
20
20
21
21
PODFILE CHECKSUM: 208c4e2d0bc43c26e11d7fc08d1151f5fc532b17
22
22
23
- COCOAPODS: 1.11.3
23
+ COCOAPODS: 1.15.2
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "LMStorage"
3
- s . version = "1.0.6 "
3
+ s . version = "1.0.7 "
4
4
s . summary = "💾 LMStorage is a framework which reduces the complexity of managing a persistent layer."
5
5
s . requires_arc = true
6
6
s . homepage = "https://github.com/thejohnlima/LMStorage"
@@ -12,6 +12,7 @@ Pod::Spec.new do |s|
12
12
s . watchos . deployment_target = "4.0"
13
13
s . source = { :git => "https://github.com/thejohnlima/LMStorage.git" , :tag => "#{ s . version } " }
14
14
s . source_files = "Sources/LMStorage/**/*.{swift}"
15
+ s . resource_bundles = { 'LMStorage_Privacy' => 'Sources/LMStorage/PrivacyInfo.xcprivacy' }
15
16
s . swift_version = "5.0"
16
17
s . dependency 'KeychainSwift'
17
18
end
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ let package = Package(
21
21
name: " LMStorage " ,
22
22
dependencies: [
23
23
. product( name: " KeychainSwift " , package : " keychain-swift " )
24
+ ] ,
25
+ resources: [
26
+ . copy( " Sources/LMStorage/PrivacyInfo.xcprivacy " )
24
27
]
25
28
) ,
26
29
. testTarget(
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version =" 1.0" >
4
+ <dict >
5
+ <key >NSPrivacyAccessedAPITypes</key >
6
+ <array >
7
+ <dict >
8
+ <key >NSPrivacyAccessedAPIType</key >
9
+ <string >NSPrivacyAccessedAPICategoryUserDefaults</string >
10
+ <key >NSPrivacyAccessedAPITypeReasons</key >
11
+ <array >
12
+ <string >1C8F.1</string >
13
+ <string >C56D.1</string >
14
+ </array >
15
+ </dict >
16
+ </array >
17
+ </dict >
18
+ </plist >
You can’t perform that action at this time.
0 commit comments