2014-02-12 4 views

답변

13

는 :

 
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

나는 그 부분을 놓쳤다. 감사. – Notbad

+0

나는 아직도 그것을 얻지 않는다. 그래서 무엇이 다른지 -keep @@ annotation.Singleton public class *와 -keep @@ annotation.Singleton public class ** –

+0

@BasilMusa 내가 올바르게 이해한다면, 단일 별표에는 패키지 구분 기호가 포함되지 않는다. : com.google. *은 com.google.test 또는 com.google.anothertest를 유지하지만 * com.google.test.one은 유지하지 않습니다. 이중 별표는 모든 잠재적 하위 패키지를 무한대로 유지합니다. – Jon

관련 문제