This file contains 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
STATIC_LIB1 = foldername1 | |
STATIC_LIB2 = foldername2 | |
STATIC_LIB3 = foldername3 | |
DYNAMIC_DLL = foldername4 | |
RUN_SH_SCRIPT= foldername5 | |
#$(LIBPCAP_LINUX) | |
ALL_TARGETS=$(RUN_SH_SCRIPT)\ |
This file contains 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
mkdir ~/android-tools/ | |
cd ~/android-tools/ | |
wget https://android.googlesource.com/platform/system/core/+archive/master.tar.gz | |
tar -xzf master.tar.gz | |
cd libmincrypt | |
gcc -c *.c -I../include | |
ar rcs libmincrypt.a *.o | |
cd ../mkbootimg | |
gcc mkbootimg.c -o mkbootimg -I../include ../libmincrypt/libmincrypt.a |
This file contains 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
public class ActivityasDlg extends Activity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activtyasdlg); | |
} |
NewerOlder