• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

unsupported devices

saibotehs

Lurker
Apr 10, 2012
1
0
Hi I made an android application and uploaded the apk file but it says that my application is available for only 85 devices. How can I have more compatible devices? this is my manifest settings:

Code:
<android> 
		<manifestAdditions>
		<![CDATA[
			<manifest android:installLocation="auto">
			
				<uses-permission android:name="android.permission.INTERNET"/>
			    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
			    <uses-permission android:name="android.permission.READ_PHONE_STATE"/>
			    <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
			    <uses-permission android:name="android.permission.WAKE_LOCK"/>
			    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
			    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
				
				<uses-configuration android:reqFiveWayNav="true" android:reqTouchScreen="finger"
									android:reqKeyboardType="qwerty" />
				
				<supports-screens 
				android:normalScreens="true"
				android:largeScreens="true" 
    			android:anyDensity="false" 
    			android:smallScreens="true"
   				android:xlargeScreens="true"		
    			/>
				
				<uses-feature android:required="false" 
				android:name="android.hardware.touchscreen.multitouch"/>
				<uses-feature android:name="android.hardware.telephony"
				android:required="false"/>
				
				<application android:enabled="true">
				
					<activity android:excludeFromRecents="false">
						<intent-filter>
							<action android:name="android.intent.action.MAIN"/>
							<category android:name="android.intent.category.LAUNCHER"/>
						</intent-filter>
					</activity>
					
				</application>
			</manifest>
		]]>
		</manifestAdditions> 
	</android>
 
TBH, you might have better luck in the XDA forums vs the app-discussion here. I don't know code, but my gut tells me it's API based, and I *think* the APIs that your app requires will determine what hardware can install it. I'd *love* for someone who knows more than me to chime in though.
 
Upvote 0

BEST TECH IN 2023

We've been tracking upcoming products and ranking the best tech since 2007. Thanks for trusting our opinion: we get rewarded through affiliate links that earn us a commission and we invite you to learn more about us.

Smartphones