How to prevent cheating with Gamecih?

前端 未结 10 1549
孤独总比滥情好
孤独总比滥情好 2021-01-31 12:07

Background

I\'ve had problems for quite a while now with players cheating in my android game. For a strict single-player game this wouldn\'t be a big is

10条回答
  •  时光说笑
    2021-01-31 12:25

    try{
        ApplicationInfo info = getPackageManager().
                getApplicationInfo("com.cih.gamecih", 0 );
        return true;
    } catch( PackageManager.NameNotFoundException e ){
        return false;
    }
    

    If this function returns true, don't even let the hacker enter Multiplayer mode, and prompt him to uninstall it.

提交回复
热议问题