Skip to content

Instantly share code, notes, and snippets.

@lynnfield
Created August 2, 2020 07:27
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 lynnfield/ce7e1a16936abbe8435841c39b8732d6 to your computer and use it in GitHub Desktop.
Save lynnfield/ce7e1a16936abbe8435841c39b8732d6 to your computer and use it in GitHub Desktop.
gradle.properties and overriding
// grdle.properties
overriden=2
// build.gradle
ext.dagger = 1
ext.overriden = 1
// module/build.gradle
println(rootProject.ext.dagger) // 1
println(dagger) // 1
println(rootProject.ext.overriden)// 1
println(overriden) // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment