fix(change-package-name): make option packageName null by default

This commit is contained in:
oSumAtrIX
2023-04-27 20:30:59 +02:00
parent 420f392dcf
commit 2d3da2a579

View File

@@ -41,7 +41,7 @@ class ChangePackageNamePatch : ResourcePatch {
var packageName: String? by option(
PatchOption.StringOption(
key = "packageName",
default = "",
default = null,
title = "Package name",
description = "The name of the package to rename of the app.",
)