Le mardi 31 juillet 2012 22:53:33 UTC+2, RichardC a écrit : > > Paste your manifest here please >
Sure, <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.xxx" android:installLocation="auto" android:versionCode="30" android:versionName="1.0" > <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15" /> <uses-permission android:name="android.permission.INTERNET" /> <!-- Permission to write on the sdcard (for caching)--> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <!-- Permission to use GPS/Network positionning --> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <!-- Permission to test the state of the network --> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <!-- Invitation des contacts --> <uses-permission android:name="android.permission.READ_CONTACTS" /> <supports-screens android:largeScreens="true" android:normalScreens="true" android:xlargeScreens="true" > </supports-screens> <application android:name=".application.xxx" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar"> <!-- To use google maps --> <uses-library android:name="com.google.android.maps" /> </application> </manifest> > > On Tuesday, July 31, 2012 9:19:08 PM UTC+1, Amokrane wrote: >> >> Hi, >> >> >> We have an issue publishing a new app on the Play Store. The error >> message is that no devices compatible with the app have been found... >> >> This is what the manifest looks like: >> https://gist.github.com/3220116(between the <application></application> I >> have defined a couple >> activities/services. >> >> It's driving me crazy! I have already published 2 apps before (It was the >> Market at that time, did anything change?) >> >> Thank your for your help! >> >> -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

