From 67383a19fc5f77efceaa884b4de8fc7a9fbcb372 Mon Sep 17 00:00:00 2001 From: Jahir Fiquitiva Date: Wed, 8 Apr 2020 18:27:36 -0500 Subject: [PATCH] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d019830..14630da 100644 --- a/README.md +++ b/README.md @@ -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) } ```
Java Sample ```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); }