Can anyone help me building Android Applications using tools(aapt, aidl, javac, dx, jarsigner) with Android Support Library(v4, v7 etc). Without ant or gradle. Thanks.
Asked
Active
Viewed 311 times
2
-
1Your best bet is to write a small "Hello World" style application using gradle, and then make it print out the commands that it uses, and then copy+modify the commands for your own project. The aapt commands in particular are pretty verbose and non-obvious. – JesusFreke Oct 24 '16 at 07:14
-
Thanks @JesusFreke, gradlew is building fine without any error. It is not showing any details of commands like aapt or javac. What options can I use with gradlew to list these details? – Ram Ashish Pal Oct 25 '16 at 04:42
-
1I believe --debug shows the actual commands being run. Just be aware that the output is extremely verbose though. – JesusFreke Oct 25 '16 at 19:18