* Show version info. All the cool kids do it. */
| 24 | * Show version info. All the cool kids do it. |
| 25 | */ |
| 26 | int doVersion(Bundle* bundle) |
| 27 | { |
| 28 | if (bundle->getFileSpecCount() != 0) |
| 29 | printf("(ignoring extra arguments)\n"); |
| 30 | printf("Android Asset Packaging Tool, v0.2\n"); |
| 31 | |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | |
| 36 | /* |
no test coverage detected