diff --git a/jni/vnc/.droidvncserver.c.swp b/jni/vnc/.droidvncserver.c.swp deleted file mode 100644 index 1413ed4..0000000 Binary files a/jni/vnc/.droidvncserver.c.swp and /dev/null differ diff --git a/updateExecs.sh b/updateExecs.sh new file mode 100644 index 0000000..f5e4b6f --- /dev/null +++ b/updateExecs.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +cd $(dirname $0) + +for i in libs/*; do + if [[ -d $i && -e $i/androidvncserver ]];then + echo Moving $i/androidvncserver to $i/libandroidvncserver.so; + mv $i/androidvncserver $i/libandroidvncserver.so; + fi +done +echo Done.