Hi guys when im importing my android project I am getting an error 'Failed to resolve: com.android.support.constraint:constraint.layout:1.0.0.Please help.
            Asked
            
        
        
            Active
            
        
            Viewed 17 times
        
    2 Answers
0
            
            
        try com.android.support.constraint:constraint.layout:1.0.0. 
It looks like a simple typo.
 
    
    
        Ivan Wooll
        
- 4,145
- 3
- 23
- 34
- 
                    
- 
                    
- 
                    how do you do that im fairly new to android id you dont mind ill appreciate it – Iry Nov 12 '17 at 14:58
0
            
            
        Did you add the Google maven repository? Your allprojects part of your 
project's build.gradle file should look something like this 
allprojects {
    repositories {
        jcenter()
        maven {
            url 'https://maven.google.com'
        }
    }
}
 
    
    
        Casper
        
- 471
- 7
- 12
