LLevo todo el dia solucionando errores, la mayoria son cierres } mal colocados, pero estoy con este que no se como resorverlo. A ver si me podeis ayudar:
Código:
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java:1202: ';' expected
oldEntry.notification.getNotification.tickerText)) || mHaloActive;
^
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java:1202: not a statement
oldEntry.notification.getNotification.tickerText)) || mHaloActive;
^
Reading library jar [/home/mbc596/4.3_r2.2/out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes.jar]
2 errors
La línea del error es esta: (la última)
Código:
boolean updateTicker = notification.getNotification().tickerText != null
&& !TextUtils.equals(notification.getNotification().tickerText,
oldEntry.notification.getNotification.tickerText)) || mHaloActive;
Mirando el original de PA encuentro esto:
Código:
boolean updateTicker = (notification.notification.tickerText != null
&& !TextUtils.equals(notification.notification.tickerText,
oldEntry.notification.notification.tickerText)) || mHaloActive;
Como se puede ver en el mio tengo getNotification y PA solo notification, pienso que el error puede estar aquí, pero no se como solucionarlo.
El cherry-pick solo añade esta parte
Gracias de antemano!