-
Notifications
You must be signed in to change notification settings - Fork 320
Closed
Description
in build.gradle i made a few changes since compile is deprecated and appcompat 23.1 is throwing me errors. I added the google maven link because the support libraries are now available through Maven's repository. Next i just updated compile to implementation.
links for info:
https://stackoverflow.com/questions/44691858/failed-to-resolve-com-android-support-design25-4-0/44691905
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:23.4.0'
implementation 'com.android.support:design:23.4.0'
}
Metadata
Metadata
Assignees
Labels
No labels