Skip to content

Commit

Permalink
support for native debug symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
newnon authored and Vacxe committed Jun 30, 2023
1 parent b27e4bf commit 197fb83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/kotlin/com/github/vacxe/googleplaycli/Commands.kt
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ object Commands {
val apkVersionCode: Int by option("--apk-version-code", "-v", help = "The version code of the APK whose deobfuscation file is being uploaded.")
.int().required()

private val deobfuscationFileType: String by option("--deobfuscation-file-type", "-t", help = "Acceptable values are: proguard")
.choice("proguard")
private val deobfuscationFileType: String by option("--deobfuscation-file-type", "-t", help = "Acceptable values are: proguard, nativeCode")
.choice("proguard", "nativeCode")
.default("proguard")

override fun run(api: PlayStoreApi) = api.deobfuscationFilesUpload(DeobfuscationfilesUploadModel(packageName, editId, apkVersionCode, deobfuscation, deobfuscationFileType))
Expand Down

0 comments on commit 197fb83

Please sign in to comment.