File tree Expand file tree Collapse file tree 3 files changed +63
-1
lines changed
Sources/DataDrivenRxDatasources Expand file tree Collapse file tree 3 files changed +63
-1
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "DataDrivenRxDatasources"
3
- s . version = "3.5.3 "
3
+ s . version = "3.6.0 "
4
4
s . summary = "MVVM abstraction boilerplate code over RxDataSources."
5
5
s . description = <<-DESC
6
6
DataDrivenRxDatasources - MVVM abstraction boilerplate code over RxDataSources.
@@ -42,6 +42,8 @@ tableView.rx
42
42
s . ios . deployment_target = '11.0'
43
43
44
44
s . source_files = "Sources/DataDrivenRxDatasources/*.swift" , "Sources/DataDrivenRxDatasources/**/*.swift"
45
+
46
+ s . resource_bundles = { "DataDrivenRxDatasources" => [ "Sources/DataDrivenRxDatasources/PrivacyInfo.xcprivacy" ] }
45
47
46
48
s . dependency 'RxSwift' , '~> 6.0'
47
49
s . dependency 'RxDataSources' , '~> 5.0'
Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.9
2
+ // The swift-tools-version declares the minimum version of Swift required to build this package.
3
+
4
+ import PackageDescription
5
+
6
+ let package = Package (
7
+ name: " DataDrivenRxDatasources " ,
8
+ platforms: [
9
+ . iOS( . v12)
10
+ ] ,
11
+ products: [
12
+ // Products define the executables and libraries produced by a package, and make them visible to other packages.
13
+ . library(
14
+ name: " DataDrivenRxDatasources " ,
15
+ targets: [ " DataDrivenRxDatasources " ] ) ,
16
+ ] ,
17
+ dependencies: [
18
+ // Dependencies declare other packages that this package depends on.
19
+ . package ( url: " https://github.com/ReactiveX/RxSwift.git " , . upToNextMajor( from: " 6.0.0 " ) ) ,
20
+ . package ( url: " https://github.com/RxSwiftCommunity/RxDataSources.git " , . upToNextMajor( from: " 5.0.0 " ) ) ,
21
+ ] ,
22
+ targets: [
23
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
24
+ // Targets can depend on other targets in this package, and on products in packages which this package depends on.
25
+ . target(
26
+ name: " DataDrivenRxDatasources " ,
27
+ dependencies: [ " RxSwift " , " RxDataSources " ] ,
28
+ resources: [
29
+ . copy( " PrivacyInfo.xcprivacy " )
30
+ ]
31
+ ) ,
32
+ . testTarget(
33
+ name: " DataDrivenRxDatasourcesTests " ,
34
+ dependencies: [ " DataDrivenRxDatasources " ] ) ,
35
+ ]
36
+ )
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
+ <!--
4
+ PrivacyInfo.xcprivacy
5
+
6
+
7
+ Created by Mykola Fiantsev on 15.03.2024.
8
+ Copyright (c) 2024 ___ORGANIZATIONNAME___. All rights reserved.
9
+
10
+ https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_data_use_in_privacy_manifests
11
+ https://developer.apple.com/documentation/bundleresources/privacy_manifest_files/describing_use_of_required_reason_api
12
+ -->
13
+ <plist version =" 1.0" >
14
+ <dict >
15
+ <key >NSPrivacyTracking</key >
16
+ <false />
17
+ <key >NSPrivacyCollectedDataTypes</key >
18
+ <array />
19
+ <key >NSPrivacyTrackingDomains</key >
20
+ <array />
21
+ <key >NSPrivacyAccessedAPITypes</key >
22
+ <array />
23
+ </dict >
24
+ </plist >
You can’t perform that action at this time.
0 commit comments