Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot resolve symbol FragmentCompat

Tags:

android

I've just pasted this file in a new project, but I'm getting:

Cannot resolve symbol FragmentCompat;

any help?

like image 732
ziiweb Avatar asked Oct 19 '15 17:10

ziiweb


1 Answers

You need to add support library v13.

compile 'com.android.support:support-v13:version_of_library'

Android also you need to add support library support-v4, because support-v13 depends on support-v4

More information you can find here

like image 164
Volodymyr Yatsykiv Avatar answered Oct 05 '22 23:10

Volodymyr Yatsykiv