Upgrade build tools to 25.0.0

Test: Builds and existing tests pass -- ./gradlew connectedAndroid
Change-Id: I10f5ea5f8e0dfb26bdf2cf2ce8c49c274b0e1ec9
This commit is contained in:
Maurice Lam 2016-12-09 20:57:06 -08:00
parent 0454e18c0b
commit e840c6ec69
2 changed files with 12 additions and 2 deletions

View file

@ -251,4 +251,14 @@ public class MockWindow extends Window {
public void setNavigationBarColor(int i) {
throw new UnsupportedOperationException("Unexpected method call on mock");
}
@Override
public void setDecorCaptionShade(int i) {
throw new UnsupportedOperationException("Unexpected method call on mock");
}
@Override
public void setResizingCaptionDrawable(Drawable drawable) {
throw new UnsupportedOperationException("Unexpected method call on mock");
}
}

View file

@ -1,6 +1,6 @@
// Set the default SDK and build tools version for all apps
compileSdkVersion 23
buildToolsVersion = '23.0.2'
compileSdkVersion 25
buildToolsVersion = '25.0.0'
// enable Java7
compileOptions.sourceCompatibility JavaVersion.VERSION_1_7