Created
May 9, 2016 14:15
-
-
Save kmansoft/e7a68615e41e1de4b5093a279af19ca1 to your computer and use it in GitHub Desktop.
Repackage android-support-v4.jar to only keep Android Wear 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=android-support-v23-wear-slim.jar | |
| jar cvf ${JAR} \ | |
| android/support/v4/app/NotificationCompat* \ | |
| android/support/v4/app/NotificationManagerCompat* \ | |
| android/support/v4/app/INotificationSideChannel* \ | |
| android/support/v4/app/RemoteInput* \ | |
| android/support/v4/app/NotificationBuilderWith* \ | |
| android/support/v4/app/BundleUtil.class | |
| echo | |
| echo "Done:" $(ls -lh ${JAR}) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment