Update to Android SDK 25

This handles the new permission system in Android M.
This commit is contained in:
Mahdi Hijazi
2017-03-24 21:21:29 +01:00
parent c5cc781205
commit 8f2f833f9d
6 changed files with 156 additions and 20 deletions

View File

@ -18,7 +18,7 @@ android {
// TODO If this is ever modified, change application_id in strings.xml
applicationId "org.dolphinemu.dolphinemu"
minSdkVersion 21
targetSdkVersion 21
targetSdkVersion 25
// TODO This should be set to the Buildbot build number for release builds, and be "1" for debug builds.
versionCode 13
@ -72,13 +72,13 @@ android {
}
dependencies {
compile 'com.android.support:support-v13:25.2.0'
compile 'com.android.support:cardview-v7:25.2.0'
compile 'com.android.support:recyclerview-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:support-v13:25.3.0'
compile 'com.android.support:cardview-v7:25.3.0'
compile 'com.android.support:recyclerview-v7:25.3.0'
compile 'com.android.support:design:25.3.0'
// Android TV UI libraries.
compile 'com.android.support:leanback-v17:25.2.0'
compile 'com.android.support:leanback-v17:25.3.0'
// For showing the banner as a circle a-la Material Design Guidelines
compile 'de.hdodenhof:circleimageview:2.1.0'