You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
109
111
110
112
The value of `watcherMail` is automatically used as the target address for your security reports. Mail has a strict form `'name@domain.com'`.
111
113
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.
113
115
114
116
`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`.
115
117
```kt
@@ -123,8 +125,7 @@ companion object {
123
125
) // Replace with your release (!) signing certificate hashes
124
126
private const val watcherMail = "john@example.com" // for Alerts and Reports
125
127
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
0 commit comments