My app needed to show many items so I implemented horizontal slides using viewpager. It works ok but I noticed my app size jumped up to about 3.5M. That's almost 3M increase by adding v13.compat library I guess. Can I do slides without support library?
Asked
Active
Viewed 243 times
1
-
This might help - http://stackoverflow.com/questions/17553374/android-app-fragments-vs-android-support-v4-app-using-viewpager – AndyFaizan Mar 01 '14 at 17:24
-
"That's almost 3M increase by adding v13.compat library I guess" -- try a release build, one that has ProGuard run upon it. – CommonsWare Mar 01 '14 at 17:25
-
@CommonsWare, never used ProGuard before, with/without Proguard, apk size becomes 897K/1.2M. That's not bad. Thanks. – bob Mar 03 '14 at 02:03