aboutsummaryrefslogtreecommitdiff
path: root/sample/build.gradle
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2020-06-28 00:42:50 -0700
committerAllan Wang <me@allanwang.ca>2020-06-28 00:42:50 -0700
commit691994b7767fb2b4859f7e8c8ca67166259a034e (patch)
tree69817f5adccc4e6d8a0800240b992081ce211c24 /sample/build.gradle
parent813f3867839d015c123625eb0a4586e79e210200 (diff)
downloadkau-691994b7767fb2b4859f7e8c8ca67166259a034e.tar.gz
kau-691994b7767fb2b4859f7e8c8ca67166259a034e.tar.bz2
kau-691994b7767fb2b4859f7e8c8ca67166259a034e.zip
Update gradle and add bugsnag to sample app
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")