Skip to content

Commit

Permalink
Merge pull request #368 from bugsnag/next
Browse files Browse the repository at this point in the history
v4.6.1
  • Loading branch information
fractalwrench authored Aug 21, 2018
2 parents b689975 + 4a7e931 commit 2a9539d
Show file tree
Hide file tree
Showing 18 changed files with 421 additions and 369 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ android:
components:
- tools
- platform-tools
- build-tools-27.0.0
- build-tools-27.0.3
- android-16
- android-19
- android-21
Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## 4.X.X (TBD)
## 4.6.1 (2018-08-21)

### Bug fixes

* Set maxBreadcrumbs via Configuration rather than Client [#359](https://github.com/bugsnag/bugsnag-android/pull/359)
* Catch Exception within DefaultDelivery class [#361](https://github.com/bugsnag/bugsnag-android/pull/361)
* Add Null check when accessing system service [#367](https://github.com/bugsnag/bugsnag-android/pull/367)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Build status](https://travis-ci.org/bugsnag/bugsnag-android.svg?branch=master)](https://travis-ci.org/bugsnag/bugsnag-android)
[![Coverage Status](https://coveralls.io/repos/github/bugsnag/bugsnag-android/badge.svg?branch=master)](https://coveralls.io/github/bugsnag/bugsnag-android?branch=master)
<!-- Auto-generated line below: -->
![Method count and size](https://img.shields.io/badge/Methods%20and%20size-78%20classes%20|%20635%20methods%20|%20312%20fields%20|%20112%20KB-e91e63.svg)
![Method count and size](https://img.shields.io/badge/Methods%20and%20size-79%20classes%20|%20638%20methods%20|%20314%20fields%20|%20116%20KB-e91e63.svg)

Get comprehensive [Android crash reports](https://www.bugsnag.com/platforms/android/) to quickly debug errors.

Expand Down
16 changes: 10 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
ext.kotlin_version = '1.2.30'
Expand All @@ -10,19 +11,22 @@ buildscript {
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.8.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
repositories {
google()
jcenter()
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
ext {
supportLibVersion = "27.0.0"
supportLibVersion = "27.1.1"
supportTestVersion = "0.5"
espressoVersion = "2.2.2"
junitVersion = "4.12"
mockitoVersion = "1.10.19"
kotlin_version = '1.1.51'
bugsnagPluginVersion = "3.3.0"
}
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:3.1.0'
classpath "com.bugsnag:bugsnag-android-gradle-plugin:$bugsnagPluginVersion"
}
}

Expand Down
2 changes: 1 addition & 1 deletion examplelib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.bugsnag:bugsnag-android-gradle-plugin:3.1.0'
classpath "com.bugsnag:bugsnag-android-gradle-plugin:$bugsnagPluginVersion"
}
}

Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=4.6.0
VERSION_NAME=4.6.1
GROUP=com.bugsnag
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
POM_SCM_CONNECTION=scm:[email protected]:bugsnag/bugsnag-android.git
Expand All @@ -30,4 +30,3 @@ POM_PACKAGING=aar
ANDROID_MIN_SDK_VERSION=14
ANDROID_TARGET_SDK_VERSION=27
ANDROID_COMPILE_SDK_VERSION=27
KOTLIN_VERSION=1.2.21
2 changes: 1 addition & 1 deletion mazerunner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ android {

dependencies {
implementation project(':sdk')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$project.KOTLIN_VERSION"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.bugsnag.android.mazerunner.scenarios

import android.annotation.SuppressLint
import android.content.Context
import com.bugsnag.android.Bugsnag
import com.bugsnag.android.Configuration
Expand All @@ -15,6 +16,7 @@ internal class EmptyStacktraceScenario(config: Configuration,
Bugsnag.notify(EmptyException("EmptyStacktraceScenario"))
}

class EmptyException(message: String?) : Throwable(message, null)
@SuppressLint("NewApi")
class EmptyException(message: String?) : Throwable(message, null, true, false)

}
201 changes: 0 additions & 201 deletions sdk/src/androidTest/java/com/bugsnag/android/BreadcrumbsTest.java

This file was deleted.

Loading

0 comments on commit 2a9539d

Please sign in to comment.