0
votes
0answers
20 views

Adobe Air Mobile AS3 app: challenges and how to overcome them?

I made a PC flash game for LD 26 - minimalism and I am working on porting it to Android. Some questions I'd like to ask: Is it bad to heavily use vector graphics (ie. this.graphics.lineTo()) in ...
3
votes
1answer
144 views

Google Play 3rd Party Payment Allowed?

Does Google allow 3rd party payment solutions to be enabled in developers' apps (i.e., Paypal, carrier/SMS payment), especially in countries where Google Checkout isn't present? Or does this violate ...
4
votes
2answers
93 views

Should I target a mobile phone or simulation tools are good enough?

I'm starting mobile development, and I would want to know if it's necessary to target a specific smartphone, or nowadays one can run a simulation that will provide accurate data of how the game will ...
4
votes
2answers
384 views

Disable autorotation if Android has it disabled

I'm making a game for Android in Unity. I wanted the game to handle screen rotations, so I set "Default Orientation" to "Auto Rotation. This works well, except for one issue: If you disable ...
0
votes
0answers
132 views

Mobile (Android) Game Level Structure [closed]

The question I have is not code-related but rather about the structure of the game. I wasn't sure if I could post such questions here but I have seem similar ones posted so I guess it's OK. I've ...
4
votes
1answer
198 views

In-App Billing Library for Android Game

I'm trying to add in-app purchases into my Android game and it having some trouble figuring my around the Google Play Billing. Can anyone refer me to a good open source reference for how to do that?
4
votes
4answers
428 views

Is an in-app purchase required to unlock game in order to bypass pirating acceptable?

I'm considering writing a mobile game and looking at distribution. The game will have a server requirement, which means I will have to pay for bandwidth, hosting, processor time, etc. Because of ...
1
vote
3answers
562 views

Android “Activities” — one or many for games?

I've been learning Android in my spare time, and one of the first things every tutorial/guide will introduce to you is the concept of an "Activity." Everyone loosely defines an Activity as a screen ...
5
votes
4answers
1k views

More profitable: Android apps or Flash games?

Which market (that of Android games or that of Flash games) is more profitable and will give me a better chance of success? Where can I find the relative market shares of these markets, globally?
1
vote
2answers
346 views

Acceptable sound quality: stereo needed for an Android game?

I have various simple short sound effects (damage sound, dying sound, thunderbolt, fanfare, breaking) for a game that is developed for Android currently. I use OGG files: 96kbps VBR, 44.1KHz, 2 ...
4
votes
3answers
443 views

Box2d Collision problem

I'm not good with words so here's a picture to describe my problem: In my game there is this big ball which the user can move on x-axis only. Now, if the ball is falling like the red one, it's ...
3
votes
5answers
1k views

What is the average team size for mobile games like these?

I know that it is maybe too broad question but please give me at least some guidance. What is the average team size for mobile games like in ...
3
votes
1answer
4k views

OpenGL ES 2 on Android: native window

According to OGLES specification, we have the following definition: EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, ...
0
votes
1answer
861 views

Android device - C++ OpenGL 2: eglCreateWindowSurface invalid

I am trying to debug and run OGLES on Native C++ in my Android device in order to implement a native 3D game for mobile smart phones. The point is that I got an error and see no reason for that. Here ...
4
votes
5answers
1k views

Is it worth planning to be cross-platform in mobile game development?

Disclaimer: my goal is not to use cross-platform frameworks like Unity. I am currently planning a mobile game which I intend to first launch on iOS. However, I am wondering if it is better to write ...
5
votes
2answers
3k views

How to decide to use OpenGL ES 1.0 or 2.0 for Android?

I started learning some Android development and one of the first things I thought I could make is a simple game. However, I'm faced with one difficult question right off the bat. Should I use OpenGL ...
-1
votes
2answers
995 views

are there any alternatives to developing android apps other than with eclipse [closed]

Ever since I installed the android sdk and avd manager in eclipse for java developers, it's been pretty simple to create apps for the mobile device. The only issue I have is eclipse is way too slow ...
8
votes
3answers
4k views

Best solution for multiplayer realtime Android game

I plan to make multiplayer realtime game for Android (2-8 players), and I consider, which solution for multiplayer organization is the best: Make server on PC, and client on mobile, all communition ...
0
votes
3answers
3k views

What language was used to make Jetpack Joyride?

As I'm interested in creating games like Jetpack Joyride for mobile devices and so on, I wanted to know what technology was used to create the game. Was it made in Objective-C, Java, Flash or HTML5 ...
0
votes
2answers
848 views

The best option to multi-platform 2d mobile development [closed]

we are in the process of porting a game from iphone(made with cocos2s) to android(using the andEngine), and it has been a pain to do. So for our next project (a 2d game) we are thinking about using ...
4
votes
1answer
1k views

Client/Server networking for mobile games

I am currently considering the pros and cons of two different approaches for networking an Android game. First, I will specify some details about the game and its requirements, and then I will ...
7
votes
9answers
15k views

What platform is best for Android and iPhone development? [closed]

I've been developing non-mobile apps for linux; mainly stuff like interpreters, compilers, database engines and business apps. I've been told that if I wanted to learn how to develop iPhone/iPad ...
4
votes
2answers
337 views

What term is used to refer to iPhone and Android games?

What do you call games developed for Android or iPhone to differentiate them from games developed for other platforms?
13
votes
16answers
5k views

Cross platform mobile game design - any options? [closed]

Are there any frameworks or projects that support cross-platform mobile game development? At the moment Titanium does cross platform development, but doesn't support high end graphics APIs, so many ...
24
votes
6answers
7k views

Should I be using Lua for game logic on mobile devices?

As above really, I'm writing an android based game in my spare time (android because it's free and I've no real aspirations to do anything commercial). The game logic comes from a very typical ...