showAds static method
Whether this app shows ads. EMXI is exempt (brand sovereignty). Cyberneom and Gigmeout show ads to non-subscribers.
Implementation
static bool showAds() {
switch(AppConfig.instance.appInUse) {
case AppInUse.c: // Cyberneom
return true;
case AppInUse.g: // Gigmeout
return true;
case AppInUse.e: // EMXI — ad-free sovereignty
return false;
default:
return false;
}
}