Created
May 9, 2016 14:17
-
-
Save kmansoft/43432b4a3cdcb40fe512322d0d2d9621 to your computer and use it in GitHub Desktop.
Repackage google-play-services.jar to only keep OAUTH2 stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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