Skip to content

Commit b3f7afb

Browse files
committed
Workaround for potential Google data verification issue
1 parent d629331 commit b3f7afb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Ports/Android/src/com/codename1/impl/android/AndroidImplementation.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2905,9 +2905,11 @@ public String getProperty(String key, String defaultValue) {
29052905
if ("OS".equals(key)) {
29062906
return "Android";
29072907
}
2908-
if ("androidId".equals(key)) {
2908+
2909+
// It's possible that this is triggering a Google Play data collection verification error
2910+
/*if ("androidId".equals(key)) {
29092911
return Settings.Secure.getString(getContext().getContentResolver(), Settings.Secure.ANDROID_ID);
2910-
}
2912+
}*/
29112913

29122914
/*if ("cellId".equals(key)) {
29132915
try {

0 commit comments

Comments
 (0)