Skip to content

Commit cc9e5c4

Browse files
authored
Merge pull request #7 from EXXETA/develop
Develop merge into main 1.0.1
2 parents 13e5704 + a24b722 commit cc9e5c4

26 files changed

+253
-2122
lines changed

Package.swift

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "SecurityToolkit",
77
platforms: [
8-
.iOS(.v12),
8+
.iOS(.v13),
99
],
1010
products: [
1111
.library(
@@ -14,9 +14,8 @@ let package = Package(
1414
),
1515
],
1616
targets: [
17-
.binaryTarget(
18-
name: "SecurityToolkit",
19-
path: "SecurityToolkit.xcframework"
17+
.target(
18+
name: "SecurityToolkit"
2019
)
2120
]
2221
)

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,17 @@
11
# Mobile Security Toolkit
22

3+
![License](https://img.shields.io/github/license/EXXETA/Android-Security-Toolkit.svg?style=flat-square)
4+
![Release](https://img.shields.io/github/release/EXXETA/Android-Security-Toolkit.svg?style=flat-square)
5+
36
<img src="./docs/1.png" width=300 alt="screenshot"/>
47

58
In a world where mobile devices hold vast amounts of personal and
69
business-critical data, security is no longer optional — it's essential.
710

8-
Security Suite is an open-source project designed to work on mobile security by
11+
iOS Security Toolkit is an open-source project designed to work on mobile security by
912
providing a developer-friendly, all-in-one repository for developers and
1013
security experts.
1114

12-
> [!IMPORTANT]
13-
> This Version of Mobile Security Toolkit depends on a private part. It is
14-
> planned to be open-sourced later. Please follow [Feature Request Issue](https://github.com/EXXETA/iOS-Security-Toolkit/issues/1)
15-
> to be updated about status of the project
16-
1715
This project is based on the [OWASP guide](https://github.com/MobSF/owasp-mstg/blob/master/Document/0x06j-Testing-Resiliency-Against-Reverse-Engineering.md)
1816
to the mobile security.
1917

@@ -34,7 +32,15 @@ Swift Package Manager
3432
### SPM
3533

3634
`.package(url: "https://github.com/EXXETA/iOS-Security-Toolkit.git", from:
37-
"1.0.0")`
35+
"1.0.1")`
36+
37+
## CocoaPods
38+
39+
[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate iOSSecurityToolkit into your Xcode project using CocoaPods, specify it in your `Podfile`:
40+
41+
```ruby
42+
pod 'Alamofire'
43+
```
3844

3945
## Usage
4046

SecurityToolkit.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Pod::Spec.new do |s|
2+
s.name = 'SecurityToolkit'
3+
s.version = '1.0.1'
4+
s.summary = 'Simple and easy security threat detector in Swift'
5+
s.homepage = 'https://github.com/EXXETA/iOS-Security-Toolkit'
6+
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
7+
s.author = { 'Exxeta AG' => '[email protected]' }
8+
s.source = { :git => 'https://github.com/EXXETA/iOS-Security-Toolkit.git', :tag => s.version }
9+
10+
s.ios.deployment_target = '13.0'
11+
s.swift_version = '5'
12+
13+
s.source_files = 'Sources/**'
14+
15+
end

SecurityToolkit.xcframework/Info.plist

Lines changed: 0 additions & 44 deletions
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)