Reputation: 976
So far Android studio has handled this, but it is not infallible.
Given the information of target build version (27) and which components I require (TabViews with Fragments, but no need for swiping), where can I find the information required to determine what goes in the module build.gradle dependencies?
Upvotes: 1
Views: 365
Reputation: 1348
Few ways to update to the dependency version you need or how to include one -
Image for an older version
https://developer.android.com/guide
Upvotes: 0
Reputation: 967
This might not be the solution, but a little help. Here are two links that list the libraries.
Android Support libraries: https://developer.android.com/topic/libraries/support-library/packages
Android X libraries: https://developer.android.com/jetpack/androidx/migrate
So if you build fails because of missing classes, you can check here and add the fitting dependency.
Also note that Android Studio lets you auto-migrate to Android X (Refactor > Migrate to AndroidX).
Upvotes: 1
Reputation: 1253
You can check for official documentation or check this link: https://material.io/develop/android/
If you are not using androidx
then add this library
implementation "com.android.support:design:27.1.1"
else you can use this:
implementation "com.google.android.material:material:1.1.0-alpha05"
Upvotes: 0