Obsolete
Status Update
Comments
me...@thomaskeller.biz <me...@thomaskeller.biz> #2
I meant issue 36911326 , hope the hotlinking works now.
xa...@android.com <xa...@android.com>
la...@gmail.com <la...@gmail.com> #3
Using this in my build:
aaptOptions {
ignoreAssetsPattern "!about.html!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"
}
It looks like it's very close, but instead of "--ignore-assets", it's using "---ignore-assets" (3 dashes instead of 2).
aaptOptions {
ignoreAssetsPattern "!about.html!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"
}
It looks like it's very close, but instead of "--ignore-assets", it's using "---ignore-assets" (3 dashes instead of 2).
ma...@gmail.com <ma...@gmail.com> #4
unbelievable that this is still not fixed. it is common convention to prefix files with _ (underscore).
adding: aapt.ignore.assets="!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~"
to ant.properties doesn't help to copy directories starting with underscores to android_assets directory.
pls. fix it
adding: aapt.ignore.assets="!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~"
to ant.properties doesn't help to copy directories starting with underscores to android_assets directory.
pls. fix it
ka...@gmail.com <ka...@gmail.com> #5
Any workarounds for this issue? Tentative date when this will be fixed?
ka...@gmail.com <ka...@gmail.com> #6
I suppose the ADT build uses the APKBuilder.bat file in the sdk/tools folder. When followed through, was surprised to see folder names hard coded in
com/android/jarutils/JavaResourceFilter.java
/**
* Checks whether a folder and its content is valid for packaging into the .apk as
* standard Java resource.
* @param folderName the name of the folder.
*/
public static boolean checkFolderForPackaging(String folderName) {
return folderName.equals("CVS") == false &&
folderName.equals(".svn") == false &&
folderName.equals("SCCS") == false &&
folderName.equals("META-INF") == false &&
folderName.startsWith("_") == false;
}
This should ideally be checking the aapt.ignore.assets property.
com/android/jarutils/JavaResourceFilter.java
/**
* Checks whether a folder and its content is valid for packaging into the .apk as
* standard Java resource.
* @param folderName the name of the folder.
*/
public static boolean checkFolderForPackaging(String folderName) {
return folderName.equals("CVS") == false &&
folderName.equals(".svn") == false &&
folderName.equals("SCCS") == false &&
folderName.equals("META-INF") == false &&
folderName.startsWith("_") == false;
}
This should ideally be checking the aapt.ignore.assets property.
xa...@android.com <xa...@android.com>
xa...@android.com <xa...@android.com>
ap...@codeblock.io <ap...@codeblock.io> #7
Has this issue been fixed? If not, when is going to be addressed?
sh...@gmail.com <sh...@gmail.com> #9
Absolutely ridiculous that no one can come up at least with an acceptable explanation since 2009... pffff.. Well done android... :)
di...@google.com <di...@google.com> #10
Thank you for reporting this issue. At this time it appears this feedback is no longer relevant. If you continue to experience this issue please open a new bug and we can reinvestigate.
Description
While this works as expected now for ant-based builds, ignored assets are still parsed and compiled in ADT. It would be awesome if this could be fixed.