File tree Expand file tree Collapse file tree
bugsnag-android-core/src/main/java/com/bugsnag/android
examples/sdk-app-example/app Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import java.io.IOException
77 */
88class 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
Original file line number Diff line number Diff line change @@ -44,8 +44,7 @@ android {
4444}
4545
4646dependencies {
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"
Original file line number Diff line number Diff 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
1313org.gradle.parallel =true
14- VERSION_NAME =5.32.3
14+ VERSION_NAME =5.32.4
1515GROUP =com.bugsnag
1616POM_SCM_URL =https://github.com/bugsnag/bugsnag-android
1717POM_SCM_CONNECTION =scm:git@github.com:bugsnag/bugsnag-android.git
Original file line number Diff line number Diff 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" )
You can’t perform that action at this time.
0 commit comments