Skip to content

Version 1.2.2

Compare
Choose a tag to compare
@javiersantos javiersantos released this 25 Feb 10:28
· 61 commits to master since this release
  • 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.