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 bc97c10a53
commit c93f0c6a99
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");
}
}