aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-06-28 00:56:26 -0700
committerGitHub <noreply@github.com>2020-06-28 00:56:26 -0700
commitceed2ade66042d45a08767171385124c66255249 (patch)
treeddbe4290321ff39da1a05405eaed98d8dd599515 /sample/build.gradle
parent813f3867839d015c123625eb0a4586e79e210200 (diff)
parente4e538ed8dd488271378c99caf4418bf28d10508 (diff)
downloadkau-ceed2ade66042d45a08767171385124c66255249.tar.gz
kau-ceed2ade66042d45a08767171385124c66255249.tar.bz2
kau-ceed2ade66042d45a08767171385124c66255249.zip
Merge pull request #255 from AllanWang/versions
Diffstat (limited to 'sample/build.gradle')
-rw-r--r--sample/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/sample/build.gradle b/sample/build.gradle
index d620c2a..fd07da1 100644
--- a/sample/build.gradle
+++ b/sample/build.gradle
@@ -4,6 +4,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'
+//apply plugin: 'com.bugsnag.android.gradle'
apply plugin: 'com.github.triplet.play'
apply plugin: 'dagger.hilt.android.plugin'
@@ -64,6 +65,7 @@ android {
versionNameSuffix "-debug"
signingConfig signingConfigs.debug
resValue "string", "app_name", "KAU Debug"
+ ext.enableBugsnag = false
}
release {
@@ -130,6 +132,8 @@ dependencies {
implementation Dependencies.hilt
kapt Dependencies.hiltCompiler
+ implementation Dependencies.bugsnag
+
implementation Dependencies.materialDialog("input")
testImplementation Dependencies.kotlinTest
@@ -137,7 +141,6 @@ dependencies {
testImplementation Dependencies.hiltTest
kaptTest Dependencies.hiltCompiler
-
androidTestImplementation Dependencies.kotlinTest
androidTestImplementation Dependencies.espresso
androidTestImplementation Dependencies.espresso("intents")