aboutsummaryrefslogtreecommitdiffstats
path: root/testapps/customViewTest/mainProject/res
Commit message (Collapse)AuthorAgeFilesLines
* Use aapt output to feed proguard's keep list.Xavier Ducrohet2012-05-291-1/+1
| | | | | | | | | | | This allows us to only keep classes that are really used either through code or through XML. Also tweak the default rules for better control of animated properties. Added a test of a custom property animation and fixed some other misc test files. Change-Id: I7cc5839a764881d8d3c7bfce0a3f12ea7cba660e
* Fix support for custom views in library on ADT's side.Xavier Ducrohet2012-02-241-0/+4
Don't check for final field when parsing R.java (in libraries fields are not final anymore) and fix a bug in the new aaptparser which would return a failed to parse aapt error when the output is empty. Also add customview in library test app.