The same value appears in the secrets.cpp file inside the getTest method
char obfuscatedSecret[] = { 0x41, 0x3, 0x4b, 0x47 };
I have no additional customDecode method (so the provided method is default)
I'm not sure if I use it correctly but I think so.
If you can't reproduce you can look in my code https://github.com/DATL4G/BurningSeries-Android
(The repo does not contain this plugin, however it's not modified further yet so all you have to do is add it (I used the legacy method))
OK I finally found the issue.
In my build.gradle.kts the specified applicationId was de.datlag.burning_series, however everywhere else the packageName was set to de.datlag.burningseries
I created a test key like this
The code got generated and I can call
Secrets().getTest(packageName)
However it doesn't returntest
, instead the output is:-v
When I call the obfuscate method like this
The output in terminal is
The same value appears in the
secrets.cpp
file inside the getTest methodchar obfuscatedSecret[] = { 0x41, 0x3, 0x4b, 0x47 };
I have no additional customDecode method (so the provided method is default)I'm not sure if I use it correctly but I think so. If you can't reproduce you can look in my code https://github.com/DATL4G/BurningSeries-Android (The repo does not contain this plugin, however it's not modified further yet so all you have to do is add it (I used the legacy method))