#Android Commandline
##创建avd
android list target
android create avd -n avd10 -t 1
,If the target you selected was a standard Android system image ("Type: platform"), the android tool next asks you whether you want to create a custom hardware profile.在hardware emulation settings
中设置hw.ramSize
。android delete avd -n avd10
- syntax hightlight
#include<stdio.h>
int main()
{
printf("hello,md\n");
return 0;
}