Closed faizan1947 closed 3 years ago
I want to show custom activity using this
private void verify() { checker = new PiracyChecker(this) .enableInstallerId(InstallerID.GOOGLE_PLAY).enableUnauthorizedAppsCheck().withActivityLayout(R.layout.aaa); checker.start(); } @Override protected void onDestroy() { super.onDestroy(); checker.destroy(); }
but after using this default dialog is showing, Is anything i'm missng ?
you're missing the display method
display
I want to show custom activity using this
but after using this default dialog is showing, Is anything i'm missng ?