Resources NotFoundException android plugin

Hello all!

I´m working on a Plugin for Android. I have the Eclipse project (with resources and source code) from the original library. I export it as a jar file, and I take the res folder to put into /Assets/Plugins/Android.

When I run the game, the app crash when accessing to Resources:

getString(R.string.loading)

I have this error

android.content.res.Resources NoffoundException String resource ID #0x7f50005

I can see the this resource on the R class:

public static int loading=0x7f050005;

I also tried to change the source and get the resource like this:

getIdentifier("loading___", "string",getPackageName())

But I have the same error with resource ID 0x00

I don´t know how to fix this export problem

Thanks in advance

Problem solved.

The problem was I had only the strings.xml in japanese, I added the english strings and it works