File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ // swift-tools-version:5.3
2
+
3
+ //
4
+ // Package.swift
5
+ // IAPReceiptVerifier
6
+ //
7
+ // Created by Mark Hoath on 3/7/21.
8
+ //
9
+
10
+ import PackageDescription
11
+
12
+ let package = Package (
13
+ name: " IAPReceiptVerifier " ,
14
+ platforms: [
15
+ . iOS( . v14)
16
+ ] ,
17
+ products: [
18
+ // Products define the executables and libraries a package produces, and make them visible to other packages.
19
+ . library(
20
+ name: " IAPReceiptVerifier " ,
21
+ targets: [ " IAPReceiptVerifier " ] )
22
+ ] ,
23
+ dependencies: [
24
+ // Dependencies declare other packages that this package depends on.
25
+ ] ,
26
+ targets: [
27
+ // Targets are the basic building blocks of a package. A target can define a module or a test suite.
28
+ // Targets can depend on other targets in this package, and on products in packages this package depends on.
29
+ . target(
30
+ name: " IAPReceiptVerifier " ,
31
+ dependencies: [ ] ,
32
+ path: " IAPReceiptVerifier/Classes " )
33
+ ]
34
+ )
You can’t perform that action at this time.
0 commit comments