Search Unity

apk file size

Discussion in 'Scripting' started by HX_LSC, Mar 6, 2015.

  1. HX_LSC

    HX_LSC

    Joined:
    Oct 24, 2014
    Posts:
    48
    I build a empty scene except a sphere gameobject into apk ,why is the apk file fize 8.10MB? file size.png
     
  2. knr_

    knr_

    Joined:
    Nov 17, 2012
    Posts:
    258
    Android core libraries that are part of any apk.
     
  3. passerbycmc

    passerbycmc

    Joined:
    Feb 12, 2015
    Posts:
    1,741
    cuase the game engine it`s self takes up space, which is part of the apk
     
  4. HX_LSC

    HX_LSC

    Joined:
    Oct 24, 2014
    Posts:
    48
    is any method to reduce it?
     
  5. passerbycmc

    passerbycmc

    Joined:
    Feb 12, 2015
    Posts:
    1,741
    not by much, go into player settings, andrid tab and look at the optmization section in other settings. make sure your using the .net 2.0 subset and experiemeant with stripping levels.

    There will always be overhead when using a full game engine, since the game engine its self and the content you created are both part of the apk. Also 8mb isnt that bad, even over 3g networks the cap for mobile downloads is like 50mb.
     
  6. HX_LSC

    HX_LSC

    Joined:
    Oct 24, 2014
    Posts:
    48
    thx for your reply! :)