Android :: Converting Iphone Games
Aug 31, 2010Is There Anyway we can change .ipa to .apk?
View 2 RepliesIs There Anyway we can change .ipa to .apk?
View 2 Repliessomeone 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?
Are there any multiplayer interactive games where someone with an Android phone can play with someone who has an iPhone? I'm looking for something like Words With Friends where two people who have iPhones can play scrabble together.
View 2 Replies View RelatedI have a Motorola Droid. My friend has an iPhone 3G. Does anyone know of any games that we can play against each other?
View 13 Replies View RelatedSo we all know iPhone has better games than Android. And I'm love the "Fruit Ninja" game which is like the only one I enjoy playing on my Evo because it has good graphics and above all it's fun. I was wondering if there is anyway to get iPhone games on Android phones? Or if we can request someone to make some of the iPhone games for Android.
View 38 Replies View RelatedI have an android and my friend has an iPhone, are there any games that we could play together? Kinda like words with friends...
View 3 Replies View RelatedAre there any racing/driving games for the Droid that allow you an in-car/driver's seat view like Real Racing on the iPhone?
View 5 Replies View RelatedCommand and Conquer red alert.
Just downloaded it and am playing it now. Man, will EA bring the goodness to Android?
Theres probably all kind of other games too I'll find that I want on my Android.
There is a game called blowfish for iPhone that is pretty cool for passing the time by. Any idea if something similar exists for Android?
View 1 Replies View RelatedI'm envious of those around me who are Fruit Ninja enabled!
View 2 Replies View RelatedI'm looking for a game similar to the papertoss game on the iphone .
View 4 Replies View RelatedThe only thing that i like from the iphone are the games.Has anyone ever been successful at porting iphone games to the g1?Or even just being able to make some sort of emulator just for the games?Any answers would really be appreciated!if someone knows how i would love to see the game rope n fly or something similar to it. it seems like a simple game, i want to start to learn how to write my own stuff for android and then i would just try myself.but however i don't know how yet.Also since most people have g1's with multi-touch i was also wondering about any multi touch games? especially the skateboarding game touch grind.
View 2 Replies View Relatedthere is a game for Android that is like Fruit ninja for the iphone?
View 49 Replies View RelatediPhone MMOG Pocket Legends To Go Cross-Platform News can be found there. Finally is all I can say.For those who don't want to read it it doesn't list a date that it should be ready by but it does indeed say Android will be one of the platforms they are porting to.
View 8 Replies View RelatedIf you're interested in learning how to develop top class games and applications for the iPhone, HTC Touch (Android), Instinct, WinMobile, or any other mobile device or platforms - then you should definitely have a look at what they offer...http://EDUmobile.org
View 2 Replies View RelatedIs there one similar to the trash can aiming game for the iphone? Not sure of the name, but you have to correct for wind etc.
View 1 Replies View RelatedHey any good multi-player poker apps like the Zynga one for iPhone you could reccommend?
View 1 Replies View RelatedI know that iphone users can jail break to get the old school emulators and I think that by now, there are some emulators in the apple market. My question is on a couple levels...
- Without jailbreaking, can you get roms on the iphone for free?
- If so how?
- How well does the on screen controller work
- Is the small screen you have to use on the iphone emu an issue?
Also add any feedback you like and your opinion as well. I'm just curious that's all. Hopefully one of you has experience in this field
When a group message is sent between my co-workers, who are all iphone users, and myself (Note 3), one person in the exchange does not receive the text. This is not the common iMessage issue that was plaguing me when I made the switch from Apple to Android. This is specifically affecting one iphone user. When I send her a text individually it is not a problem. The other iPhone users don't have a problem receiving or sending to me.
View 3 Replies View Relatedok, its the Apple Fanbois turn to try and outdo the funniest video on the web..check out their lame attempt to copy it. Code...
View 12 Replies View RelatedI'm just getting started with mobile development, and after considerable searching I'm still confused about sending a message from my iPhone to another or an Android.For instance, in building a simple Tic-Tac-Toe game, if I want to notify the other phone of a move, what is the best way to do so? Wifi, bluetooth, 3G? And how? Many methods seem to point to communicating through a web server, but I'd rather send them directly from phone to phone if possible.
View 4 Replies View RelatedI'm new to Android and smartphones in general, have lots of PC experience.What is the best method to convert a movie (DVD) so it can be played on my Captivate?Please mention details when answering, greatly appreciate it.
View 2 Replies View RelatedI would like to convert a Bitmap to a grayscale array of bytes (one byte per pixel). At the same time I want to just crop at section from the middle. Having looked though the various api's it is not clear to me what the best way would be.
1) What is ALPHA_8? is that grayscale? I have a feeling that the grayscale effect should be done via some "saturation" on the paint object, right?
2) once I have the Bitmap in grayscale and the right size, what is the best way to get that to a byte[] of pixels (one byte per pixel)?
I have a JSON Object with a latitude and longitude String on which I get the values doing this: String latitude = picInfo.getString("latitude"); String longitude = picInfo.getString("longitude");Then I convert them to floats like this: float latInt = Float.valueOf(latitude).floatValue(); float longInt = Float.valueOf(longitude).floatValue();And place them on a GeoPoint like this: GeoPoint X = new GeoPoint((int) (latInt*1E6),(int) (longInt*1E6) ); Debugging this values I can see JAVA approximates the values, is there anyway to keep them exactly the same?
View 6 Replies View RelatedIs it possible to convert a Canvas to Drawable?I may be really off in my solution, so if you have a better suggestion, please do tell me. This is what I'm trying to do.I'm trying to create a custom RadioButton. to set different states of the radio button, I need to use this parameter and one of the parameter to addState is Drawable. I know I can easily provide an image file and use it as a Drawable, but I want to do some image manipulation to the image before using it.There is a tutorial in ApiDemo called AlphaBitmap. It uses the onDraw method of a View to change a PNG file to full red and draw something with a gradient. So I customized it to shade an icon with gradient. So the problem now is that this is a View, and the View works perfectly fine if I add this View to the main view. But i want to convert this View to Drawable so I can use it as one of the parameter in addState. What I really want to achieve is to have different colour shades for different state of the RadioButton without providing different images to do so.
View 6 Replies View RelatedI have a picture taken using the phone's camera and in bitmap format. I want to send it over HTTP usinf Http post in ASCII.Any idea how to do it?
View 4 Replies View RelatedIs there a way to convert milliseconds to minutes using java.util.concurrent.TimeUnit?
This answer seems to suggest that you can use a TimeUnit.MILLISECONDS.toMinutes() method, and the documentation suggests that you could use the TimeUnit.MILLISECONDS.convert() method with TimeUnit.MINUTES - the problem is that neither TimeUnit.MINUTES or TimeUnit.MILLISECONDS.toMinutes() seem to actually exist.
I Have a Java application and I need to convert it to an Android application is there any resources to show how ? in Android developer site I didnt found anything like that! I need to use the Java methods and classes in android ,How it can be done?
View 1 Replies View RelatedI want to know if exists a converter for a j2me source-code to android. Listen, itīs not a runner, like a midp runner for android, it īs a converter for a source code. A tool for translate a source code for a new plataform, from j2me to android.
View 6 Replies View RelatedI it possible to Convert MP3 to EPUB format ?
View 7 Replies View Related