Skip to content

Instantly share code, notes, and snippets.

@tsmrecki
Last active December 20, 2017 09:06
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 tsmrecki/1426535b092244a608e2af7601624798 to your computer and use it in GitHub Desktop.
Save tsmrecki/1426535b092244a608e2af7601624798 to your computer and use it in GitHub Desktop.
Base module dependencies example
apply plugin: 'com.android.feature'
android {
baseFeature true
...
}
dependencies {
api 'com.android.support:appcompat-v7:26.0.1'
api 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.google.firebase:firebase-appindexing:11.0.4'
application project(':app')
feature project(':product')
feature project(":productlist")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment