( ), Ultimate Stopwatch Studio. ( ), Studio ( ), , , Youtube ( ).
- - build.gradle ActionBarSherlock:
dependencies {
compile 'com.android.support:appcompat-v7:20.+'
compile 'com.android.support:support-v4:20.+'
}
It turned out that the V7 support code already has a copy of ActionBarSherlock, so you get duplicates. This worked for me - just pull out V7 support:
dependencies {
compile 'com.android.support:support-v4:20.+'
}
And here is a link to the procedure for adding a library to Studio:
Youtube: how to add libraries to Android Studio from Mohammed Isa
https://www.youtube.com/watch?v=1MyBO9z7ojk
Cheers, Jim A
source
share