mirror of
https://github.com/revanced/revanced-patches
synced 2024-11-10 07:09:22 +01:00
fix(change-package-name): use null
as default value for option packageName
(#1998)
This commit is contained in:
parent
77de880dfb
commit
8128e6ba57
@ -5,7 +5,7 @@ import app.revanced.patcher.patch.Patch
|
||||
import app.revanced.patcher.util.patch.PatchBundle
|
||||
import java.io.File
|
||||
|
||||
typealias PatchBundlePatches = List<Class<out Patch<Context>>>
|
||||
internal typealias PatchBundlePatches = List<Class<out Patch<Context>>>
|
||||
|
||||
internal interface PatchesFileGenerator {
|
||||
fun generate(bundle: PatchBundlePatches)
|
||||
|
@ -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.",
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user