Skip to content

Instantly share code, notes, and snippets.

@Pulimet
Last active June 15, 2020 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Pulimet/0a39b2ffdb78561e42ccc51cc756e9fb to your computer and use it in GitHub Desktop.
Save Pulimet/0a39b2ffdb78561e42ccc51cc756e9fb to your computer and use it in GitHub Desktop.
MyLog Library Article
android {
Properties properties = new Properties()
if (project.rootProject.file("local.properties").exists()) {
properties.load(project.rootProject.file("local.properties").newDataInputStream())
}
defaultConfig {
buildConfigField "boolean", "isThreadNameVisible", properties.getProperty("logger.isThreadNameVisible", "false")
buildConfigField "boolean", "isTimeVisible", properties.getProperty("logger.isTimeVisible","false")
buildConfigField "boolean", "isPackageNameVisible", properties.getProperty("logger.isPackageNameVisible", "false")
buildConfigField "boolean", "isClassNameVisible", properties.getProperty("logger.isClassNameVisible", "true")
buildConfigField "boolean", "isMethodNameVisible", properties.getProperty("logger.isMethodNameVisible", "true")
buildConfigField "boolean", "isSpacingEnabled", properties.getProperty("logger.isSpacingEnabled", "false")
buildConfigField "boolean", "isLengthShouldWrap", properties.getProperty("logger.isLengthShouldWrap", "true")
buildConfigField "int", "classNameLength", properties.getProperty("logger.classNameLength", "15")
buildConfigField "int", "methodNameLength", properties.getProperty("logger.methodNameLength", "20")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment