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: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>
    <activity android:name=".PreferencesActivity"
              android:label="@string/preferences_name">
    </activity>
    <activity android:name=".encode.EncodeActivity">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.ENCODE"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
      <!-- This allows us to handle the Share button in Contacts. -->
      <intent-filter>
        <action android:name="android.intent.action.SEND"/>
        <category android:name="android.intent.category.DEFAULT"/>
        <data android:mimeType="text/x-vcard"/>
      </intent-filter>
    </activity>
    <activity android:name=".book.SearchBookContentsActivity"
              android:label="@string/sbc_name"
              android:screenOrientation="landscape"
              android:configChanges="orientation|keyboardHidden">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.SEARCH_BOOK_CONTENTS"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
    <activity android:name=".wifi.WifiActivity"
              android:label="@string/wa_name"
              android:screenOrientation="landscape"
              android:configChanges="orientation|keyboardHidden">
    </activity>
    <activity android:name=".share.ShareActivity"
              android:label="@string/share_name"
              android:screenOrientation="user">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.SHARE"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
    <activity android:name=".share.BookmarkPickerActivity"
              android:label="@string/bookmark_picker_name">
      <intent-filter>
        <action android:name="android.intent.action.PICK"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
    <activity android:name=".share.AppPickerActivity"
              android:label="@string/app_picker_name">
      <intent-filter>
        <action android:name="android.intent.action.PICK"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
    <activity android:name=".HelpActivity"
              android:screenOrientation="user">
      <intent-filter>
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
      <activity android:name="com.confianceo.mobile.InscriptionScreen" android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
            
                <action android:name="com.confianceo.mobile.InscriptionScreen" />
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    <activity android:name=".ShowSondage" android:theme="@style/myTheme" android:screenOrientation="portrait">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.ShowSondage"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
    
   <activity android:name="com.confianceo.mobile.HomeScreen"
   			 android:theme="@android:style/Theme.NoTitleBar"
   			 android:screenOrientation="portrait"
             android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
   <activity android:name="com.confianceo.mobile.About"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>  
		<activity android:name="com.confianceo.mobile.WatchVideo"
        	android:screenOrientation="landscape"
        	android:theme="@android:style/Theme.NoTitleBar"/>	
<activity android:name="com.confianceo.mobile.VideoViewDemo"
        	android:screenOrientation="landscape"
        	android:theme="@android:style/Theme.NoTitleBar"/>
<activity android:name="com.confianceo.mobile.WatchYoutubeVideo"
        	android:screenOrientation="landscape"
        	android:theme="@android:style/Theme.NoTitleBar"/>    
<!-- MYCONFIANCEO -->
    <activity android:name="com.confianceo.mobile.MyConfianceo" android:theme="@android:style/Theme.NoTitleBar" android:screenOrientation="portrait">
      <intent-filter>
        <action android:name="com.confianceo.mobile.MyConfianceo"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
<!-- MYCODES -->
    <activity android:name="com.confianceo.mobile.MyCodes" android:theme="@android:style/Theme.NoTitleBar" android:screenOrientation="portrait">
      <intent-filter>
        <action android:name="com.confianceo.mobile.MyCodes"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
    </activity>
<!-- GEOLOC -->
 	
    	
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.GeoLoc"
                  android:label="@string/app_name"
                  android:screenOrientation="portrait"
                  android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ViewCarte"
        		  android:theme="@android:style/Theme.NoTitleBar"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
        <activity android:label="@string/app_name" 
        	android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ListBoutiques"
        	android:theme="@android:style/Theme.NoTitleBar">
        	<intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
      <activity android:name=".NoSondageView" 
      		android:theme="@android:style/Theme.NoTitleBar"
      		android:screenOrientation="portrait">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.NoSondageView"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
   	 </activity>
   	  <activity android:name=".ShowAfterSondage" 
      		android:theme="@android:style/Theme.NoTitleBar"
      		android:screenOrientation="portrait">
      <intent-filter>
        <action android:name="com.confianceo.mobile.google.zxing.client.android.NoSondageView"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
   	 </activity>
      <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ShowPromoCode" 
      		android:theme="@android:style/Theme.NoTitleBar"
      		android:screenOrientation="landscape">
      <intent-filter>
        <action android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ShowPromoCode"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
   	 </activity> 
   	 <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ShowPromoCodeSondage" 
      		android:theme="@android:style/Theme.NoTitleBar"
      		android:screenOrientation="landscape">
      <intent-filter>
        <action android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ShowPromoCodeSondage"/>
        <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
   	 </activity>   
        <activity android:label="@string/app_name"
        	android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.PromoFrame"
        	android:screenOrientation="portrait"
        	android:theme="@android:style/Theme.NoTitleBar">
        	<intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.PromoDetail" 
        	android:label="@string/app_name"
        	android:screenOrientation="portrait"
        	android:theme="@android:style/Theme.NoTitleBar"/>
        	
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.AnimationActivity"></activity>
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.DisplayViews"
        	android:screenOrientation="portrait"
        	android:theme="@android:style/Theme.NoTitleBar"/> 
        	
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.RegarderVideo"
        	android:screenOrientation="landscape"
        	android:theme="@android:style/Theme.NoTitleBar"/>
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.EnvoiDoc"
                  android:label="@string/app_name"
                  android:theme="@android:style/Theme.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        
        <activity android:name="com.confianceo.mobile.tutomobile.android.geolocalisation.ViewCarte"
	        android:label="@string/app_name"
    	 	android:theme="@android:style/Theme.NoTitleBar"></activity>
 		<activity android:name="com.confianceo.mobile.SearchProduct"
	        android:label="@string/app_name"
    	 	android:theme="@android:style/Theme.NoTitleBar">
    	 	<intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
    	</activity>


  </application>
		<!-- uses-permission --> 
			<uses-permission android:name="android.permission.GET_ACCOUNTS"> </uses-permission> 
			<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission> 
			<uses-permission android:name="android.permission.WRITE_CONTACTS"></uses-permission> 
			<uses-permission android:name="android.permission.INTERNET"></uses-permission> 
			<!-- <uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
			<uses-permission android:name="android.permission.VIBRATE"></uses-permission> -->
			<uses-permission android:name="android.permission.CAMERA" ></uses-permission> 
			<!--<uses-permission android:name="android.permission.FLASHLIGHT"/>-->
			<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> 
			<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> 
			<!-- Wifi related  android.hardware.location-->
			<uses-permission android:name="android.permission.WRITE_SETTINGS" ></uses-permission> 
			<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"  ></uses-permission> 
			<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" ></uses-permission> 
			<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" ></uses-permission> 
			<uses-permission android:name="android.permission.WAKE_LOCK" ></uses-permission> 
			<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"  ></uses-permission> 
			<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" > </uses-permission> 
		<!-- uses-features --> 
			<uses-feature android:name="android.hardware.camera" android:required="true" ></uses-feature >
			<uses-feature android:name="android.hardware.location" android:required="false" ></uses-feature >
			<uses-feature android:name="android.hardware.location.network" android:required="false" ></uses-feature >
			<uses-feature android:name="android.hardware.location.gps" android:required="false" ></uses-feature >
			<uses-feature android:name="android.hardware.wifi" android:required="false" ></uses-feature >
		
</manifest>

Reply via email to