I want to create an Android project from the command line and I want to add a flag android.library=trueto project.properties. I also want to do this with the command androidfrom sdk and DO NOT manually add it to the file, because the file names and properties can change.
the team android update lib-project -p PATHno longer adds this flag.
the command android create lib-project ...adds this flag, but overrides some files, such as string resources
So my question is: is it possible to use the tool androidto create project.properties for which this android.library flag is set to true and does not do more?
What is the difference between android update projectand android update lib-projectnext to I cannot use some flags in a lib project?
source
share