Files
frameworks_base/packages/SystemUI/plugin/update_plugin_lib.sh
Jason Monk ba055f8f9d Import some plugin documentation into the tree
In the spirit of writing things down

Test: none
Change-Id: I93371eab99721ace1fd32d07739b861d492e4be6
2018-02-23 14:52:37 -05:00

16 lines
759 B
Bash
Executable File

#!/bin/bash
cd $ANDROID_BUILD_TOP/frameworks/base/packages/SystemUI/plugin
# Clear out anything old.
rm -rf /tmp/plugin_classes/
mkdir /tmp/plugin_classes
# Compile the jar
javac -cp $ANDROID_BUILD_TOP/out/target/common/obj/JAVA_LIBRARIES/framework_intermediates/classes.jar:$ANDROID_BUILD_TOP/out/target/common/obj/JAVA_LIBRARIES/core-all_intermediates/classes.jar `find src -name *.java` -d /tmp/plugin_classes/
echo "" >> /tmp/plugin_classes/manifest.txt
jar cvfm SystemUIPluginLib.jar /tmp/plugin_classes/manifest.txt -C /tmp/plugin_classes .
# Place the jar and update the latest
mv SystemUIPluginLib.jar ./SystemUIPluginLib-`date +%m-%d-%Y`.jar
rm SystemUIPluginLib-latest.jar
ln -s SystemUIPluginLib-`date +%m-%d-%Y`.jar SystemUIPluginLib-latest.jar