Skip to content

Commit 67383a1

Browse files
Update README
1 parent c5e7ece commit 67383a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,14 +120,14 @@ new PiracyChecker(this)
120120
**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")`
121121

122122
```kotlin
123-
// This method will print your app signature in the console
123+
// This method will print your app signatures in the console
124124
apkSignatures.forEach { Log.e("SIGNATURE", it) }
125125
```
126126

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

129129
```java
130-
// This method will print your app signature in the console
130+
// This method will print your app signatures in the console
131131
for (String signature : LibraryUtilsKt.getApkSignatures(this)) {
132132
Log.e("SIGNATURE", signature);
133133
}

0 commit comments

Comments
 (0)