Подтвердить что ты не робот

Что означает двойная звездочка в правилах proguard?

Что означает это правило в proguard, например:

-keep class myjava.** {*;}

Я понимаю, что часть {*;} будет означать все члены и методы в классе. Но что означает звездочка 2 в названии пакета?.

Спасибо заранее.

4b9b3361

Ответ 1

Из руководство:

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.