How to secure string in Android Application?

前端 未结 2 1351
难免孤独
难免孤独 2020-12-13 13:38

How to secure string in Android Application ?

Options:

  1. ProGuard: It does not secure string? Does proguard work to obfuscate stati

2条回答
  •  一整个雨季
    2020-12-13 13:56

    For String encryption we have created an gradle plugin to hide your keys inside your Android app using the NDK and XOR operator. The goal is to obfuscate your keys to prevent reverse engineering of your app.

    You can optionally provide a custom encoding/decoding algorithm to improve the security of your key.

    Access to the plugin and all the details : https://github.com/klaxit/hidden-secrets-gradle-plugin

提交回复
热议问题