I would be now publishing my first app on Google play store. I have already compressed images used in my app. And I have some questions regarding the app size.
If the size of app is less that 2 MB then there are less chances that user will uninstall the app, is my this statement true for apps belonging to education field ?
However, When I see my apk file in windows it shows 3.10 MB but when it gets installed in device as viewed from App info it shows:
Total............................8.68 MB
App..............................7.02 MB
USB storage app..................0.00 B
Data.............................1.66 MB (perhaps it is the size of sqlite db + ttf's)
SD card..........................0.00B
So, Why do I see that much increase in my app size, Can it be minimized ?
And, I am using 4 libraries (jars) in my project which are in Android Private Libraries
, but these library have their copy outside this folder also.
Is it safer to delete them, & deleting them can help to decrease apk size?
Also I have visited many web pages describing what Proguard
does, I truly understand how Proguard reduces size of apk, it shrinks, optimizes, and obfuscates our code by removing unused code and renaming classes, fields, and methods with semantically obscure names. The result is a smaller sized .apk file that is more difficult to reverse engineer. But I do not know How should be my proguard-project.txt
should look like ?
I am using 4 libraries in my app namely easyfacebookandroidsdk_2.3.jar
,android-support-v7-appcompat.jar
,google-play-services.jar
& android-support-v4.jar
.
Currently my proguard-properties.txt
looks like this & also it do not uses WebView
# To enable ProGuard in your project, edit project.properties
# to define the proguard.config property as described in that file.
#
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in ${sdk.dir}/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the ProGuard
# include property in project.properties.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Add any project specific keep options here:
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
-keep class com.facebook.** { *; }
-keepattributes Signature
So, what lines should I add in my proguard-properties.txt
so that it can remove unused references,classes,etc., in order to reduce the apk size ?
Using AndroidUnusedResources.jar available at https://code.google.com/p/android-unused-resources/ finds unused resources in android project.
I think this is the same thing which proguard has already done ? Or should it also be used after enabling proguard ?
Also you can mention in your answer anything that is missing which you feel should be shared.
Thanks in Advance...