Games :: Which Site To Upload Android Application?
Oct 23, 2010
I finished my first android application and I am trying to figure out which site to upload it too. Shall I take Android market or appbreain or whatever? Please tell me where i should put it.
View 10 Replies
Sep 1, 2010
After we made a site with Android live wallpapers (LiveWallpapers.org) we decided to make one with games, since we didn't see any descent sites with games only.
Check out our site and please let me know what you think.
Android Games
The site is not 100% complete, but main things are so enjoy
View 43 Replies
View Related
Sep 19, 2010
How do I download games from the site.I tried telling the site I was a vibrant and when i go the text it said not available for the Captivate?
View 8 Replies
View Related
Apr 30, 2010
Hey does anybody know if you can use your hero to view MLB.TV games through the MLB site? I know we get the Android MLB At Bat app which gives you audio to all games, which isn't bad for $15 bucks for the season, and for me it's worked well... But the Ipod gets video in their At Bat app if your an MLB.TV subscriber. And I just wanted to know if anyone tried to just use our browser to get the games in the same fashion one might on a pc.
View 2 Replies
View Related
Sep 25, 2010
I've got an app (.apk) file that I want to host on my site. Whenever I click on page link to the .apk file, I get the binary code listed as ASCII. The app does not download. I added:
AddType application/apk .apk
to the .htaccess file - tomcat server
View 6 Replies
View Related
Jan 26, 2010
I have built my app, it basically parses some XML data from a web site. When I run it for the first time it gets the data, then the XML gets changed and I run the app again but it does not override the current data. How can I override them?
View 1 Replies
View Related
Jan 24, 2010
I'm developing an Android and web application that will function as a service (use the same data). My question is how should the data be stored to allow for both the web and the android application to have access to the same set of data? Should the android application connect to the sites MySQL server to store/access data? If so how do I allow someone to access the data when they are not in a service area?
View 1 Replies
View Related
Feb 27, 2010
I'm trying to follow the example from google: http://code.google.com/apis/maps/articles/android_v3.html
Using the example files from their SVN repo: (http)gmaps-samples.googlecode.com/svn/trunk/articles-android-webmap/
But although it seems to compile and export it fails; can someone sanity check that its not just me this fails for and any hints as to if its a quick thing to fix, I've been prodding it with try/catch for the last 2 hours to no avail.
Forgot to add
It Compiles and Uploads to the emulator (and to my phone) but running it just results in
The Application WebMapActivity (process com.google.android.examples.webmap) has stopped unexpectedly. Please try again. [Force Close]
View 2 Replies
View Related
Apr 29, 2012
I am trying to do sending latitude and longitude from Android application to webserver / website / site port
View 9 Replies
View Related
May 12, 2010
I have an application, and am trying to upload a new application from Developer console. It always says "The upgraded apk's package name (com.testini) must be the same as the one it is replacing (null)." I even tried created just a HelloWorld apk file, and still the same error. Can anyone suggest, where am going wrong.
View 3 Replies
View Related
Nov 25, 2009
well this is just an observation I've come up with but if i am wrong anybody feel free to correct me. Its about buying apps because I never have but with free apps u would only have to download it and simply back it up using Astro File Manager so my question is after buying an application couldn't anyone just simply back it up using Astro, connect your phone to the PC, C&P the file and upload that file for all to download?
View 7 Replies
View Related
Mar 16, 2010
I need to send files as large as 80 MB, but usually in the 15-25 MB several times every day. I use YouSendit, Megaupload and the like on my laptop. Would be a HUGE help if I could simultaneously upload from my Android phone. It has to be able to handle a folder. Basically, a folder full of pictures.
View 1 Replies
View Related
Sep 26, 2009
I am trying to make an application which will upload pictures to a website. I need to let the user browse through the pictures they want to upload and select them. However, when I try to use the MediaStore I always get an empty cursor.
I created an SD CARD image and used that with the emulator. I know one image exists in /sdcard/media. I copied it using an image manipulation tool (winimage). And, I can see the image when I use the command "ls / sdcard/media" in the terminal application of the phone.
The code I am using is this : Code...
Am I missing something here?
View 2 Replies
View Related
Nov 20, 2011
How to upload images from sd card to Facebook on android application...
View 1 Replies
View Related
Aug 30, 2010
I been trying to decide what phone I wanted to go with between the Iphone4, Droid x and the Windows 7 phone. After hearing from many people and looking a reviews I think I am going with the droid X, the one thing that is really kinda holding me back is that I listen to a lot of podcast and its so easy to manage listening to them with itunes. It just seems very easy to upload new episodes and auto delete them from my ipod. I am curious is there a program that droid has that operates like itunes? I have looked all over and I cant find a program that droid uses to upload music and podcast in a easy way.
View 7 Replies
View Related
Dec 16, 2009
I'm developing one android application which needs to support Android OS 1.5, 1.6, and 2.0. I've three different .apk files for all three SDK. How can I upload three different .apk files on Android Market Place for single application? I would like to have all 3 versions available under one application name. is this possible? So, users with any SDK can use my application.
View 5 Replies
View Related
Jul 20, 2010
I'd like to allow my Android app to upload a spreadsheet document to Google Docs. Using a simple Uri request:
Uri uri = Uri.parse("http://docs.google.com/DocAction?action=updoc&hl=en");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
And this page appears as blank on a phone (must use code not compatible with phones).
I've looked into the Google Docs procedures for uploading from a Web Service. They require first authenticating the user and retrieving an AuthSub authorization to be used in a following POST request (including the AuthSub token) to actually upload the doc. This is easy from a Web Service that can guarantee a URL to return the AuthSub to, but how about on a mobile phone? Currently thinking that I'll use UrlConnection, use getHeader(String) to grab the AuthSub, then build the entire document dynamically like this:
POST /feeds/default/private/full HTTP/1.1
Host: docs.google.com
GData-Version: 3.0
Authorization: <your authorization header here>
Content-Length: 73612
Slug: test.xls
Content-Type: application/vnd.ms-excel
<?xml version='1.0' encoding='UTF-8'?>
<Worksheet ss:Name="Sheet1">
<Table ss:ExpandedColumnCount="4" ss:ExpandedRowCount="4" x:FullColumns="1" x:FullRows="1">
<Row>
<Cell><Data ss:Type="String">IN</Data></Cell>
<Cell><Data ss:Type="String">OUT</Data></Cell>
<Cell><Data ss:Type="String">TIME</Data></Cell>
<Cell><Data ss:Type="String">SUBTOTAL</Data></Cell>
</Row>
<Row>
<Cell><Data ss:Type="String">Value</Data></Cell>
<Cell><Data ss:Type="Number">123</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
<Cell><Data ss:Type="String">Example</Data></Cell>
</Row>
</Table>
</Worksheet>
View 1 Replies
View Related
Sep 7, 2010
I'm having trouble uploading pictures I've taken on my DX to facebook through the "Quick Upload" option.I got a few uploaded, so I know it works, but now everytime I try, the status bad fills up all the way to "Uploading 100%" then it stalls before giving me the error "Can't send response now.Try again later."I've tried turning Wi-Fi on or off, but on both Wi-Fi and 3G it's not working.Thoughts?
View 1 Replies
View Related
Apr 4, 2010
EA has a lot of good games for ,Mobile, but which ones will work on Android phones such as Hero and Desire? I have Monopoly on my Hero and Desire, game is ok for Hero, but very fast on the Desire. EA don't list games as specific for Android so it's hard to know what would work. Cluedo would be a good one to have and Scrabble.
View 3 Replies
View Related
Apr 29, 2010
I just discovered this game in the Market and thought I'd share it. It's a combat flight sim pretty similar to Armageddon Squadron, but just from playing the demo I think it's quite a bit better than that game. The demo is well worth a download and the full game is also probably well worth its price. This Android Life Blog Archive Review of Winds of Steel, a 3D WWII air combat game
http://www.androlib.com/android.application.com-deckeleven-windsofsteeldemo-CtpA.aspx
View 4 Replies
View Related
Aug 15, 2010
It may happen to everybody or it may just be me. Im trying to figure out if theres a work around, or some way to exclude game sounds from playing in the music application (example, if you're like me, I always have my music on shuffle. So it shuffles everything including sound/music from game foldera also.
View 4 Replies
View Related
Mar 16, 2012
I recently bought Xperia S - that has separate HDMI and USB ports, so i was thinking if i could use the device to play pc games and stream video and sound via my phone to tv.
The phone can stream 1280x720 resolution to tv, so i was thinking i could create some kind of onlive-like experience, by plugging phone to tv and connecting keyboard/mouse to it via usb hub/bluetooth - and WIFI streaming output from pc to my phone then to tv.
Is there any app i could use to archieve my goal?
View 9 Replies
View Related
Aug 20, 2010
anyone know if they have this in the app store or anything like it?
View 9 Replies
View Related
Jul 10, 2010
Seriously, emulation is not good for performance, but most roms running on gensoid look and play better that games developed for Android. Sonic 3 looks lovely, runs at 60fps and never stutters. It even seems to look higher rez than most Android apps.Android platformer games are nowhere near as good looking or smooth.So what the hell is going on? The hardware on top end Android phones (Desire, galaxy etc) is clearly capable.
View 11 Replies
View Related
May 13, 2010
Apparently EA is bringing NFS to android! Engadget say it was demoed on the EVO yesterday. Are there any videos on the net of it? Also this might well mean we'll be seeing more high profile games coming to Android!
View 2 Replies
View Related
Jun 10, 2010
I really like the PC flash game called castle clout "http://www.maxgames.com/game/castle-clout.html" and the iphone game "angry birds" http://itunes.apple.com/us/app/angry-birds/id343200656?mt=8" basically a game that u launch objects into structures and try to destroy them.. i was hoping android would have such a game when i bought my new EVO
View 6 Replies
View Related
Nov 13, 2009
Is there any games like Farm Frenzy, or any tycoon games like Lemonade Tycoon ?
View 1 Replies
View Related
Jan 26, 2010
I recently purchased a .me domain name. I uploaded some photos to this site and was going to check it out on my phone. Well the browser will not take me to my site.
View 5 Replies
View Related
Aug 11, 2010
Is it possible to play palm pilot games on an android? I would assume it wouldn't be too difficult since they both use touch. I wouldn't care if it didn't fit my whole screen. There are some games that I really want to play again (Space Trader, Strategic Commander (does anyone know of another game like this)).
View 1 Replies
View Related
Nov 15, 2010
someone showed me their iphone I have to admit, my jaw dropped and I was drooling when I saw some of their games (i would that all games were freebie versions)
Question: why does the android platform not have games that are as good??
I remember seeing one games, I think it was called scooter - the whole damn screen moved as u mived the iphone left and right I only played for a minute - but it looked damn awesome why dont we have as good games! the persons phone: heck, it was only an iphone 3g - so u cant say it was better hardware or anything angry birds - I like - apart from that, I haven't seen any games I would even rate (ok, so angry birds is just worms game reinvented - but the subtle use of great graphics make it brilliant)
Important: I have an x10 mini pro which is STILL running android 1.6 - is this the reason why? are there better games on 2.1 and 2.2? or is it to do with the fact that there are better developers for the iphone?
View 49 Replies
View Related