Re: [android-developers] Re: How would I include non-class files in my apk?

2010-07-07 Thread Connick
Beauty. Thanks Mark. On Wed, Jul 7, 2010 at 2:01 PM, Mark Murphy wrote: > Usually, for stuff to load into a WebView, assets/ is a better answer > than res/raw/. Here is a sample project: > > http://github.com/commonsguy/cw-advandroid/tree/master/WebView/GeoWeb1/ > > On Wed, Jul 7, 2010 at 1:56

Re: [android-developers] Re: How would I include non-class files in my apk?

2010-07-07 Thread Mark Murphy
Usually, for stuff to load into a WebView, assets/ is a better answer than res/raw/. Here is a sample project: http://github.com/commonsguy/cw-advandroid/tree/master/WebView/GeoWeb1/ On Wed, Jul 7, 2010 at 1:56 PM, Connick wrote: > Part of the answer. res/raw > Now just need to figure out where

[android-developers] Re: How would I include non-class files in my apk?

2010-07-07 Thread Connick
R.raw Case closed. :) On Wed, Jul 7, 2010 at 1:56 PM, Connick wrote: > Part of the answer. res/raw > Now just need to figure out where those end up. :) > > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Re: How would I include non-class files in my apk?

2010-07-07 Thread Connick
Part of the answer. res/raw Now just need to figure out where those end up. :) On Wed, Jul 7, 2010 at 1:51 PM, Connick wrote: > More specifically ...have the files show up: > /data/data/com.mydomain.foo/media/foo.js > > Is this something I would have to provision programatically at runtime? > >

[android-developers] Re: How would I include non-class files in my apk?

2010-07-07 Thread Connick
More specifically ...have the files show up: /data/data/com.mydomain.foo/media/foo.js Is this something I would have to provision programatically at runtime? On Wed, Jul 7, 2010 at 1:35 PM, Connick wrote: > I'm looking to load some JS and CSS into a webview (via content provider) > which is al