diff --git a/Source/Android/build.gradle b/Source/Android/build.gradle index aa519cf29f..c9277ea178 100644 --- a/Source/Android/build.gradle +++ b/Source/Android/build.gradle @@ -71,8 +71,16 @@ android { } buildTypes { + // Signed by release key, allowing for upload to Play Store. release { signingConfig signingConfigs.release } + + // Signed by debug key disallowing distribution on Play Store. + // Attaches 'debug' suffix to version and package name, allowing installation alongside the release build. + debug { + packageNameSuffix '.debug' + versionNameSuffix '-debug' + } } }