fix(syncforreddit/change-oauth-client-id): use correct signature for Android API

This commit is contained in:
oSumAtrIX 2023-06-12 03:54:13 +02:00
parent 7e8e504b41
commit 4db2eba6d6
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,9 @@
package android.os;
import java.io.File;
public final class Environment {
public static String getExternalStorageDirectory() {
public static File getExternalStorageDirectory() {
throw new UnsupportedOperationException("Stub");
}
}