Skip to content

Android RASP 0.7.0

Compare
Choose a tag to compare
@bmaciejm bmaciejm released this 18 Apr 14:20
· 3 commits to master since this release
0.7.0
d74f968

What's Changed

This release was intended for library internals and sample app improvements.

New Features

Improvements

  • Enhancements in root and emulator checks. (79b9dff, 5a4c9a6, 6c4adab)
  • Enhance the sample application to clearly indicate the vulnerability status of the device. (1352d1c)
  • The .so binaries size optimization. (b42a1ed)
  • Documentation update.
  • Minor code improvements.

Migration Guide

  • Change import import com.securevale.rasp.android.native.SecureApp to import com.securevale.rasp.android.SecureApp.
  • ExtendedResult class now has additional field isThresholdExceeded. ExtendedResult is used as a result of callback in subscribe and subscribeVulnerabilitiesOnly methods.
check.subscribe { result ->
    val type = result.checkType
    val vulnerable = result.vulnerable
    val isThresholdExceeded = result.thresholdExceeded
}

Full Changelog: 0.6.0...0.7.0