diff options
| author | Albin <albin@mullvad.net> | 2024-06-13 13:32:06 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2024-06-13 17:01:00 +0200 |
| commit | 39bc2d98d771b5a8745f530124cf6802080abd10 (patch) | |
| tree | 80f8b73927c440596ea041732e59e071e512c495 /android/service/src | |
| parent | 0ac8730d349c082ce52d12b47a960326bc7174ab (diff) | |
| download | mullvadvpn-39bc2d98d771b5a8745f530124cf6802080abd10.tar.xz mullvadvpn-39bc2d98d771b5a8745f530124cf6802080abd10.zip | |
Fix broken IS_PLAY_BUILD check
Diffstat (limited to 'android/service/src')
| -rw-r--r-- | android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt b/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt index 5c7c387c91..5ec43986e3 100644 --- a/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt +++ b/android/service/src/main/kotlin/net/mullvad/mullvadvpn/service/constant/BuildConstant.kt @@ -2,4 +2,4 @@ package net.mullvad.mullvadvpn.service.constant import net.mullvad.mullvadvpn.service.BuildConfig -const val IS_PLAY_BUILD = BuildConfig.FLAVOR == "play" +const val IS_PLAY_BUILD = BuildConfig.FLAVOR_billing == "play" |
