Reputation: 3316
Whenever I export an Android application using ProGuard, I get the following error message:
@C:\xxxx\xxxx~1\xxxxx\xxxxx\xxxx\android_7813736973653258335.pro (The filename, directory name, or volume label syntax is incorrect)
I have been trying hard to find out the issue but nothing is working out.
Upvotes: 1
Views: 716
Reputation: 16132
Windows 7, Eclipse Juno, using ADT 22.2.1.
The original Proguard was 4.6. I had to upgrade to 4.10 to solve this problem.
Upvotes: 0
Reputation: 3316
The issue can be sorted out by using proguard 4.6 and also the name of workspace should not contain any spaces. The proguard folder in android sdk windows folder should be replaced with proguard 4.6
Upvotes: 1
Reputation: 23186
Make sure that the path to your project or the path you are exporting the file to does not have any of the following special characters \\ \\ / [ ] : | < > + ; = . ? "
. Also make sure there are no trailing or leading spaces in either of the paths.
Upvotes: 1