android - How to build apk without eclipse or Modify the apk building with a config file? -


I want to create an APK with some big configurations with an XML file.
I want to know if there is any method which can control the APK's building process or encoding at our source, there is no way to create APK with our source from our source, with a slight variation based on our SQF XML file. . Or any other way to create an APK file

When the app is running, I do not want to read my config file every time, I have to include a change in the application
< All suggestions, comments, answers, thoughts are welcome Thank you in advance .....

If you want to manually create your application:

If you are developing in Eclipse, then the ADT plugin The enhanced project as you make changes to the source code. Eclipse automatically produces an .apk file in the project's bin folder, so you do not need to do anything extra to generate .apk.

If you are developing in a non-eclipse environment, then you create your project with the Generated Build.xml Ant file in the project directory that creates ant file calls which automatically targets you for Call the build tool.

Once you understand the build process, you can start by learning the commands to complete the various steps involved in the building. Talks about different orders you can use.

On this, ant takes you to start the process of creating a custom build.

Some other tutorials:

  • / Li>

  • Comments