App ID 是一串用以识别一个或多个APP, 有两部分String组成,Team ID 和 Bundle ID搜索string.
App ID可以分成 Explicit App ID和Wildard App ID (如下图,永远带有星号通配符:
星号至少匹配一个字符
com.domain.* |
| (bundle id search string) |
---|---|---|
com.domain.text | | * matches text. |
com.domain.icon | | * matches icon |
com.otherdomain.database | | The d in the pattern fails to find a match. |
com.domain | | The . in the pattern fails to find a match. |
com.domain. | | The * in the pattern fails to match a character. |