Reputation: 21573
How can I install android support v13 in Android Studio? I've tried searching for it in Dependencies in Project Structure but it's not there.
Upvotes: 0
Views: 46
Reputation: 80020
There's not a shortcut to it in the Dependencies tab (Project Structure > Modules > your module name > Dependencies > + button > Library dependency), but from that pane you can type in the Maven coordinates directly:
com.android.support:support-v13:+
Upvotes: 1