Question about manifest and device compatibility

chfajardo

Member
Licensed User
Longtime User
Good day to all!
I have an application built in Basic4Android and it works really well on the emulator and on my Coby Kyros MID7024.
The problem is that i have published it on Android Market, it says my device is not compatible. I think it is some filtering that Android Market does by the manifest file.
Below is the copy of the manifest.
And here is the URL for downloading the application from Android Market:
https://market.android.com/details?...xLDEsImNvbS5jaGZzb2Z0LmFydG5ldF9kbXhfTGl0ZSJd

If some of you could install it and give me some feedback, i would apreciate it very much!

Thanks in advance!

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.chfsoft.artnet_dmx_Lite"
android:versionCode="2"
android:versionName="2.1"
android:installLocation="internalOnly">
<uses-sdk android:minSdkVersion="4" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>
<application android:icon="@drawable/icon" android:label="Controlador Artnet-DMX(Lite) CHFSOFT">

<activity android:windowSoftInputMode="stateHidden" android:launchMode="singleTop" android:name=".main"
android:label="Controlador Artnet-DMX(Lite) CHFSOFT" android:screenOrientation="unspecified">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>


</application>
<uses-permission android:name="android.permission.INTERNET"/>


</manifest>
 

Attachments

  • AndroidManifest.zip
    632 bytes · Views: 244

chfajardo

Member
Licensed User
Longtime User
Not quite right

Erel, thanks for the reply, but actually i do use Android market in my tablet, and i do have a lot of applications downloaded by it working perfectly fine. So, i just need to know what the manifest of these applications have in comon that mine hasn't. I'm shure there is some tag in the XML that i'm missing. If anyone have some application manifest that works in Android Market for the Coby Kyros MID7024, please, let me know.
 
Upvote 0

hbruno

Member
Licensed User
Longtime User
filter problem ...

hello,
it looks like a filter problem. Not in the manifest.xml but the permissions of the android market. go to the android market application -> parameters -> Content Filter -> check everything.
 
Upvote 0

chfajardo

Member
Licensed User
Longtime User
Thanks for the reply. I already have all options checked. Since it runs well when i install it on my tablet via Sdcard or my home network, i still think it is about the XML certificate. Still looking for a solution to this. I'll publish here if i find something.
 
Upvote 0

chfajardo

Member
Licensed User
Longtime User
Manifest and Android market

I still haven't find out why my applications does not appear in Android market when i use my tablet or cellphone. Some say it is because they are not supported by android Market, but i have downloaded several apps from Android market and they are working fine. So, if i can find other apps using Android Market on my tablet or cellphone, what these apps have that mine haven't?
For testing purposes i have the APK for my apps on my local network and they do work fine on both my devices.
Any help would be great!
 
Upvote 0
Top