diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-24 15:29:32 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-24 15:46:26 +0530 |
commit | 2762c1757848efcb789b58e819987633a59ba270 (patch) | |
tree | 1daeaf55c4241f25ad69389259959e860dc9c480 /app/build.gradle.kts | |
parent | 816aca5ba18446f2d14cb993d47c6119a548135b (diff) |
feat: setup Beagle for debugging
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index c099a2da..9baec021 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -102,7 +102,13 @@ dependencies { if (snapshot.snapshot) { implementation(libs.thirdparty.whatthestack) + implementation(libs.thirdparty.beagle.ui.drawer) + implementation(libs.thirdparty.beagle.log) } else { + debugImplementation(libs.thirdparty.beagle.ui.drawer) + debugImplementation(libs.thirdparty.beagle.log) + releaseImplementation(libs.thirdparty.beagle.noop) + releaseImplementation(libs.thirdparty.beagle.log.noop) debugImplementation(libs.thirdparty.whatthestack) } |