Skip to content

compile is deprecated #12

@zeroBitOfDiff

Description

@zeroBitOfDiff

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

https://stackoverflow.com/questions/48709870/still-getting-warning-configuration-compile-is-obsolete-and-has-been-replace

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions