[android-developers] Re: how to add jar file to Java Application ?

2017-01-29 Thread Avi Parshan
Find the libs directory, and place your jar in there. Next, you'll have to add it as a dependency in the gradle folder. On Saturday, January 28, 2017 at 11:23:26 AM UTC+2, array overflow wrote: > > *how to add jar file to Java Application ?* >

[android-developers] Re: Getting 50mb apk size limit.

2017-01-29 Thread Avi Parshan
I think there may be a limit, look into the apk expansion. You can upload multiple apks to complete one app. I don't remember exactly how it works, but search it. Also, you should try using proguard and set minifyEnabled true in your gradle file. It should help shrink down your app size. On