I am new in android and eclipse. Please help. Thank you so much. I edited and saved my code in eclipse, then delete the app in my emulator, then select Debug as => android application. but eclipse installs the older version of codes to the emulator every time. how to fix it?
for example. the codes was
CCLOG("Test String");
CCLOG("visibleSize:%.1f,%.1f",visibleSize.width,visibleSize.height);
CCLOG("origin:%.1f,%.1f",origin.x,origin.y);
then changed to
CCLOG("visibleSize:%.1f,%.1f",visibleSize.width,visibleSize.height);
CCLOG("origin:%.1f,%.1f",origin.x,origin.y);
eclipse still prints out Test String.
Please help. Thank you so much.