mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-14 06:22:49 +01:00
12 lines
214 B
Kotlin
12 lines
214 B
Kotlin
package eu.kanade.tachiyomi
|
|
|
|
/**
|
|
* Used by extensions.
|
|
*
|
|
* @since extension-lib 1.3
|
|
*/
|
|
object AppInfo {
|
|
fun getVersionCode() = BuildConfig.VERSION_CODE
|
|
fun getVersionName() = BuildConfig.VERSION_NAME
|
|
}
|