Skip to content

Commit 7324503

Browse files
authored
Update README.md (#25)
* Update README.md Added link to Detectin Unofficial Installation wikipage * Update README.md Added badges
1 parent 9c4c3f3 commit 7324503

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<img src="https://raw.githubusercontent.com/talsec/Free-RASP-Community/master/visuals/freeRASP.png" width=100%>
44
</h1>
55

6+
![GitHub Repo stars](https://img.shields.io/github/stars/talsec/Free-RASP-Community?color=green) ![GitHub](https://img.shields.io/github/license/talsec/Free-RASP-Community) ![GitHub](https://img.shields.io/github/last-commit/talsec/Free-RASP-Android) ![Publisher](https://img.shields.io/pub/publisher/freerasp) [![42matters](https://42matters.com/badges/sdk-installations/freerasp)](https://42matters.com/sdks/android/freerasp)
7+
68
# freeRASP for Android
79

810
FreeRASP for Android is a lightweight and easy-to-use mobile app protection and security monitoring SDK. It is designed to combat reverse engineering, tampering, or similar attack attempts. FreeRASP covers several attack vectors and enables you to set a response to each threat.
@@ -109,7 +111,7 @@ The value of `expectedPackageName` is self-explanatory.
109111
110112
The value of `watcherMail` is automatically used as the target address for your security reports. Mail has a strict form `'name@domain.com'`.
111113
112-
You can assign just `emptyArray()` to `supportedAlternativeStores` if you publish on the Google Play Store and Huawei AppGallery, as these are already included internally. Otherwise add package names of the alternative stores.
114+
You can assign just `emptyArray()` to `supportedAlternativeStores` if you publish on the Google Play Store and Huawei AppGallery, as these are already included internally. Otherwise add package names of the alternative stores. For more information, visit the [Detecting Unofficial Installation](https://github.com/talsec/Free-RASP-Community/wiki/Threat-detection#detecting-unofficial-installation) wiki page.
113115
114116
`isProd` defaults to `true` when undefined. If you want to use the Dev version to disable checks described [in the chapter below](https://github.com/talsec/Free-RASP-Android#dev-vs-release-version), set the parameter to `false`. Make sure that you have the Release version in the production (i.e. isProd set to true)!. To simplify switching between debug and release version of Talsec based on the build type, you can use `BuildConfig.BUILD_TYPE.contains("Release", true)` as a value for `isProd`.
115117
```kt
@@ -123,8 +125,7 @@ companion object {
123125
) // Replace with your release (!) signing certificate hashes
124126
private const val watcherMail = "john@example.com" // for Alerts and Reports
125127
private val supportedAlternativeStores = arrayOf(
126-
// Google Play Store and Huawei AppGallery are supported out of the box, you can pass empty array or null or add other stores like the Samsung's one:
127-
"com.sec.android.app.samsungapps" // Samsung Store
128+
"com.sec.android.app.samsungapps" // Add other stores, such as the Samsung Galaxy Store
128129
)
129130
private val isProd = true
130131
}

0 commit comments

Comments
 (0)