用于 kotlin 的 Proguard 混淆关键字
Proguard obfuscation keywords for kotlin
我在 中使用 关键字 混淆 和 proguard ]android-java项目:
do
if
for
int
new
try
byte
case
char
else
goto
long
this
void
break
catch
class
const
final
float
short
super
throw
while
double
import
native
public
return
static
switch
throws
boolean
default
extends
finally
package
private
abstract
continue
strictfp
volatile
interface
protected
transient
implements
instanceof
synchronized
但我正在切换到 Kotlin 现在的问题是我应该为 Kotlin 使用什么关键字?
我找到了 this 但我应该全部使用它们吗?
您误解了混淆器混淆的内容。 Proguard 在 Java 字节码上运行。给它一个 JVM 语言的关键字列表实际上对你的混淆没有任何作用。
我在 中使用 关键字 混淆 和 proguard ]android-java项目:
do
if
for
int
new
try
byte
case
char
else
goto
long
this
void
break
catch
class
const
final
float
short
super
throw
while
double
import
native
public
return
static
switch
throws
boolean
default
extends
finally
package
private
abstract
continue
strictfp
volatile
interface
protected
transient
implements
instanceof
synchronized
但我正在切换到 Kotlin 现在的问题是我应该为 Kotlin 使用什么关键字?
我找到了 this 但我应该全部使用它们吗?
您误解了混淆器混淆的内容。 Proguard 在 Java 字节码上运行。给它一个 JVM 语言的关键字列表实际上对你的混淆没有任何作用。