My goal is following:
I want to use something like
if (!checkLicense())
{
... close app and show some informations/links...
}
in some random places in my code... BUT I want to prevent someone from decomiling the apk, replace the checkLicense()
Funktion with something like checkLicense(){ return true; }
and recompile the apk...
Is something like that possible in java?
Btw, if this approach doesn't make sense, please don't hassle to tell me and explain to me... Or can someone tell me, how this is done by others? Didn't find much helpful informations on that...