
PRNGFixes.apply() is run in FDroidApp.onCreate(). This is enough, according to Google, and their instructions say to disable this lint warning once the workaround is included since lint cannot detech whether the workaround is applied. This the code format was also automatically corrected by the Eclipse plugin
12 lines
461 B
XML
12 lines
461 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<lint>
|
|
<!-- Remove severity="ignore" to see the missing translations -->
|
|
<issue id="MissingTranslation" severity="ignore">
|
|
<ignore path="res/values/no_trans.xml" />
|
|
<ignore path="res/values/default_repo.xml" />
|
|
</issue>
|
|
<issue id="TrulyRandom" severity="ignore" />
|
|
<issue id="UnusedResources" severity="ignore">
|
|
<ignore path="res/values/default_repo.xml" />
|
|
</issue>
|
|
</lint> |