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
api-impl: misc stubs and fixes for several apps including F-Droid and AuroraStore
This commit is contained in:
@@ -1,8 +1,13 @@
|
||||
package android.content;
|
||||
|
||||
import android.content.pm.PackageManager;
|
||||
import android.content.res.Resources;
|
||||
import android.net.Uri;
|
||||
import android.os.Bundle;
|
||||
import android.os.Parcelable;
|
||||
import android.util.AttributeSet;
|
||||
import org.xmlpull.v1.XmlPullParser;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Collections;
|
||||
@@ -378,4 +383,12 @@ public class Intent implements Parcelable {
|
||||
public int filterHashCode() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static Intent parseIntent(Resources res, XmlPullParser parser, AttributeSet attrs) {
|
||||
return new Intent();
|
||||
}
|
||||
|
||||
public ComponentName resolveActivity(PackageManager pm) {
|
||||
return component;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user