In Eclipse, I create a new project by importing an application already parsed using apktolls and get a bunch of errors of this kind:

error: Error: Resource is not public. (at 'color' with value ' @android : color / bright_foreground_dark').

The contents of one of the files with a similar error:

<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:color=" @android :color/bright_foreground_dark" /> </selector> 

The resource, the link to which is defined as an error, is located in the system firmware file framework-res.apk / res / values ​​/ color.xml.

And here comes the question:

How to connect this resource in Eclipse?

    1 answer 1

    Pull out the resources and drop them into the res / subdirectory - if you can tell Eclipse where the resources lie

    • Thank you very much for the answer! Can I contact you somehow to clarify this issue in more detail? - 333vs333