[android-developers] My app is on market but any device can install it

2011-10-13 Thread deloupy jp
Hi,

1) We can't find our appli  in  android market, only in our developer
account .

It has been developed on eclipse and tested successfully on samsung galaxy 2
We can't find  any relevant reason for dysfunction of our application.

When i want to install on my mobile, it's not OK too.


Thanks for yours responses

JPWens

-- 
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?xml version=1.0 encoding=UTF-8?
manifest xmlns:android=http://schemas.android.com/apk/res/android;
  package=com.confianceo.mobile.google.zxing.client.android
  android:versionName=1.2
  android:versionCode=5
  android:installLocation=preferExternal
  
!-- We require Cupcake (Android 1.5) or later, but are really targeting Donut. --
		uses-sdk android:minSdkVersion=4 android:targetSdkVersion=8/
 !-- pour tablette	uses-sdk android:minSdkVersion=4 android:targetSdkVersion=11 /--


  !-- Donut-specific flags which allow us to run on any dpi screens. 

		supports-screens 
			android:normalScreens=true
			android:smallScreens=true
			android:largeScreens=true 
			android:xlargeScreens=true 
			android:anyDensity=true--
		
  
	compatible-screens
!-- all small size screens --
screen android:screenSize=small android:screenDensity=ldpi /
screen android:screenSize=small android:screenDensity=mdpi /
screen android:screenSize=small android:screenDensity=hdpi /
screen android:screenSize=small android:screenDensity=xhdpi /
!-- all normal size screens --
screen android:screenSize=normal android:screenDensity=ldpi /
screen android:screenSize=normal android:screenDensity=mdpi /
screen android:screenSize=normal android:screenDensity=hdpi /
screen android:screenSize=normal android:screenDensity=xhdpi /
		 !-- all large size screens --
screen android:screenSize=large android:screenDensity=ldpi /
screen android:screenSize=large android:screenDensity=mdpi /
screen android:screenSize=large android:screenDensity=hdpi /
screen android:screenSize=large android:screenDensity=xhdpi /
		 !-- all xlarge size screens --
screen android:screenSize=xlarge android:screenDensity=ldpi /
screen android:screenSize=xlarge android:screenDensity=mdpi /
screen android:screenSize=xlarge android:screenDensity=hdpi /
screen android:screenSize=xlarge android:screenDensity=xhdpi /
		/compatible-screens
		supports-screens 	android:resizeable=true/supports-screens	
	
  !--  android:largestWidthLimitDp=integer
  For Donut and above we must specify that we use the camera, but intentionally omit the
  autofocus feature in order for the app to appear in Market for non-AF devices. While it's true
  that 1D barcodes will not be scannable, QR Codes will work. Ideally we'd show users a message
  to this effect on first launch. --
		


  application
   
   android:debuggable=false
   android:icon=@drawable/launcher_icon
android:label=@string/app_name  
service android:name=com.confianceo.mobile.Service_notification_geoloc/
uses-library android:name=com.google.android.maps /
activity android:name=.CaptureActivity
  android:screenOrientation=landscape
  android:configChanges=orientation|keyboardHidden
  android:theme=@android:style/Theme.NoTitleBar.Fullscreen
  android:windowSoftInputMode=stateAlwaysHidden
!--  
  intent-filter
action android:name=android.intent.action.MAIN/
category android:name=android.intent.category.LAUNCHER/
  /intent-filter
--
  intent-filter
action android:name=com.confianceo.mobile.google.zxing.client.android.SCAN/
category android:name=android.intent.category.DEFAULT/
  /intent-filter
  !-- Allow web apps to launch Barcode Scanner by linking to http://zxing.appspot.com/scan. --
  intent-filter
action android:name=android.intent.action.VIEW/
category android:name=android.intent.category.DEFAULT/
category android:name=android.intent.category.BROWSABLE/
data android:scheme=http android:host=zxing.appspot.com android:path=/scan/
  /intent-filter
  !-- We also support a Google Product Search URL. --
  intent-filter
action android:name=android.intent.action.VIEW/
category android:name=android.intent.category.DEFAULT/
category android:name=android.intent.category.BROWSABLE/
data android:scheme=http android:host=www.google.com android:path=/m/products/scan/
  /intent-filter
  !-- And the UK version. --
  intent-filter
action 

[android-developers] Error on manifest

