ushahidi / Ushahidi_Android

[Deprecated] Ushahidi Android app For Ushahidi V2.x.x. Working on V3.x.x at
https://github.com/ushahidi/platform-android/
GNU Lesser General Public License v3.0
202 stars 153 forks source link

Can't install via Google Play on JB 4.1.2 #86

Closed evansims closed 11 years ago

evansims commented 11 years ago

@jetherton just brought this to our attention in Skype and I've confirmed it on my Nexus 7 as well;

ptressel commented 11 years ago

Here's a way to ask for SMS permission without disallowing install on a wifi-only tablet -- set required to false for the telephony feature. This allows using the same mainfest on phones and on wifi-only tablets. http://stackoverflow.com/questions/5623863/uses-feature-overruling-uses-permission You'll need to check if the device has telephony with hasSystemFeature: http://developer.android.com/reference/android/content/pm/PackageManager.html#hasSystemFeature%28java.lang.String%29

eyedol commented 11 years ago

Yeah. The android market filters the app out if a device doesn't have the telephony hardware. I'm going to remove the permission for now and then provide an update. @evansims Thanks for the heads up. I'm on it.

eyedol commented 11 years ago

@ptressel That will be a smart fix. Thanks for the link