I just ported this commit
https://github.com/tickerguy/android_frameworks_base/commit/024ca7b0d66f97cdab1bc44bc5b1ae50833b0769
Im getting this while building
frameworks/base/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java:302: cannot find symbol
symbol : variable EVENT_CDMA_PRL_VERSION_CHANGED
location: class com.android.internal.telephony.cdma.CdmaServiceStateTracker
case EVENT_CDMA_PRL_VERSION_CHANGED:
^
frameworks/base/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java:873: cannot find symbol
symbol : variable EVENT_CDMA_PRL_VERSION_CHANGED
location: class com.android.internal.telephony.cdma.CdmaServiceStateTracker
obtainMessage(EVENT_CDMA_PRL_VERSION_CHANGED, pollingContext));
^
frameworks/base/telephony/java/com/android/internal/telephony/RIL.java:2469: cannot find symbol
symbol : variable RIL_UNSOL_CDMA_PRL_CHANGED
location: class com.android.internal.telephony.RIL
case RIL_UNSOL_CDMA_PRL_CHANGED: ret = responseVoid(p); break;
^
It only an error with these 3 files with the changes I made.
Its missing the symbol which im guessing it's saying is that that command doesnt make sense.
What Am i missing?
EDIT: i deleted those lines and it built flashing now.