From 0569556d35a9c7ccf83affd3b63b920aba513584 Mon Sep 17 00:00:00 2001 From: Farhan Arshad Date: Thu, 18 Jul 2024 13:27:24 +0500 Subject: [PATCH] fix: disable full story plugin when disabled --- app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 659730ff0..5bf5182e7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,7 +10,10 @@ apply plugin: 'com.android.application' apply plugin: 'org.jetbrains.kotlin.android' apply plugin: 'kotlin-parcelize' apply plugin: 'kotlin-kapt' -apply plugin: 'fullstory' + +if (fullstoryEnabled) { + apply plugin: 'fullstory' +} if (firebaseEnabled) { apply plugin: 'com.google.gms.google-services'