chore: Disable verbose logging by default on nightly releases

This commit is contained in:
Ahmad Ansori Palembani 2024-12-22 10:39:23 +07:00
parent a6e5b41d7d
commit bafd9e54aa
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6

View file

@ -39,7 +39,7 @@ fun preferenceModule(application: Application) = module {
single {
NetworkPreferences(
get(),
BuildConfig.FLAVOR == "dev" || BuildConfig.DEBUG || BuildConfig.NIGHTLY,
BuildConfig.FLAVOR == "dev" || BuildConfig.DEBUG,
)
}