Problems Solution
About this page
danger
Work in progress: For a while, this is a suggestion to deal with specificities that is appering
In this page are the commons problems that you can face when using the SDK and how to solve them.
If your problem haven't listed here or if you need another kind of answer, we provide the following option:
- If you already are a partner, you also can contact us through our Help Center;
Obfuscation by DexGuard
Unfortunately, the criation process of rules in DexGuard is laborious, many time by trial and error.
Although, beneath are some rules that have helped our customers to implement the application obfuscation.
-keep class kotlin.coroutines.**
-keep class kotlinx.coroutines.**
-keep class com.facetec.sdk.** { *; }
-keep class com.acesso.acessobio_android.** { *; }
-keep class io.unico.** { *; }
-keep class br.com.makrosystems.haven.** { *; }
-keep class HavenSDK.**{ *; }
-keep class HavenSDK** { *; }
Obfuscation by ProGuard
-keep class kotlin.coroutines.**
-keep class kotlinx.coroutines.**
-keep class com.facetec.sdk.** { *; }
-keep class com.acesso.acessobio_android.** { *; }
-keep class io.unico.** { *; }
-keep class br.com.makrosystems.haven.** { *; }
-keep class HavenSDK.**{ *; }
-keep class HavenSDK** { *; }
To obfuscation by ProGuard we have a POC in the following link.