Created
November 13, 2016 13:31
-
-
Save emartynov/e1e9db29ae6b3a67e3f607939c14433d to your computer and use it in GitHub Desktop.
Adding local dependency instead of maven repo one
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
compile files('libs/support-annotations-25.0.0.jar') | |
} | |
//And in app build.gradle | |
compile( supportAppCompat ) { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
} | |
compile( supportDesign ) { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
} | |
compile( butterKnife ) { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment