Skip to content

Commit

Permalink
fix: disable full story plugin when disabled (#381)
Browse files Browse the repository at this point in the history
Co-authored-by: Farhan Arshad <farshad@2u.com>
  • Loading branch information
dixidroid and farhan-arshad-dev authored Oct 7, 2024
1 parent f66b3f2 commit 77cdf41
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ apply plugin: 'org.jetbrains.kotlin.android'
apply plugin: 'kotlin-parcelize'
apply plugin: 'kotlin-kapt'

if (fullstoryEnabled) {
apply plugin: 'fullstory'
}

if (firebaseEnabled) {
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
Expand All @@ -29,7 +33,6 @@ if (firebaseEnabled) {
}

if (fullstoryEnabled) {
apply plugin: 'fullstory'
def fullstoryOrgId = fullstoryConfig?.get("ORG_ID")

fullstory {
Expand Down

0 comments on commit 77cdf41

Please sign in to comment.