We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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' }
The text was updated successfully, but these errors were encountered:
#9
This pull request solves all the issues that i brought up
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: