Various lint error fixes.

> Fixing some RTL errors by specifying both marginStart and marginLeft
> Moving all layout direction checks to Utilities
> Explicitely adding @TargetApi before every method

Change-Id: Ibe9c52b93b5a6adeadb27ace2b312770fd732ea0
This commit is contained in:
Sunny Goyal
2015-05-14 00:07:08 -07:00
parent 5a92b2356f
commit 7066003b20
43 changed files with 181 additions and 132 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ public class MemoryTracker extends Service {
public void startTrackingProcess(int pid, String name, long start) {
synchronized (mLock) {
final Long lpid = new Long(pid);
final Long lpid = Long.valueOf(pid);
if (mPids.contains(lpid)) return;