Just released my second Gideros game!
After seeing the success of a game as simple as Flappy Bird, I decided to focus on making simpler games with shorter development cycles but that have high replay value and "addiction." Here is my latest creation, Proto-Tap!
It's free on Google Play and will be available on the App Store next week!
Can you beat my highscore of 42?
https://play.google.com/store/apps/details?id=com.intoitgames.prototapHope you like it! Feedback and reviews are much appreciated
Comments
https://play.google.com/store/apps/developer?id=Into-It+Games
http://appstore.com/LidiaMaximova
I got 23 for the moment.
How did you get this glow effect on shapes and fonts?
1) Make a rectangle (Or whatever shape you need) and set a white stroke at 95% alpha. I usually use 20 point stroke.
2) Duplicate
3) Set the copies alpha to 100%, increase stroke width by 50% (In this case up to 30), set the glow color you want for copy, blur by ~25 % (You may wish to play with this), and move behind white stroke.
3) Done!
Problem with this is my package size increases if I want a lot of different colors so I might try using a single white glow tube bitmap for every shape, and a single white glow bitmap and tint it using setColorTransform(r, g, b).
Hope that helps
https://play.google.com/store/apps/developer?id=Into-It+Games
http://appstore.com/LidiaMaximova
Power-ups are good because they add a bit of depth to games so I'll be thinking about this actively!
https://play.google.com/store/apps/developer?id=Into-It+Games
http://appstore.com/LidiaMaximova
I'm interested to know about ad revenue. What ad networks are you using? How they work for you? Thanks!
Other apps:
http://OwnSpy.com
http://iGotYa.com
Out of all the networks Chartboost offers by FAR the highest eCPM and revenue. I released my game on the App Store yesterday, and earned almost 20$ from 770 impressions with a 25$ eCPM! Now this isn't typical but a 5$ eCPM is a definite safe bet on the iOS side of things. I'm sure things are good with Chartboost on Android but the numbers are probably twice as low. That's just my prediction as I don't use Charboost for Android.
Reason for that is Chartboost has one little caveat. They only pay you once you make over 300$. Basically what that means if you make some money off your app and then it doesn't get any traction, you will be waiting a long, long time to reach the $300 point. However if your app is getting lots of traffic, Chartboost is EASILY my #1 suggestion for interstitials.
Tap-for-Tap interstitials are also ok but get no where near that eCPM. Around 2 for iOS and 1 on Android. However a month ago they were having issues with not detecting installs for iOS apps and ignored my support requests regarding the issue so I would be cautious with them.
Finally for banners, iAd is my favorite provider getting me an eCPM ~ $1.50. iAd often has poor fill rate so I make sure to back that up with AdMob banners with a refresh rate of 120 seconds to maximize my click-through-rate so that Google sends me higher paying ads (I heard that low ctr causes Google to send you lower quality ads). AdMob eCPM on Android side is ~$0.80 and probably higher on iOS but unfortunately I don't yet have data on that.
In summary, here is my order of preferences:
Interstitials: Chartboost > Tap-for-Tap > AdMob
Banners: iAd (iOS only) > AdMob >= Tap-for-Tap
Oh and one last thing, in case one of your providers has problems, I recommend adding a JSON formatted configuration file on your server that your app can download on startup to determine what ad networks to use for that session. That way you can change the ad network you are using whenever you want. Just make sure that your app is able to handle JSON parse errors and such things.
Here's an example from my server:
http://api.intoitgames.com/apps/prototap/ads/configure-1.0.php
I wrote that really quickly so excuse any spelling mistakes and feel free to ask me any more questions
https://play.google.com/store/apps/developer?id=Into-It+Games
http://appstore.com/LidiaMaximova