Skip to content

Instantly share code, notes, and snippets.

@kmansoft
Created May 9, 2016 14:17
Show Gist options
  • Select an option

  • Save kmansoft/43432b4a3cdcb40fe512322d0d2d9621 to your computer and use it in GitHub Desktop.

Select an option

Save kmansoft/43432b4a3cdcb40fe512322d0d2d9621 to your computer and use it in GitHub Desktop.
Repackage google-play-services.jar to only keep OAUTH2 stuff
#!/bin/bash
JAR=google-play-services-28_auth.jar
jar cvf ${JAR} \
com/google/android/gms/auth/* \
com/google/android/gms/common/* \
com/google/android/gms/common/api/* \
com/google/android/gms/internal/*
echo
echo "Done:" $(ls -lh ${JAR})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment