Replace BuildConfig stubs with AppInfo stubs

This commit is contained in:
arkon 2022-02-01 12:54:16 -05:00
parent 78371323c3
commit 7dfe39b011
2 changed files with 6 additions and 6 deletions

View File

@ -0,0 +1,6 @@
package eu.kanade.tachiyomi
object AppInfo {
fun getVersionCode(): String = throw Exception("Stub!")
fun getVersionName(): String = throw Exception("Stub!")
}

View File

@ -1,6 +0,0 @@
package eu.kanade.tachiyomi;
public class BuildConfig {
public static int VERSION_CODE = -1;
public static String VERSION_NAME = "stub";
}