Skip to content

Commit a6ce4a9

Browse files
authored
freeRASP: 7.0.0 (#165)
1 parent 4cb03c9 commit a6ce4a9

File tree

36 files changed

+604
-557
lines changed

36 files changed

+604
-557
lines changed

.fvmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"flutter": "3.19.0"
3+
}

.github/pull_request_template.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
- [ ] 📋 Changelog updated
1313
- [ ] ➡️ `pubspec.yaml` version updated
1414

15-
<!-- Check all tasks. Can be done after submission. -->
15+
<!-- Check all tasks. Can be done after merge. -->
1616
## Post-release checklist
1717
- [ ] 🐦 Release to pub.dev
18-
- [ ] 📝 GitHub release
18+
- [ ] 📝 GitHub release + release notes
19+
- [ ] 📚 Upload dSYM
1920

2021
## Type of Changes
21-
2222
- [ ] ✨ New feature (non-breaking change which adds functionality)
2323
- [ ] 🛠️ Bug fix (non-breaking change which fixes an issue)
2424
- [ ] ❌ Breaking change (fix or feature that would cause existing functionality to change)
@@ -28,7 +28,6 @@
2828
- [ ] 🗑️ Chore
2929

3030
## Description
31-
3231
<!--
3332
Add description of this release
3433
- what are the improvements?

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,6 @@
2929
build/
3030

3131
example/pubspec.lock
32+
33+
# FVM Version Cache
34+
.fvm/

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,41 @@ 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+
## [7.0.0] - 2024-03-26
9+
10+
- iOS SDK version: 6.9.0
11+
- Android SDK version: 15.0.0
12+
13+
### Flutter
14+
15+
#### Added
16+
- `fvm` support for Flutter version management
17+
18+
#### Changed
19+
- Updated versions for example app
20+
21+
### Android
22+
23+
#### Changed
24+
- Breaking: Raised kotlin version to 2.1.0
25+
- Compile API increased to 35, dependencies updated
26+
- Internal library obfuscation reworked
27+
- Root detection divided into 2 parts (quick initial checks, and time-demanding asynchronous post checks)
28+
29+
#### Fixed
30+
31+
- ANR issues bug-fixing
32+
33+
### iOS
34+
35+
#### Added
36+
37+
- Improvement of the obfuscation of the SDK.
38+
39+
#### Changed
40+
41+
- Deep signing of the OpenSSL binaries.
42+
843
## [6.12.0] - 2025-02-18
944

1045
- iOS SDK version: 6.8.0

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
![FreeRasp](https://raw.githubusercontent.com/talsec/Free-RASP-Community/master/visuals/freeRASP.png)
22

3-
![GitHub Repo stars](https://img.shields.io/github/stars/talsec/Free-RASP-Community?color=green) ![Likes](https://img.shields.io/pub/likes/freerasp?color=green!) ![Likes](https://img.shields.io/pub/points/freerasp) ![GitHub](https://img.shields.io/github/license/talsec/Free-RASP-Community) ![GitHub](https://img.shields.io/github/last-commit/talsec/Free-RASP-Community) [![style: very good analysis](https://img.shields.io/badge/style-very_good_analysis-B22C89.svg)](https://pub.dev/packages/very_good_analysis)
4-
![Publisher](https://img.shields.io/pub/publisher/freerasp) [![42matters](https://42matters.com/badges/sdk-installations/talsec)](https://42matters.com/sdks/android/talsec)
3+
![GitHub Repo stars](https://img.shields.io/github/stars/talsec/Free-RASP-Community?color=green)
4+
![Likes](https://img.shields.io/pub/likes/freerasp?color=green!)
5+
![Points](https://img.shields.io/pub/points/freerasp)
6+
![License](https://img.shields.io/github/license/talsec/Free-RASP-Community)
7+
![Last Commit](https://img.shields.io/github/last-commit/talsec/Free-RASP-Community)
8+
[![Style: very good analysis](https://img.shields.io/badge/style-very_good_analysis-B22C89.svg)](https://pub.dev/packages/very_good_analysis)
9+
![Version Management](https://img.shields.io/badge/version%20management-fvm-purple?labelColor=gray&style=flat)
10+
![Publisher](https://img.shields.io/pub/publisher/freerasp)
11+
[![42matters](https://42matters.com/badges/sdk-installations/talsec)](https://42matters.com/sdks/android/talsec)
512

613
[<img src="https://assets.42matters.com/badges/2024/04/rising-star.svg?m=04" width="100"/>](https://42matters.com/sdks/android/talsec)
714

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ group 'com.aheaditec.freerasp'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.7.22'
6-
ext.talsec_version = '14.0.1'
5+
ext.kotlin_version = '2.1.0'
6+
ext.talsec_version = '15.0.0'
77
repositories {
88
google()
99
mavenCentral()
1010
}
1111

1212
dependencies {
13-
classpath 'com.android.tools.build:gradle:8.3.1'
13+
classpath 'com.android.tools.build:gradle:8.8.1'
1414
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1515
}
1616
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
2-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip
2+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-all.zip
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (flutterVersionName == null) {
2525
android {
2626
namespace 'com.aheaditec.freerasp_example'
2727

28-
compileSdkVersion flutter.compileSdkVersion
28+
compileSdkVersion 35
2929

3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_17
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Jun 23 08:50:38 CEST 2017
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
44
distributionPath=wrapper/dists
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

example/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "8.3.1" apply false
22-
id "org.jetbrains.kotlin.android" version "1.9.23" apply false
21+
id "com.android.application" version "8.8.1" apply false
22+
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2323
}
2424

2525
include ":app"

0 commit comments

Comments
 (0)