diff --git a/CHANGELOG b/CHANGELOG index 65c41c3cda..2a2da01c36 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +3.2.0 +----- +- Allow setting Bugsnag API key in your AndroidManifest.xml + 3.1.1 ----- - Re-add `Error#getException` to allow access to exception in callbacks diff --git a/example/build.gradle b/example/build.gradle index c74d906166..6b9cdd1d6e 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -1,9 +1,11 @@ buildscript { repositories { mavenCentral() + // mavenLocal() } dependencies { classpath 'com.android.tools.build:gradle:0.14.4' + classpath 'com.bugsnag:bugsnag-android-gradle-plugin:0.1.0' } } apply plugin: 'android' @@ -12,6 +14,12 @@ android { compileSdkVersion 19 buildToolsVersion '21.1.1' + buildTypes { + release { + minifyEnabled true + } + } + defaultConfig { minSdkVersion 4 } @@ -20,3 +28,8 @@ android { dependencies { compile rootProject } + +apply plugin: 'bugsnag' +bugsnag { + endpoint 'http://requestb.in/1ejxgp91' +} diff --git a/gradle.properties b/gradle.properties index fb1287fdeb..dc7b5d9870 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -VERSION_NAME=3.1.1 +VERSION_NAME=3.2.0 GROUP=com.bugsnag POM_SCM_URL=https://github.com/bugsnag/bugsnag-android diff --git a/src/main/java/com/bugsnag/android/Notifier.java b/src/main/java/com/bugsnag/android/Notifier.java index 825ef5996b..a8e22f3825 100644 --- a/src/main/java/com/bugsnag/android/Notifier.java +++ b/src/main/java/com/bugsnag/android/Notifier.java @@ -5,7 +5,7 @@ */ class Notifier implements JsonStream.Streamable { static final String NOTIFIER_NAME = "Android Bugsnag Notifier"; - static final String NOTIFIER_VERSION = "3.1.1"; + static final String NOTIFIER_VERSION = "3.2.0"; static final String NOTIFIER_URL = "https://bugsnag.com"; private static Notifier instance = new Notifier();