- Added
.addAppToCheck(app)
to allow adding custom apps to check. Closes #41.
PirateApp app = new PirateApp("Lucky Patcher", "the.package.name");
new PiracyChecker(this)
.addAppToCheck(app)
...
.start();
- Added
.getPackage()
method to PirateApp to return an string instead of array. Closes #42.