From 6439e3525b92f79311346357900c8a33010d419d Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sun, 27 Sep 2020 20:07:41 -0700 Subject: Add back bugsnag --- sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sample') diff --git a/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt b/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt index fd1a2e7..42fbe98 100644 --- a/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt +++ b/sample/src/main/kotlin/ca/allanwang/kau/sample/SampleApp.kt @@ -26,13 +26,13 @@ import dagger.hilt.android.HiltAndroidApp class SampleApp : Application() { override fun onCreate() { super.onCreate() -// initBugsnag() + initBugsnag() } private fun initBugsnag() { if (BuildConfig.DEBUG) { return } - Bugsnag.init(this) + Bugsnag.start(this) } } -- cgit v1.2.3 From f95afa38195562676a18e20f4ad7d65729e108cd Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sat, 3 Oct 2020 19:02:37 -0700 Subject: Update changelog --- sample/src/main/res/xml/kau_changelog.xml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sample') diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index a7208ea..f4a82bd 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -6,6 +6,10 @@ --> + + + + -- cgit v1.2.3 From 61eeb7bbdb9f86dabde85dfc1f24c97aba643141 Mon Sep 17 00:00:00 2001 From: Allan Wang Date: Sat, 3 Oct 2020 19:12:32 -0700 Subject: Update spotless --- buildSrc/src/main/kotlin/kau/Versions.kt | 3 +-- docs/Changelog.md | 4 ++++ sample/src/main/res/xml/kau_changelog.xml | 2 +- spotless.gradle | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) (limited to 'sample') diff --git a/buildSrc/src/main/kotlin/kau/Versions.kt b/buildSrc/src/main/kotlin/kau/Versions.kt index 3e65cad..c0118bc 100644 --- a/buildSrc/src/main/kotlin/kau/Versions.kt +++ b/buildSrc/src/main/kotlin/kau/Versions.kt @@ -74,9 +74,8 @@ object Versions { // https://mvnrepository.com/artifact/androidx.test/rules?repo=google const val testRules = "1.3.0" - // Keep version for now, see https://github.com/diffplug/spotless/issues/521 // https://github.com/diffplug/spotless/blob/master/plugin-gradle/CHANGES.md - const val spotless = "3.28.0" + const val spotless = "5.5.1" // https://github.com/bugsnag/bugsnag-android/releases const val bugsnag = "5.2.0" diff --git a/docs/Changelog.md b/docs/Changelog.md index cb21ff1..fb05320 100644 --- a/docs/Changelog.md +++ b/docs/Changelog.md @@ -1,5 +1,9 @@ # Changelog +## v6.1.0 +* Add support for Android 4.1 RC03 +* Breaking: Updated iconics and buganizer dependencies + ## v6.0.0 * Add support for Android 4.1.x * Add major version library updates (FastAdapter, AboutLibrary, Iconics) diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml index f4a82bd..e88d697 100644 --- a/sample/src/main/res/xml/kau_changelog.xml +++ b/sample/src/main/res/xml/kau_changelog.xml @@ -8,7 +8,7 @@ - + diff --git a/spotless.gradle b/spotless.gradle index 22dba3a..2947489 100644 --- a/spotless.gradle +++ b/spotless.gradle @@ -1,4 +1,4 @@ -apply plugin: "com.diffplug.gradle.spotless" +apply plugin: "com.diffplug.spotless" spotless { kotlin { -- cgit v1.2.3