'set system variable "isSimulatedBySoftware" to false iphone
I am trying to spoof location on my iphone with Xcode and .gpx files. The issue is the app I want to spoof for detects that I am spoofing by checking the following variable.
var isSimulatedBySoftware: Bool { get }
More detials here
I am wondering if it is possible to forcefully set this to FALSE
Here is some sample gpx code that you can just add to your xcode project to try and reproduce the scenario.
<gpx version="1.1" creator="gpxgenerator.com">
<wpt lat="52.15268366513226" lon="5.280998724012229">
<ele>19.12</ele>
<time>2022-05-23T04:04:22Z</time>
</wpt>
<wpt lat="52.1537237318985" lon="5.282543676404807">
<ele>23.49</ele>
<time>2022-05-23T04:04:45Z</time>
</wpt>
<wpt lat="52.15431616413057" lon="5.283638017682883">
<ele>19.63</ele>
<time>2022-05-23T04:04:59Z</time>
</wpt>
</gpx>
I havent been able to so far, not even sure if its possible. To recreate the issue just add the GPX code into the project, and then when you build it, there should be a little gps icon in xcode, press on it and you can set the simulated gps to the name of the gpx file.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
