mirror of
https://github.com/tachiyomiorg/extensions-lib.git
synced 2024-11-17 16:59:18 +01:00
16 lines
294 B
Java
16 lines
294 B
Java
|
package androidx.preference;
|
||
|
|
||
|
import android.content.Context;
|
||
|
|
||
|
public class PreferenceScreen {
|
||
|
|
||
|
public boolean addPreference(Preference preference) {
|
||
|
throw new RuntimeException("Stub!");
|
||
|
}
|
||
|
|
||
|
public Context getContext() {
|
||
|
throw new RuntimeException("Stub!");
|
||
|
}
|
||
|
|
||
|
}
|