Reputation:
I am compiling for SDK version 26. How can I find out what are the newest support libary versions for the target version?
Upvotes: 1
Views: 74
Reputation: 363459
In the official doc you can find all the releases.
Otherwise you can browse the new google maven repo.
Upvotes: 1
Reputation: 642
You can always use + to use latest version like:
compile 'com.android.support:appcompat-v7:26.+'
It will use the highest version that starts with 26.
Upvotes: 0