From 12ad62e94808724325a1c1779acab58f177f1459 Mon Sep 17 00:00:00 2001 From: machiav3lli Date: Wed, 6 Apr 2022 15:23:45 +0200 Subject: [PATCH] Add: neo build --- build.gradle | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 477a8dbf..c833043e 100644 --- a/build.gradle +++ b/build.gradle @@ -58,13 +58,24 @@ android { minifyEnabled = false shrinkResources = false applicationIdSuffix = ".debug" - versionNameSuffix = "-alpha1" + versionNameSuffix = "-alpha2" resValue "string", "application_name", "Neo Store-Debug" manifestPlaceholders = [ appIcon : "@mipmap/ic_launcher_debug", appIconRound: "@mipmap/ic_launcher_round_debug" ] } + neo { + minifyEnabled = false + shrinkResources = false + applicationIdSuffix = ".neo" + versionNameSuffix = "-alpha2" + resValue "string", "application_name", "Neo Store-alpha" + manifestPlaceholders = [ + appIcon : "@mipmap/ic_launcher_debug", + appIconRound: "@mipmap/ic_launcher_round_debug" + ] + } release { minifyEnabled = true shrinkResources = true