Skip to content

Commit dacadea

Browse files
committed
v5.32.4
1 parent 112314d commit dacadea

4 files changed

Lines changed: 4 additions & 9 deletions

File tree

bugsnag-android-core/src/main/java/com/bugsnag/android/Notifier.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import java.io.IOException
77
*/
88
class Notifier @JvmOverloads constructor(
99
var name: String = "Android Bugsnag Notifier",
10-
var version: String = "5.32.3",
10+
var version: String = "5.32.4",
1111
var url: String = "https://bugsnag.com"
1212
) : JsonStream.Streamable {
1313

examples/sdk-app-example/app/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ android {
4444
}
4545

4646
dependencies {
47-
implementation "com.bugsnag:bugsnag-android:5.32.3"
48-
implementation "com.bugsnag:bugsnag-plugin-android-okhttp:5.32.3"
47+
implementation "com.bugsnag:bugsnag-android:5.32.4"
4948
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
5049
implementation "androidx.appcompat:appcompat:1.4.0"
5150
implementation "com.google.android.material:material:1.4.0"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx4096m
1111
# This option should only be used with decoupled projects. More details, visit
1212
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
1313
org.gradle.parallel=true
14-
VERSION_NAME=5.32.3
14+
VERSION_NAME=5.32.4
1515
GROUP=com.bugsnag
1616
POM_SCM_URL=https://github.com/bugsnag/bugsnag-android
1717
POM_SCM_CONNECTION=scm:git@github.com:bugsnag/bugsnag-android.git

gradle/release.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,7 @@ project.afterEvaluate {
3535

3636
repositories {
3737
maven {
38-
if (VERSION_NAME.contains("SNAPSHOT")) {
39-
url "https://oss.sonatype.org/content/repositories/snapshots/"
40-
} else {
41-
url "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
42-
}
38+
url "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
4339
credentials {
4440
username = project.hasProperty("NEXUS_USERNAME") ? "$NEXUS_USERNAME" : System.getenv("NEXUS_USERNAME")
4541
password = project.hasProperty("NEXUS_PASSWORD") ? "$NEXUS_PASSWORD" : System.getenv("NEXUS_PASSWORD")

0 commit comments

Comments
 (0)