user6216224
user6216224

Reputation:

How to find newest support libary version for target SDK?

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

Answers (2)

Gabriele Mariotti
Gabriele Mariotti

Reputation: 363459

In the official doc you can find all the releases.

Otherwise you can browse the new google maven repo.

Upvotes: 1

Dragos Rachieru
Dragos Rachieru

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

Related Questions