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?