I added the following line to my build.gradle (Module: app):
compile 'com.android.support:design:25.4.0'
But when doing Gradle, I get
Failed to resolve: com.android.support.design:25.4.0
I got the support code from the android design library support and added it to a new project. I added it to the dependency section as such:
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:25.3.1' compile 'com.android.support.constraint:constraint-layout:1.0.2' testCompile 'junit:junit:4.12' compile 'com.android.support:design:25.4.0' }
Any ideas on what I'm doing wrong?
android android-gradle gradle
Brandon Lavigne Jun 22 '17 at 6:35 2017-06-22 06:35
source share