Skip to content

Commit

Permalink
v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
loopj committed Dec 31, 2014
1 parent 5ece0e6 commit ee71491
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 13 additions & 0 deletions example/build.gradle
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -12,6 +14,12 @@ android {
compileSdkVersion 19
buildToolsVersion '21.1.1'

buildTypes {
release {
minifyEnabled true
}
}

defaultConfig {
minSdkVersion 4
}
Expand All @@ -20,3 +28,8 @@ android {
dependencies {
compile rootProject
}

apply plugin: 'bugsnag'
bugsnag {
endpoint 'http://requestb.in/1ejxgp91'
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/bugsnag/android/Notifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit ee71491

Please sign in to comment.