[android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread Stuart B
Can anyone help me on this? I get this message, but I want my app on
all devices.

Supported Devices
This application is only available to devices with these features, as
defined in your application manifest.
Screen layouts: SMALL NORMAL LARGE XLARGE
Required device features
android.hardware.touchscreen
This application is available to over 18 devices. Show devices

The manifest reads like this:

manifest xmlns:android=http://schemas.android.com/apk/res/android;
package=stuart.test.com
android:versionCode=2
android:versionName=1.1 

uses-sdk android:minSdkVersion=14 /

application
android:icon=@drawable/ic_launcher
android:label=Nav Lights 
activity
android:name=.AndroidtestActivity
android:label=@string/app_name 
intent-filter
action android:name=android.intent.action.MAIN /

category
android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
/application

/manifest

Many thanks!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread Kostya Vasilyev
Minimum sdk version is set to 14 Android 4.0), is that what you really
intended?
23.12.2011 3:10 пользователь Stuart B stuartbat...@yahoo.co.uk написал:

 Can anyone help me on this? I get this message, but I want my app on
 all devices.

 Supported Devices
 This application is only available to devices with these features, as
 defined in your application manifest.
 Screen layouts: SMALL NORMAL LARGE XLARGE
 Required device features
 android.hardware.touchscreen
 This application is available to over 18 devices. Show devices

 The manifest reads like this:

 manifest xmlns:android=http://schemas.android.com/apk/res/android;
package=stuart.test.com
android:versionCode=2
android:versionName=1.1 

uses-sdk android:minSdkVersion=14 /

application
android:icon=@drawable/ic_launcher
android:label=Nav Lights 
activity
android:name=.AndroidtestActivity
android:label=@string/app_name 
intent-filter
action android:name=android.intent.action.MAIN /

category
 android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
/application

 /manifest

 Many thanks!

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Android Market - Why does my first App say it is only available to 18 devices?

2011-12-22 Thread YuviDroid
The problem is with  android:minSdkVersion=14 .
API 14 is Ice Cream Sandwich...which is not available to many devices right
now (actually officially I only know 2..Galaxy Nexus and Nexus S).

You can lower the minSdkVersion to 3 or 4 (Android 1.5 or 1.6), but make
sure you are not using any APIs that are ICS only..otherwise...VerifyError
:P

On Thu, Dec 22, 2011 at 3:51 PM, Stuart B stuartbat...@yahoo.co.uk wrote:

 Can anyone help me on this? I get this message, but I want my app on
 all devices.

 Supported Devices
 This application is only available to devices with these features, as
 defined in your application manifest.
 Screen layouts: SMALL NORMAL LARGE XLARGE
 Required device features
 android.hardware.touchscreen
 This application is available to over 18 devices. Show devices

 The manifest reads like this:

 manifest xmlns:android=http://schemas.android.com/apk/res/android;
package=stuart.test.com
android:versionCode=2
android:versionName=1.1 

uses-sdk android:minSdkVersion=14 /

application
android:icon=@drawable/ic_launcher
android:label=Nav Lights 
activity
android:name=.AndroidtestActivity
android:label=@string/app_name 
intent-filter
action android:name=android.intent.action.MAIN /

category
 android:name=android.intent.category.LAUNCHER /
/intent-filter
/activity
/application

 /manifest

 Many thanks!

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 
YuviDroid
Check out Launch-X http://android.yuvalsharon.net/launchx.php (a widget
to quickly access your favorite apps and contacts!)
http://android.yuvalsharon.net

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en