Make PersistableBundle a stable parcelable.
PersistableBundle is updated to declare the @JavaOnlyStableParcelable
annotation, which allows it to be used in stable aidl interfaces.
Bug: 143187964
Test: compiles
Change-Id: I8b3fa9746cc7694b18c285c8b7f646e23759ddb3
diff --git a/aidl/binder/android/os/PersistableBundle.aidl b/aidl/binder/android/os/PersistableBundle.aidl
index 94e8607..493ecb4 100644
--- a/aidl/binder/android/os/PersistableBundle.aidl
+++ b/aidl/binder/android/os/PersistableBundle.aidl
@@ -17,4 +17,4 @@
package android.os;
-parcelable PersistableBundle cpp_header "binder/PersistableBundle.h";
+@JavaOnlyStableParcelable parcelable PersistableBundle cpp_header "binder/PersistableBundle.h";