AndroidVTS / android-vts

Android Vulnerability Test Suite - In the spirit of open data collection, and with the help of the community, let's take a pulse on the state of Android security. NowSecure presents an on-device app to test for recent device vulnerabilities.
Other
1.02k stars 272 forks source link

Build Error: `local.properties` Not Found #144

Closed seamlik closed 7 years ago

seamlik commented 7 years ago

In a freshly cloned repository, ./gradlew assemble throws an error complaining that local.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.

m00head commented 7 years ago

Quote:

# This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
seamlik commented 7 years ago

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.

m00head commented 7 years ago

Created pull request https://github.com/AndroidVTS/android-vts/pull/145 to resolve this issue

Fuzion24 commented 7 years ago

Merged

m00head commented 7 years ago

This issue can now be closed