Licence check for a pro key

后端 未结 2 1492
暗喜
暗喜 2021-02-03 15:53

So I would like to make a free app with full functionality loaded in. The pro functionality will be disabled until the app detects a licensed pro key. And of course I would like

2条回答
  •  旧时难觅i
    2021-02-03 16:33

    @MainApp

    
    
    
        
                
        
    
    

    @KeyApp

    
    

    Create LvlValidationHandler.class that contains:

    Intent i = new Intent("myapp.action.VALIDATION_RESPONSE");
    sendBroadcast(i);
    

提交回复
热议问题