Skip to main content

Posts

Showing posts with the label android-market

android market says no device compatible?

I have developed my own app in android version 8(2.2) and published it in android market. When i tried to install it in my Samsung Galaxy pop (2.2.1) device from market. No compatible device is found. this message appears though i have specified <supports-screens android:largeScreens="true" android:smallScreens="true" android:normalScreens="true" android:anyDensity="true" /> <uses-sdk android:minSdkVersion="8" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> <uses-permission android:name="android.permission.CAMERA"/> <uses-permission android:name="android.permission.WRITE_EXTER

Remotely install apps on android from the web-based market

I want to install let's say all of the top-100-free applications of the market on my android phone. I know this is doable by hand directly on the phone or with the web version of the market. Anyway, I try to automate this process. I initially thought about using libraries such as selenium, mechanize or httpUnit to programatically interact with the web-based market. But the code of the page is pretty obscure (due to some optimization/offuscation in the Javascript part) and I can't really figure out how to build the right requests to make it. By the way, I am ready to root my phone. Does anybody have an idea how to do it? Edit Beware, don't try to do this, this is illegal