ignore TrulyRandom lint warnings, fdroid already includes the fix
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
This commit is contained in:
parent
df3ba4c751
commit
9870fd13b6
7
lint.xml
7
lint.xml
@ -1,11 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<lint>
|
<lint>
|
||||||
<!-- Remove severity="ignore" to see the missing translations -->
|
<!-- Remove severity="ignore" to see the missing translations -->
|
||||||
<issue id="MissingTranslation" severity="ignore" >
|
<issue id="MissingTranslation" severity="ignore">
|
||||||
<ignore path="res/values/no_trans.xml" />
|
<ignore path="res/values/no_trans.xml" />
|
||||||
<ignore path="res/values/default_repo.xml" />
|
<ignore path="res/values/default_repo.xml" />
|
||||||
</issue>
|
</issue>
|
||||||
<issue id="UnusedResources" severity="ignore" >
|
<issue id="TrulyRandom" severity="ignore" />
|
||||||
|
<issue id="UnusedResources" severity="ignore">
|
||||||
<ignore path="res/values/default_repo.xml" />
|
<ignore path="res/values/default_repo.xml" />
|
||||||
</issue>
|
</issue>
|
||||||
</lint>
|
</lint>
|
Loading…
x
Reference in New Issue
Block a user