Wednesday, August 1, 2012

Re: [android-developers] Re: Device compatibility when publishing on the Play Store

Yeah, I got fooled by that once too.  Have to activate the APK before
it will show a valid list of compatible devices. 

Google folks, it would be useful for that message to include a
reminder to activate the APK.

Meanwhile, I have a warning about this at my Android Tips page:

    Publishing Your First App to Google Play
    http://bristle.com/Tips/AndroidProg.htm#publishing_your_first_app_to_google_play
   
--Fred
Fred Stluka -- mailto:fred@bristle.com -- http://bristle.com/~fred/
Bristle Software, Inc -- http://bristle.com -- Glad to be of service!
Open Source: Without walls and fences, we need no Windows or Gates.

On 8/1/12 7:41 AM, Amokrane wrote:
Turns out there was no problem at all! The APK was just not activated and the error message was really misleading (saying that there were no devices compatible instead of: 0 APK activated).

Thanks all for your help!

Le mercredi 1 août 2012 12:46:27 UTC+2, RichardC a écrit :
I can't see anything obviously wrong, have a read of:
there are a few other things (outside the manifest) that Play filters on

On Wednesday, August 1, 2012 9:32:01 AM UTC+1, Amokrane wrote:


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"?>
    package="com.xxx"
 & nbsp;  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"
&nbs! p; &n bsp;     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 android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment