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>
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>