Pushwoosh / pushwoosh-appcelerator-titanium

Other
33 stars 16 forks source link

Please exclude games from google-play-services.jar #8

Closed yhanssens closed 8 years ago

yhanssens commented 8 years ago

When using this module for Android the number of field references exceed the 65k limit. Is it possible to re-build the google-play-services but without the games sections?

DimanAM commented 8 years ago

Yes. It's easy:

unzip google-play-services.jar -d tmp jar cf gcm.jar tmp/com/google/android/gms/gcm/**.class tmp/com/google/android/gms/iid/**.class rm -rf tmp/

You can find such library here https://github.com/Pushwoosh/pushwoosh-xamarin/blob/master/Android/PushwooshSDK/Jars/gcm.jar

yhanssens commented 8 years ago

Worked like a charm, thanks!