mirror of
https://github.com/tachiyomiorg/tachiyomi-extensions-inspector.git
synced 2024-12-26 00:31:49 +01:00
Use Kotlin for BuildConfig class stub
This commit is contained in:
parent
c39875ad55
commit
e8b9c36c76
@ -59,7 +59,7 @@ sourceSets {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// should be bumped with each stable release
|
// should be bumped with each stable release
|
||||||
val inspectorVersion = "v0.5.0"
|
val inspectorVersion = "v0.5.1"
|
||||||
|
|
||||||
// counts commit count on master
|
// counts commit count on master
|
||||||
val inspectorRevision = runCatching {
|
val inspectorRevision = runCatching {
|
||||||
|
@ -1,6 +0,0 @@
|
|||||||
package eu.kanade.tachiyomi;
|
|
||||||
|
|
||||||
public class BuildConfig {
|
|
||||||
public static int VERSION_CODE = -1;
|
|
||||||
public static String VERSION_NAME = "stub";
|
|
||||||
}
|
|
@ -0,0 +1,8 @@
|
|||||||
|
package eu.kanade.tachiyomi
|
||||||
|
|
||||||
|
class BuildConfig {
|
||||||
|
companion object {
|
||||||
|
const val VERSION_NAME = "stub"
|
||||||
|
const val VERSION_CODE = -1
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user