Hello
I have w problem,
Im using Android 4.1.1 and I have built an example “Sample Code\Hardware\GPS” on Simulator
and install it via adb install “path to *.apk file”
aaaaaand aplication cant find any signal from gps.
Maps are working normally but application cant show any signal parameters.
My build.settings
android =
{
usesPermissions =
{
– Required by the MapView to fetch its contents from the Google Maps servers.
“android.permission.INTERNET”,
– Optional permission used to display current location via the GPS.
“android.permission.ACCESS_FINE_LOCATION”,
– Optional permission used to display current location via WiFi or cellular service.
“android.permission.ACCESS_COARSE_LOCATION”,
“android.permission.CALL_PHONE”,
},
usesFeatures =
{
– If you set permissions “ACCESS_FINE_LOCATION” and “ACCESS_COARSE_LOCATION” above,
– then you may want to set up your app to not require location services as follows.
– Otherwise, devices that do not have location sevices (such as a GPS) will be unable
– to purchase this app in the app store.
{ name = “android.hardware.location”, required = true },
{ name = “android.hardware.location.gps”, required = true },
{ name = “android.hardware.location.network”, required = true },
},
},
any idea whats going wrong, and how can I verify is everything is ok ?