nazstone Posted February 24, 2011 Share Posted February 24, 2011 Bonjour, J'ai une application de cave a vin gratuite marchant sur la publicité admob, qui est publié depuis deux mois, mais apres une serie de mise a jour, l'application n'apparait plus sur le market, mais apparait bien sur l'interface web de market, mais je ne peux la telecharger, j'ai le message suivant: "this item is not compatible with your device" donc j'ai d'abord modifié mon manifest pour ajouter le support des differents ecrans, mais rien n'y fait. mon appareil est un desire hd sous cyanogen. si quelqu'un a deja eu le probleme ou a une idee, je suis preneur :) ci joint une partie du manifest: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.nazstone.nazcave" android:versionCode="7" android:versionName="1.7"> <uses-sdk android:minSdkVersion="7" /> <supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:anyDensity="true" /> <application android:icon="@drawable/icone" android:label="@string/app_name" android:theme="@style/CustomTheme" android:debuggable="false"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <!-- Track Market installs from AdMob ads --> <receiver android:name="com.admob.android.ads.analytics.InstallReceiver" android:exported="true"> <intent-filter> <action android:name="com.android.vending.INSTALL_REFERRER" /> </intent-filter> </receiver> <meta-data android:value="true" android:name="ADMOB_ALLOW_LOCATION_FOR_ADS" /> <meta-data android:value="xxxxx" android:name="ADMOB_PUBLISHER_ID" /> </application> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.CAMERA" /> </manifest> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.