Steps
- Open Android Studio → Build → Analyze APK.
- Select
1xbet.apk. - Open the “Signature” tab to view the certificate.
Security step
After hash-checking the APK, confirm the signature to guarantee the file was signed by 1X Corp N.V. and not altered by third parties.
Breadcrumb
Official certificate
8F:B2:3F:4A:E8:46:1A:90:52:B0:6A:5D:E9:5B:3A:F4:6C:E1:9B:D3:88:6B:64:0F:AC:9A:CE:1B:C3:62:91
Any other fingerprint means the APK was re-signed. Delete it immediately.
CLI methods
Download from Google and unzip.
apksigner verify --print-certs 1xbet.apk
Look for the SHA-256 digest line in the output.
If it matches, the APK is authentic. Otherwise, discard the file.
GUI methods
1xbet.apk.8F:B2:…:91.Android-only
1xbet.apk from your downloads.Never grant these verifier apps network permissions. They only need storage access to read the APK.
Automation
#!/bin/bash
EXPECTED="8FB23F4AE8461A9052B06A5DE95B3AF46CE19BD3886B640FAC9ACE1BC36291"
RESULT=$(apksigner verify --print-certs 1xbet.apk | grep "SHA-256" | awk '{print $3}')
if [ "$RESULT" = "$EXPECTED" ]; then
echo "Signature OK"
else
echo "Signature mismatch!"
fi
$expected = "8FB23F4AE8461A9052B06A5DE95B3AF46CE19BD3886B640FAC9ACE1BC36291"
$result = & .\apksigner.bat verify --print-certs 1xbet.apk |
Select-String "SHA-256" | % { $_.ToString().Split(":")[-1].Trim() }
if ($result -eq $expected) { "Signature OK" } else { "Mismatch!" }
Troubleshooting
Add the SDK platform-tools folder to your PATH or run apksigner with its full path.
You downloaded an unsigned or repackaged build. Delete it and re-download from the official link.
Never install the APK. Clear your cache, fetch a new copy, and report the suspicious file to support@conjugationapp.com.
Update Android Studio or fall back to the CLI methods.
Best practices
FAQ
Signatures confirm the APK came from 1X Corp N.V. Hashes alone can’t prove authorship.
The SHA-256 fingerprint is 8F:B2:3F:4A:E8:46:1A:90:52:B0:6A:5D:E9:5B:3A:F4:6C:E1:9B:D3:88:6B:64:0F:AC:9A:CE:1B:C3:62:91.
apksigner, keytool/jarsigner, Android Studio, or trusted Android verifier apps.
Delete the APK, re-download from /link/, and never install mismatched files.
Next steps
Run through the hash check guide first.
Read the security risks page to avoid fake files.
Once verified, follow the installation tutorial.
Trust but verify
Confirm the signature, then install