feat(syncforreddit): add change-oauth-client-id patch (#2393)

This commit is contained in:
oSumAtrIX 2023-06-12 01:15:16 +02:00 committed by GitHub
parent 7cf1e35fad
commit c282abf677
9 changed files with 134 additions and 13 deletions

9
dummy/build.gradle.kts Normal file
View file

@ -0,0 +1,9 @@
plugins {
id("java")
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(11))
}
}

View file

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