From f9caa60446ca9a27a76afe7c71b3beb75056b298 Mon Sep 17 00:00:00 2001 From: Thomas Harris Date: Tue, 2 May 2017 17:22:25 -0400 Subject: [PATCH] Hotfix for exception on android N --- app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 3e95049..0c65f91 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,8 @@ android { defaultConfig { applicationId "edu.umd.cmsc436.mstestsuite" minSdkVersion 22 - targetSdkVersion 25 + //noinspection OldTargetApi + targetSdkVersion 23 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"