Skip to content

Version 1.1

Compare
Choose a tag to compare
@javiersantos javiersantos released this 14 Apr 09:23
· 126 commits to master since this release
  • Fixed a weird crash caused when using the emulator check. You should now pass a boolean to do a deeper check.
boolean deep = false;
new PiracyChecker(this)
	.enableEmulatorCheck(deep)
	...
	.start();

Note: the deep boolean with make the library do extra checks to detect if device is an emulator or not. It could lead to some weird crashes, so be wise when using it.

  • Added check for a new pirate apps store: ACMarket.
  • Added more things to destroy() method just to make sure everything is properly destroyed.
  • Added an option to set light or normal status bar for LicenseActivity.
.withActivityColors(R.color.colorPrimary, R.color.colorPrimaryDark, withLightStatusBar)
  • Added an option to set a custom layout xml for LicenseActivity.
.withActivityLayout(R.layout.my_custom_layout)

A huge thanks to @jahirfiquitiva for his contributions to this update.