diff options
| author | Albin <albin@mullvad.net> | 2023-09-21 08:54:24 +0200 |
|---|---|---|
| committer | Albin <albin@mullvad.net> | 2023-09-21 18:30:52 +0200 |
| commit | 119da166330aaf5ef037f4269e36eedc5f142da9 (patch) | |
| tree | 84a95ea7b89746c446bbbfaa232f2cd85d232d31 /android/test/common | |
| parent | 8066e42cff442207830ed05e6db1395e34c2d1db (diff) | |
| download | mullvadvpn-119da166330aaf5ef037f4269e36eedc5f142da9.tar.xz mullvadvpn-119da166330aaf5ef037f4269e36eedc5f142da9.zip | |
Add billing and infrastructure flavor dimensions
Flavor dimension usage:
* `billing` - used to build separate artifacts where (1) different
policies are followed and (2) different dependencies are used.
* `infrastructure` - used to improve development and testing
against non-production environments.
Diffstat (limited to 'android/test/common')
| -rw-r--r-- | android/test/common/build.gradle.kts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/android/test/common/build.gradle.kts b/android/test/common/build.gradle.kts index 311742c412..99fcb9d2a7 100644 --- a/android/test/common/build.gradle.kts +++ b/android/test/common/build.gradle.kts @@ -25,7 +25,9 @@ android { } androidComponents { - beforeVariants { variantBuilder -> variantBuilder.apply { enable = name != "release" } } + beforeVariants { variantBuilder -> + variantBuilder.apply { enable = name != BuildTypes.RELEASE } + } } dependencies { |
