In a class belonging to a Library project I call:

webview.loadUrl("file:///android_asset/info.html", null);

Unfortunately, this only works if I duplicate the file info.html into the Application's project asset folder as well.

Is there a way to tell an Android library code: "look for this file in the library's assets folder, not in the application's assets folder" ?

link|improve this question

feedback

3 Answers

up vote 10 down vote accepted

From the Android Docs:

Library projects cannot include raw assets

The tools do not support the use of raw asset files (saved in the assets/ directory) in a library project. Any asset resources used by an application must be stored in the assets/ directory of the application project itself. However, resource files saved in the res/ directory are supported.

If you want to include files from a Library project, you'll need to put it in the resources instead of the assets. If you're trying to load HTML files from your library project into a WebView, this means that you'll have to go a more roundabout method than the usual asset URL. Instead you'll have to read the resource data and use something like loadData.

link|improve this answer
Excellent answer -- and explanation! Thank you + 1 + accepting. – an00b Jun 14 '11 at 17:27
The problem with loadData is, that images and other page -element referenced in the loaded html can not be loaded without a lot of hacking. – Marcus Wolschon Jan 4 at 13:49
feedback

Okay. Ive been stressing out and losing sleep about this for a while. Im the type of person that loves API creation, and HATES complicated integration.

There arent many solutions around on the internet, so im quite proud of what Ive discovered with a bit of Eclipse Hackery.

It turns out that when you put a file in the Android Lib's /assets folder. The target apk will capture this and place it on the root of the APK archive. Thus, making general access fail. This can be resolved by simply creating a Raw Java Library, and placing all assets in there, ie (JAVALIB)/assets/fileX.txt.

You can in turn then include this as a Java Build Path Folder Source in Project > Properties > Java Build Path > Source > Link Source.

  1. Link Source
  2. Click on Variables. and Add New Variable, ie VAR_NAME_X. location : ../../(relative_path_to_assets_project)
  3. Click Ok

Now, when you build and run your app, the assets folder in the APK will contain your (GLOBAL Library) files as you intended.

No need to reconfigure android internals or nothing. Its all capable within a few clicks of Eclipse.

link|improve this answer
+1 for a great workaround, but what do you mean by "a Raw Java Library"? How do you create one on Eclipse? Thanks! – an00b May 6 at 23:45
feedback

I found this older question, it might help you, too.

This is the official way Google uses to archive this (from the above post): Link

link|improve this answer
Thanks. Unfortunately, that thread doesn't explain how to reference an asset in a library project. – an00b Jun 14 '11 at 16:43
Yes, it does... even with pictures: Link – Lukas Knuth Jun 14 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.