Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
jahirfiquitiva committed Apr 8, 2020
1 parent c5e7ece commit 67383a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ new PiracyChecker(this)
**BE CAREFUL!!** Your app signature can be retrieved using a PiracyCheckerUtils method. Make sure that you have signed your APK using your PRODUCTION keystore (not using the DEBUG one) and installed the version that you plan to distribute. Then copy the signature returned by this method on the console and paste in `enableSigningCertificate("YOUR_APK_SIGNATURE")`

```kotlin
// This method will print your app signature in the console
// This method will print your app signatures in the console
apkSignatures.forEach { Log.e("SIGNATURE", it) }
```

<details><summary><b>Java Sample</b></summary>

```java
// This method will print your app signature in the console
// This method will print your app signatures in the console
for (String signature : LibraryUtilsKt.getApkSignatures(this)) {
Log.e("SIGNATURE", signature);
}
Expand Down

2 comments on commit 67383a1

@Biftor
Copy link

@Biftor Biftor commented on 67383a1 Apr 20, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey, it is amazing library, but i didn't understand correctly, if some one can de compile the app. They can easily delete initialize lines of library.
No mater you use pro guard or not, the proguard will not make it impossible but a little harder.
Or no i am wrong?
I am looking for something for protecting from cracking
Thanks

@jahirfiquitiva
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Biftor you will never be able to protect your app to a 100% ... And this is not the place to ask. Use issues

Please sign in to comment.