Skip to content

Commit 4bf9bf5

Browse files
authored
release: freeRASP 2.0.0 (#31)
* release: freeRASP 1.10.1 * feat: upgrade gradle
1 parent 91a0927 commit 4bf9bf5

File tree

30 files changed

+578
-545
lines changed

30 files changed

+578
-545
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.0.0] - 2024-03-25
9+
10+
- iOS SDK version: 6.9.0
11+
- Android SDK version: 15.0.0
12+
13+
### Capacitor
14+
15+
#### Changed
16+
17+
- Android SDK requires `kotlin_version` >= `2.0.0`
18+
19+
### Android
20+
21+
#### Changed
22+
23+
- Compile API increased to 35, dependencies updated
24+
- Internal library obfuscation reworked
25+
- Root detection divided into 2 parts (quick initial checks, and time-demanding asynchronous post checks)
26+
27+
#### Fixed
28+
29+
- ANR issues bug-fixing
30+
31+
### iOS
32+
33+
#### Added
34+
35+
- Improvement of the obfuscation of the SDK.
36+
37+
#### Changed
38+
39+
- Deep signing of the OpenSSL binaries.
40+
841
## [1.10.0] - 2025-03-05
942

1043
- iOS SDK version: 6.8.0

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ext {
88

99
buildscript {
1010
ext {
11-
kotlin_version = '1.8.22'
11+
kotlin_version = '2.1.0'
1212
}
1313
repositories {
1414
google()
@@ -76,5 +76,5 @@ dependencies {
7676
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
7777
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
7878

79-
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:14.0.1'
79+
implementation 'com.aheaditec.talsec.security:TalsecSecurity-Community-Capacitor:15.0.0'
8080
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
44
networkTimeout=10000
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
buildscript {
44

55
ext {
6-
kotlin_version = '1.9.22'
6+
kotlin_version = '2.0.0'
77
}
88

99
repositories {

ios/Plugin/TalsecRuntime.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,32 @@
88
<key>BinaryPath</key>
99
<string>TalsecRuntime.framework/TalsecRuntime</string>
1010
<key>LibraryIdentifier</key>
11-
<string>ios-arm64</string>
11+
<string>ios-arm64_x86_64-simulator</string>
1212
<key>LibraryPath</key>
1313
<string>TalsecRuntime.framework</string>
1414
<key>SupportedArchitectures</key>
1515
<array>
1616
<string>arm64</string>
17+
<string>x86_64</string>
1718
</array>
1819
<key>SupportedPlatform</key>
1920
<string>ios</string>
21+
<key>SupportedPlatformVariant</key>
22+
<string>simulator</string>
2023
</dict>
2124
<dict>
2225
<key>BinaryPath</key>
2326
<string>TalsecRuntime.framework/TalsecRuntime</string>
2427
<key>LibraryIdentifier</key>
25-
<string>ios-arm64_x86_64-simulator</string>
28+
<string>ios-arm64</string>
2629
<key>LibraryPath</key>
2730
<string>TalsecRuntime.framework</string>
2831
<key>SupportedArchitectures</key>
2932
<array>
3033
<string>arm64</string>
31-
<string>x86_64</string>
3234
</array>
3335
<key>SupportedPlatform</key>
3436
<string>ios</string>
35-
<key>SupportedPlatformVariant</key>
36-
<string>simulator</string>
3737
</dict>
3838
</array>
3939
<key>CFBundlePackageType</key>
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)