Excuse me , I have some question that I doubt.
I want to append my properties file ( like my Application Config file ) which can load and save via my application.
In the Pc version I put that properties in to my Application via modifying bulid.xml file
and access them by specify their path ,something like this
<target name="-post-compile">
<copydir src="./resources" dest="${build.dir}/resources" />
</target>
<target name="-post-jar">
<copydir src="./resources" dest="./dist/resources" />
</target>
Properties.load( new FileInputStream(/resources/my.properties));
However , how can I do that in android ?? Is it the same as PC version that can accomplish by modifying some build.xml somewhere ?
Thanks in Advance