0
Conrad
4y

Me just now:
> finishes adapting an app for my purposes in android studio
Time to export a signed apk!
> successfully locates the keystore I generated a year ago
> even remembers the passwords
Nice! Now I can finally close Android Studio!

One second after I close it:
Shit, I forgot to enable dark mode
> reopens android studio

(The dark mode normally becomes accessible through in-app purchases, but since I built the app from source those don't work)

Comments
  • 0
    Wait, you can't toggle yourself as paid without workarounds (like that)?
  • 0
    @melezorus34 I don't know, maybe? Replacing the
    if (config.getKey("purchased").equals("Y")) {
    showDarkModeOption();
    }
    with an
    if(true) {…}
    is 10-20 times faster than understanding how in-app purchases work though.
  • 0
    Not like that, can't you set yourself as a paid user in a settings? So you will still be using the same api
Add Comment