Skip to content

Commit

Permalink
Update minSdkVersion to 8
Browse files Browse the repository at this point in the history
  • Loading branch information
friederbluemle committed May 29, 2017
1 parent 2c0da71 commit 7127ccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion sentry-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
buildToolsVersion "23.0.3"

defaultConfig {
minSdkVersion 3
minSdkVersion 8
targetSdkVersion 24
versionCode 1
versionName "1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1170,11 +1170,7 @@ private static JSONObject osContext() {
os.put("type", "os");
os.put("name", "Android");
os.put("version", Build.VERSION.RELEASE);
if (Build.VERSION.SDK_INT < 4) {
os.put("build", Build.VERSION.SDK);
} else {
os.put("build", Integer.toString(Build.VERSION.SDK_INT));
}
os.put("build", Integer.toString(Build.VERSION.SDK_INT));
final String kernelVersion = System.getProperty("os.version");
if (Present(kernelVersion)) {
os.put("kernel_version", kernelVersion);
Expand Down

0 comments on commit 7127ccf

Please sign in to comment.