2011-10-13 Thread deloupy jp
may be can you help me, because I'm  perplex about the jungle of case for
manifest publication

I make an appli OK in eclipse.

I update x times my manifest and nothing run in installation ???

Can you say me if my manifest is OK ??
Because, even my appli is on market nobody can install it...
All device are blocked...my development phone too

By advance thanks a lot


?xml version=1.0 encoding=UTF-8?
manifest xmlns:android=http://schemas.android.com/apk/res/android;
  package=com.applitest.mobile.google.zxing.client.android
  android:versionName=1.2
  android:versionCode=5
  android:installLocation=preferExternal
  
!-- We require Cupcake (Android 1.5) or later, but are really targeting
Donut. --
uses-sdk android:minSdkVersion=4 android:targetSdkVersion=10/
 !-- pour tabletteuses-sdk android:minSdkVersion=4
android:targetSdkVersion=11 /--
 !-- Donut-specific flags which allow us to run on any dpi screens.

supports-screens
android:normalScreens=true
android:smallScreens=true
android:largeScreens=true
android:xlargeScreens=true
android:anyDensity=true--


compatible-screens
!-- all small size screens --
screen android:screenSize=small android:screenDensity=ldpi /
screen android:screenSize=small android:screenDensity=mdpi /
screen android:screenSize=small android:screenDensity=hdpi /
screen android:screenSize=small android:screenDensity=xhdpi /
!-- all normal size screens --
screen android:screenSize=normal android:screenDensity=ldpi /
screen android:screenSize=normal android:screenDensity=mdpi /
screen android:screenSize=normal android:screenDensity=hdpi /
screen android:screenSize=normal android:screenDensity=xhdpi /
 !-- all large size screens --
screen android:screenSize=large android:screenDensity=ldpi /
screen android:screenSize=large android:screenDensity=mdpi /
screen android:screenSize=large android:screenDensity=hdpi /
screen android:screenSize=large android:screenDensity=xhdpi /
 !-- all xlarge size screens --
screen android:screenSize=xlarge android:screenDensity=ldpi /
screen android:screenSize=xlarge android:screenDensity=mdpi /
screen android:screenSize=xlarge android:screenDensity=hdpi /
screen android:screenSize=xlarge android:screenDensity=xhdpi /
/compatible-screens
supports-screens android:resizeable=true/

  !--  android:largestWidthLimitDp=integer
  For Donut and above we must specify that we use the camera, but
intentionally omit the
  autofocus feature in order for the app to appear in Market for non-AF
devices. While it's true
  that 1D barcodes will not be scannable, QR Codes will work. Ideally we'd
show users a message
  to this effect on first launch. --



  application

   android:debuggable=false
   android:icon=@drawable/launcher_icon
android:label=@string/app_name  
service
android:name=com.applitest.mobile.Service_notification_geoloc/
uses-library android:name=com.google.android.maps /
activity android:name=.CaptureActivity
  android:screenOrientation=landscape
  android:configChanges=orientation|keyboardHidden
  android:theme=@android:style/Theme.NoTitleBar.Fullscreen
  android:windowSoftInputMode=stateAlwaysHidden
!--
  intent-filter
action android:name=android.intent.action.MAIN/
category android:name=android.intent.category.LAUNCHER/
  /intent-filter
--
  intent-filter
action
android:name=com.applitest.mobile.google.zxing.client.android.SCAN/
category android:name=android.intent.category.DEFAULT/
  /intent-filter
  !-- Allow web apps to launch Barcode Scanner by linking to
http://zxing.appspot.com/scan. --
  intent-filter
action android:name=android.intent.action.VIEW/
category android:name=android.intent.category.DEFAULT/
category android:name=android.intent.category.BROWSABLE/
data android:scheme=http android:host=zxing.appspot.com
android:path=/scan/
  /intent-filter
  !-- We also support a Google Product Search URL. --
  intent-filter
action android:name=android.intent.action.VIEW/
category android:name=android.intent.category.DEFAULT/
category android:name=android.intent.category.BROWSABLE/
data android:scheme=http android:host=www.google.com
android:path=/m/products/scan/
  /intent-filter
  !-- And the UK version. --
  intent-filter
action android:name=android.intent.action.VIEW/
category android:name=android.intent.category.DEFAULT/
category android:name=android.intent.category.BROWSABLE/
data android:scheme=http android:host=www.google.co.uk
android:path=/m/products/scan/
  /intent-filter
/activity