In my application's build.gradle
, the dependencies are:
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:recyclerview-v7:22.0.0'
compile 'com.android.support:cardview-v7:22.0.0'
compile 'com.android.support:support-v13:22.0.0'
compile 'com.android.support:palette-v7:22.0.0'
compile 'com.android.support:design:22.2.1'
compile 'com.android.support:percent:22.2.0'
compile 'com.google.android.gms:play-services:7.0.0'
Without compile 'com.android.support:appcompat-v7:22.0.0'
, I can still use AppCompatActivity
and ActionBar
that are from support v7 library. Any answers explaining the reasons behind will be appreciated :)