application-size

App size getting increased

佐手、 提交于 2020-01-06 20:18:55
问题 Recently i have used Fused Location API for location purpose. Before applying google play service library com.google.android.gms:play-services:8.3.0 the app size was 4.3MB (4,499,239 bytes) but after using this api it increased to 5.8 MB (6,085,932 bytes). Only one class has been added to the project. i.e LocationService.java where i am calling it from service class and here is the code. LocationService.java public class LocationServiceRACE implements GoogleApiClient.ConnectionCallbacks,

Reducing iOS App file size

淺唱寂寞╮ 提交于 2019-12-28 22:03:13
问题 I have made a very simple iPhone app with Xcode 6.1 and swift. I am really new to ios developing and ran into an app which in the end is 134 mb! of course this is not acceptable. I have background images for all screen sizes which add up to 20 mb. and thats it! I am storing those images in xcassets, as thats the preferred way I guess. the app shouldnt have more than 25 mbs, I think. I figured out that I had some references doubled in my project. I removed these and still my .app file is 89

delphi xe disable RTTI

故事扮演 提交于 2019-12-17 12:34:12
问题 i have use delphi xe recently but exe size is very big because of rtti(i think) howto remove rtti , and can i make my application size as small as delphi 2009 application(490 kb) without comprssion; and what is the use of rtti 回答1: In short (full story provided by links in the splash's answer): {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])} Note that as of XE6 and newer, this needs to be in each individual unit for which you want to disable RTTI. Before that (XE5 and below) it could

delphi xe disable RTTI

落花浮王杯 提交于 2019-11-27 14:46:30
i have use delphi xe recently but exe size is very big because of rtti(i think) howto remove rtti , and can i make my application size as small as delphi 2009 application(490 kb) without comprssion; and what is the use of rtti gabr In short (full story provided by links in the splash's answer): {$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])} Note that as of XE6 and newer, this needs to be in each individual unit for which you want to disable RTTI. Before that (XE5 and below) it could be in the DPR file and would apply to all units in the project. splash Read the Online Help for Delphi .