Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

compile is deprecated #12

Closed
zeroBitOfDiff opened this issue Nov 15, 2021 · 1 comment
Closed

compile is deprecated #12

zeroBitOfDiff opened this issue Nov 15, 2021 · 1 comment

Comments

@zeroBitOfDiff
Copy link

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'
}
@zeroBitOfDiff
Copy link
Author

#9

This pull request solves all the issues that i brought up

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant