Questions tagged [google-play-integrity-api]
78 questions
13
votes
2 answers
How to disable reCaptcha in firebase phone-auth (OTP) in 2023?
In the past, reCaptcha was used as a fallback for the SafetyNet API. However, since February 2023, no new project can use the SafetyNet API anymore. It seems like the successor - the Play Integrity API - cannot do the same job as the SafetyNet…

RaideR
- 869
- 1
- 12
- 33
12
votes
0 answers
Google Play Integrity API result UNEVALUATED after mobile restart
I have released my app with google play integrity api.
App works after device integrity check success
"deviceIntegrity": {
"deviceRecognitionVerdict": ["MEETS_BASIC_INTEGRITY", "MEETS_DEVICE_INTEGRITY"]
},
I found issue with some user facing…

AMD
- 1,662
- 18
- 39
9
votes
1 answer
Google play integrity api issue in flutter
I am migrating my app from Google play safety net API to Integrity API, but after releasing it to playstore the app is not working. It only shows loading.
My project running with Flutter framework. The play console settings and setups are done. But…

Syam
- 91
- 2
6
votes
0 answers
Firebase ReCaptcha opening even after using PlayIntegrity API in Flutter
Since SafetyNet is deprecated, I tried using PlayIntegrity to get rid of the ReCaptcha popup that opens when using phone authentication from Firebase.
But even after enabling it and initializing the app check in Flutter, the ReCaptcha is still…

Mitul Agrawal
- 105
- 1
- 7
5
votes
0 answers
Flutter phone authentication with the Play Integrity API
Flutter phone authentication is not working since the safety net device verification is deprecated.
For the new projects created after January 2023, the safety net option is not available. We must use the Play Integrity API.
I enabled the Play…

Salman G
- 51
- 1
5
votes
6 answers
Decode integrity token using Google PlayIntegrity API
I am trying to implement PlayIntegrity API to my Android app, but I don't know how to decrypt and verify the token using Google's servers.
I followed the documentation up to this point:
And now I am stuck on making the decode request to googleapis.…

hiddeneyes02
- 2,562
- 1
- 31
- 58
4
votes
1 answer
What are Google Play Integrity constants AES_KEY_SIZE_BYTES, AES_KEY_TYPE and EC_KEY_TYPE
When decrypting and verifying the Google Play Integrity verdict as per official docs (https://developer.android.com/google/play/integrity/verdict) the code snippet/samples shared uses these constants: AES_KEY_SIZE_BYTES, AES_KEY_TYPE and…

abhijit wakchaure
- 390
- 2
- 17
3
votes
0 answers
Google play Integrity best practice
We want to implement an integrity checking system in our free app that doesn't support sign ups, to make sure the app isn't modified and isn't installed from outside of the Play Store.
We want to make it so that the server only responds to valid…

Abbas Omidi
- 41
- 2
3
votes
0 answers
Google Play Integrity API - LICENSED even when app is not from Google Play, but was before
We are integrating Google Play Integrity API into our app and during testing we found out that it behaves quite strange. It looks like it has some memory.
On device A has been app installed from Google Play, later uninstalled and installed new…

JerabekJakub
- 5,268
- 4
- 26
- 33
3
votes
0 answers
Integrate Google Play integrity in react-native
Is there any proper documentation to integrate google play integrity check in react-native cli
I have tried react-native-firebase/appcheck but not get proper solution

Tech vivek
- 31
- 1
3
votes
1 answer
Google play integrity API - Invalid app check token error after adding app to Firebase project
I am trying to implement firebase app check in my android app using Play-Integrity API. I have added both my SHA-1 & SHA-256 fingerprints in my firebase app (acquired from Google play console and Android studio gradle signing report both) into my…
user20918628
3
votes
0 answers
Requests limits on Google Play Integrity service linked via project from Google Cloud
In our project we're using safetynet for attestation, but we need to migrate project into google play integrity API because safetynet is deprecated. We're not using google play to distribute our app, so I need to link our app with project on google…

wacsza
- 31
- 1
3
votes
1 answer
Google Play integrity always throwing error code -1 [Integrity Api not found]
Recently I am adding Google play Integrity.
I have added google service json file to the project , enabled API on google cloud console and updated Google Play Store on my mobile, but I am getting still the error code -1 [Integrity Api not found]
My…

eager
- 597
- 8
- 18
2
votes
0 answers
How to Resolve "GoogleJsonResponseException" error while decoding playIntergrity token
I have used the java solution provided here for decrypting integrity token https://stackoverflow.com/a/72461439/21509538, i am decrypting the token on google server and while "*DecodeIntegrityTokenResponse response =…

Paleo99
- 21
- 2
2
votes
1 answer
What is the right way to generate Nonce in Google Play Integrity
Google has introduced Play Integrity for device verification.
It uses nonce as an input string.
There is no sample on how to generate nonce.
There are few blogs like these but there is no example for that can works at production level.

Dhruv Kaushal
- 632
- 8
- 17