javiersantos/PiracyChecker

Custom activity is not working

faizan1947 opened this issue · 1 comments

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