To clarify, I would like to do this at runtime. Access to the certificate information at runtime is really what I want. -Nate
On Jun 14, 7:39 pm, Nikolay Elenkov <[email protected]> wrote: > On Wed, Jun 15, 2011 at 2:57 AM, Nate Totura <[email protected]> wrote: > > Is it possible to read files in the META-INF directory such as the > > CERT.RSA file? > > Sure. What exactly are you trying to do? Read from jar file? > Read from exploded jar file? What do you need those file for? > You really need to provide more details to get a useful answer. > > > > > I have tried the following: > > > AssetFileDescriptor afd = am.openNonAssetFd("META-INF/CERT.RSA"); > > > but I get the exception: > > > java.io.FileNotFoundException: This file can not be opened as a file > > descriptor; it is probably compressed > > Why are you using the AssetManager for this? If this is a jar/apk, > look at JarFile/JarEntry for ideas. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

