What does the double asterisk mean in proguard rules?

前端 未结 1 1903
臣服心动
臣服心动 2021-01-03 21:19

What does this rule mean in proguard for example:

-keep class myjava.** {*;}

I understand {*;} part would mean all members and methods in t

相关标签:
1条回答
  • 2021-01-03 22:08

    From the manual:

    Types in classname, annotationtype, returntype, and argumenttype can contain
    wildcards: '?' for a single character, '*' for any number of characters (but
    not the package separator), '**' for any number of (any) characters, '%' for
    any primitive type, '***' for any type, and '...' for any number of arguments.
    
    0 讨论(0)
提交回复
热议问题