i quote apple document uirequireddevicecapabilities states :
uirequireddevicecapabilities (array or dictionary - ios) lets itunes , app store know device-related features app requires in order run. itunes , mobile app store use list prevent customers installing apps on device not support listed capabilities.
if use array, presence of given key indicates corresponding feature required. if use dictionary, must specify boolean value each key. if value of key true, feature required. if value of key false, feature must not present on device. in both cases, omitting key indicates feature not required app able run if feature present
armv7 include key if app compiled armv7 instruction set. minimum ios version : ios 3.1
location-services include key if app requires (or prohibits) ability retrieve device’s current location using core location framework. (this key refers general location services feature. if need gps-level accuracy, should include gps key.) minimum ios version : ios 3.0
apple doc link uirequireddevicecapabilities
i have 1 key armv7 in uirequireddevicecapabilities array in info.plist targets , minimum ios version set 8.0, supported architectures : armv7, arm64 , required capabilities : armv7 , app-version : 1.0
now, using corelocation services google map find lat- long of place in app. need add location-services key , help.
i researching on topic days can't find answer.
i need @ least following capabilites:
armv7
, arm64
, location-services
, gps
.
Comments
Post a Comment