0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 12:02:16 +02:00

Update support libraries

This commit is contained in:
Houssam Salem 2016-04-11 16:43:47 +10:00
parent aed50eafa5
commit bec7f5c784

View File

@ -10,13 +10,6 @@ android {
minSdkVersion 10
targetSdkVersion 23
testApplicationId "com.ichi2.anki.tests"
// Stops the Gradles automatic rasterization of vectors
generatedDensities = [] // remove when moving to gradle 2.0
}
// Flag that tells aapt to keep the attribute ids
aaptOptions {
// replace with vectorDrawables.useSupportLibrary = true when moving to gradle 2.0
additionalParameters "--no-version-vectors"
}
lintOptions {
abortOnError false
@ -53,12 +46,12 @@ play {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:appcompat-v7:23.3.0'
// Note: the design support library can be quite buggy, so test everything thoroughly before updating it
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:customtabs:23.2.1'
compile 'com.android.support:recyclerview-v7:23.2.1'
compile('com.afollestad.material-dialogs:core:0.8.5.5@aar') {
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:customtabs:23.3.0'
compile 'com.android.support:recyclerview-v7:23.3.0'
compile('com.afollestad.material-dialogs:core:0.8.5.8@aar') {
//exclude group: 'com.android.support' // uncomment to force our local support lib version
transitive = true
}