You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
add more stubs to make exoplayer not crash
This commit is contained in:
18
src/api-impl/android/os/Parcel.java
Normal file
18
src/api-impl/android/os/Parcel.java
Normal file
@@ -0,0 +1,18 @@
|
||||
package android.os;
|
||||
|
||||
public class Parcel {
|
||||
|
||||
public static Parcel obtain() {
|
||||
return new Parcel();
|
||||
}
|
||||
|
||||
public void writeBundle(Bundle bundle) {}
|
||||
|
||||
public Bundle readBundle(ClassLoader loader) {
|
||||
return new Bundle();
|
||||
}
|
||||
|
||||
public void setDataPosition(int position) {}
|
||||
|
||||
public void recycle() {}
|
||||
}
|
||||
Reference in New Issue
Block a user