Skip to content

Commit

Permalink
Merge pull request #53 from deletescape/master
Browse files Browse the repository at this point in the history
New pirate app in town
  • Loading branch information
javiersantos committed Sep 16, 2018
2 parents ef19b68 + 20e1c80 commit 0d86b11
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ new PiracyChecker(this)
### Verify the use of pirate apps
If you want to check if user has pirate apps installed, you can use this code.

It will check for: Lucky Patcher, Uret Patcher, Freedom and CreeHack.
It will check for: Lucky Patcher, Uret Patcher, Freedom, CreeHack and HappyMod.

```Java
new PiracyChecker(this)
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<string name="verify_signature">Verify using the APK signature</string>
<string name="read_signature">Read APK signature</string>
<string name="verify_installer_id">Verify using the Installer ID</string>
<string name="verify_unauthorized_apps">Verify unauthorized apps: Lucky Patcher, Freedom and CreeHack</string>
<string name="verify_unauthorized_apps">Verify unauthorized apps: Lucky Patcher, Freedom, CreeHack and HappyMod</string>
<string name="verify_stores">Verify third-party stores: Aptoide, BlackMart, 1Mobile, GetApk, etc</string>
<string name="verify_debug">Verify if app is a debug build</string>
<string name="verify_emulator">Verify if app is being run in an emulator</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,9 @@ private static ArrayList<PirateApp> getApps(ArrayList<PirateApp> extraApps) {
"p", "l", "a", "y", "s", ".", "h", "a", "c",
"k"},
AppType.PIRATE));
apps.add(new PirateApp("HappyMod", new String[]{"c", "o", "m", ".", "h", "a", "p", "p", "y",
"m", "o", "d", ".", "a", "p", "k"},
AppType.PIRATE));
apps.add(new PirateApp("Aptoide", new String[]{"c", "m", ".", "a", "p", "t", "o", "i",
"d", "e", ".", "p", "t"},
AppType.STORE));
Expand Down

0 comments on commit 0d86b11

Please sign in to comment.