Merge "WebView: require APKs to target OMR1" into oc-mr1-dev

This commit is contained in:
Nate Fischer
2017-08-28 19:36:29 +00:00
committed by Android (Google) Code Review

View File

@@ -83,7 +83,7 @@ public class UserPackage {
* supported by the current framework version. * supported by the current framework version.
*/ */
public static boolean hasCorrectTargetSdkVersion(PackageInfo packageInfo) { public static boolean hasCorrectTargetSdkVersion(PackageInfo packageInfo) {
return packageInfo.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.O; return packageInfo.applicationInfo.targetSdkVersion >= Build.VERSION_CODES.O_MR1;
} }
public UserInfo getUserInfo() { public UserInfo getUserInfo() {