Posted: 20th Nov 2011 7:47
Where Do I put my assets? Like My graphics and my sounds. And For android do I have to create xml files to do it? Thank you all
Posted: 20th Nov 2011 11:32
For Android create a directory called ASSETS in android_template (or whatever you named your agk template).

Copy your assets in the ASSETS file, keeping the directory structure you used in your code.

In Eclipse press f5 to refresh. sometimes on launch Eclipse automatically senses that you included a new directory and offers to update your project.
Posted: 28th Nov 2011 1:40
OK I made the directories and then I put my assets in the then I have
agk::loadImage(99,"ASSETS\\test.png"); It is not finding the sprite? Am i doing alright?
Posted: 28th Nov 2011 8:06
For Android just do

agk::loadImage(99,"test.png");
Posted: 28th Nov 2011 18:34
Also if you are going to use sub directories always use forward slashes as all platforms support them whereas only Windows supports back slashes
Posted: 28th Nov 2011 23:44
I only need to do agk::loadImage(99,"test.png"); even if I put it in Assets directory?
Posted: 29th Nov 2011 9:51
Yes exactly