Closed seamlik closed 7 years ago
Quote:
# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
I understand that this file should not be checked into the repository, that's why it is not a good practice to explicitly rely on this file. Otherwise the project might be unfriendly to any continuous integration servers. The build script should find a way to go on without the presence of local.properties
.
Created pull request https://github.com/AndroidVTS/android-vts/pull/145 to resolve this issue
Merged
This issue can now be closed
In a freshly cloned repository,
./gradlew assemble
throws an error complaining thatlocal.properties
was not found.This is because the build script explicitly relies on this file. However,
local.properties
is usually ignored by every Android projects (including this one), therefore it might not be a good practice.