mirror of
https://github.com/revanced/revanced-patches.git
synced 2025-05-02 15:44:39 +02:00
10 lines
196 B
Java
10 lines
196 B
Java
package android.os;
|
|
|
|
import java.io.File;
|
|
|
|
public final class Environment {
|
|
public static File getExternalStorageDirectory() {
|
|
throw new UnsupportedOperationException("Stub");
|
|
}
|
|
}
|