Mahdi Nouri
Mahdi Nouri

Reputation: 1389

Proguard obfuscation keywords for kotlin

I was using this keywords for obfuscation with proguard in my android-java project :

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

but I'm switching to Kotlin and now the question is what keywords should i use for Kotlin ?

I've found this but should i use all of them ?

Upvotes: 0

Views: 811

Answers (1)

Kiskae
Kiskae

Reputation: 25573

You are misunderstanding what proguard obfuscates. Proguard operates on Java Bytecode. Giving it a list of keywords from a JVM language really doesn't do anything for your obfuscation.

Upvotes: 4

Related Questions