| ▲ | iancarroll 7 hours ago |
| A bit skeptical of how this article is written as it seems to be mostly written by AI. Out of curiosity, I downloaded the app and it doesn't request location permissions anywhere, despite the claims in the article. I've noticed Claude Code is happy to decompile APKs for you but isn't very good at doing reachability analysis or figuring out complex control flows. It will treat completely dead code as important as a commonly invoked function. |
|
| ▲ | Groxx 5 hours ago | parent | next [-] |
| The permissions snippet they show also doesn't include location, and you can't request location at runtime at all without declaring it there. I'd verify all this stuff for myself, but Play won't install it in my phone so I can't really get the APK. Maybe because I use Graphene...? but I don't know all the ways they can restrict it, maybe it's something else (though for a pixel 9a it's rather strange if it's hardware based). --- EDIT --- To be specific / add what I can check, this is what my Play Store "about -> permissions" is showing: Version 47.0.1 may request access to
Other:
run at startup
Google Play license check
view network connections
prevent phone from sleeping
show notifications
com.google.android.c2dm.permission.RECEIVE
control vibration
have full network access
which appears fairly normal, and does not include location, and I think Play includes runtime location requests there. Maybe there's a version-rollout happening, or device-type targeting? |
|
| ▲ | frizlab 6 hours ago | parent | prev | next [-] |
| > it doesn't request location permissions anywhere, despite the claims in the article The article does not claim the app requests the location. It claims it can do it with a single JS call. |
| |
| ▲ | esprehn 5 hours ago | parent | next [-] | | It can request with a JS call. It can't passively collect it without you approving first. The article is written like calling that JS function will turn on location tracking without consent. | | |
| ▲ | mattdeboard 5 hours ago | parent [-] | | He explicitly says he can't determine it, but that the location tracking as configured will turn on once the user grants consent. All true statements. How would you have written it differently | | |
| ▲ | logifail 5 hours ago | parent [-] | | "If the user chooses to opt-in and grants location-tracking permission, the app is then, and only then, able to track the user's location?" | | |
| ▲ | ceejayoz 3 hours ago | parent | next [-] | | But that's not true; it could easily fallback to other forms of geolocation like using the current IP. | | | |
| ▲ | mattdeboard 2 hours ago | parent | prev [-] | | You would be lying if you wrote that because you do not know if that is true. |
|
|
| |
| ▲ | dmitrygr 6 hours ago | parent | prev [-] | | > The article does not claim the app requests the location. It claims it can do it with a single JS call. so can ... any other code anywhere on a mobile device? That is how API work... | | |
|
|
| ▲ | dijksterhuis 6 hours ago | parent | prev | next [-] |
| what version are you on? from the iphone app store: version 47.0.1 - minor bug fixes - 34 minutes ago while the parent posted 18 minutes ago they may have patched the location stuff as part of the “minor bug fixes”? |
| |
| ▲ | filoleg 5 hours ago | parent | next [-] | | I have the iOS version from yesterday, haven't updated the app yet. No location permission request prompting encountered. In system settings, where each app requesting location data is listed, it isn't present either. | |
| ▲ | 6 hours ago | parent | prev [-] | | [deleted] |
|
|
| ▲ | liveoneggs 3 hours ago | parent | prev [-] |
| how do you know it didn't lie during the decompilation? |
| |
| ▲ | BoorishBears an hour ago | parent [-] | | It doesn't have to lie: unfortunately libraries that are essentially a full application themselves (complete with their own permissions) are not uncommon on mobile. So it could come across a manifest that includes location permissions and some code that would (if enabled) send location, but it might do a bad job properly tracing |
|