From b3ac70ced535c697d7314e3fd17bb148d96ae3ab Mon Sep 17 00:00:00 2001 From: Greg Alexander Date: Sat, 18 Jun 2016 14:29:58 -0400 Subject: [PATCH] add build instructions at the top of NOTES --- NOTES | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/NOTES b/NOTES index 329fcd9..e6acfaa 100644 --- a/NOTES +++ b/NOTES @@ -1,3 +1,26 @@ +BUILD INSTRUCTIONS: + + +To build this, you'll need to remove my key.* settings in ant.properties. +Then follow the steps in the "doit" script: + + ndk-build -j8 && + mv libs/armeabi/scp libs/armeabi/libscp.so && + mv libs/armeabi/sftp-server libs/armeabi/libsftp-server.so && + mv libs/armeabi/rsync libs/armeabi/librsync.so && + mv libs/armeabi/buffersu libs/armeabi/libbuffersu.so && + ant release + +(you can ignore the xxinst step, that just copies the apk to my phone) +The mv steps are very important, because "ant release" will only package +the necessary binaries if they have a .so extension (even though they are +stand alone executables). + + + +DEVELOPMENT JOURNAL: + + December 6, 2014. The idea is to make a proper ssh implementation for Android. Important