Can I upload content(any type png/jpg) onto android market, which I could download while the application is running.
A:
You can also add it to /res/drawable
and use it without the need of downloading.
Macarse
2010-04-20 11:39:40
+6
A:
No, you can only upload Application .apk
files on to the Market.
If you don't have much content you can embed it in your application as a Resource
. The content is then embedded into the .apk
file and you can retrieve it using a standard Android API.
If you have lot of content - say, many megabytes - which you would rather download and perhaps cache on the SD card you'll need your own website.
Dave Webb
2010-04-20 11:42:16