Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
What Game Engine Make APK file Less than Others? — Gideros Forum

What Game Engine Make APK file Less than Others?

Unknown Member
edited May 2014 in General questions
Hi All

I have started Game Developing for 2D games recently!

First game engine I have used was Unity:
Unity needs to know java script programming or C#, and apk file size made by unity is at least 8MB!

its a big size for a simple 2D game!

I have used Stencyl which does not need and skill in programming but apk file size made by Stencyl is at least 12MB!
its more and not good!

now anybody here knows about apk file size made by Gideros and Corona ? what about other engines?

Comments

  • You can decrease the APK size by optimizing your generated apk.
    1-Use texture maps for your assets rather than each image is one file.
    (If you will support more than one resolution than use 2 texture maps or more...)
    2-Delete the unsupported device libraries. (ARM6, in my programs i am not supporting anymore armv6 devises)
    3-Delete unused 3rd party libraries like admob, flurry, facebook vs vs...

    By doing this you can save lots of space. But i guess standart will be something like 8 mb. Let's not foeget that the size is directly proportional with the assets that you will use. Not only image also sound db etc..


  • jdbcjdbc Member
    edited May 2014
    Hi All

    I have started Game Developing for 2D games recently!

    First game engine I have used was Unity:
    Unity needs to know java script programming or C#, and apk file size made by unity is at least 8MB!

    its a big size for a simple 2D game!

    I have used Stencyl which does not need and skill in programming but apk file size made by Stencyl is at least 12MB!
    its more and not good!

    now anybody here knows about apk file size made by Gideros and Corona ? what about other engines?
    I guess you can get less than 8mb using Gideros. I do not know about Corona, it will depend on its external build system... for me Corona is not an option, I want to control the APK build process.

    You should give a try for Gideros for 2D games. My Flappy Creature game using box2d engine, texture pack, Ad support is just 7 MB:

    https://play.google.com/store/apps/details?id=es.jdbc.flappy_creature
  • amin13aamin13a Member
    If you delete the unsupported device libraries (for example: ARM6, x86) and
    with no asset in app, the apk size is less than 3mb

  • now anybody here knows about apk file size made by Gideros and Corona ? what about other engines?
    Have you seen Unreal Engine 4 APK Size? 20++ mb on empty project :)

    have fun with our games~
    http://www.nightspade.com
Sign In or Register to comment.