mirror of
https://github.com/mihonapp/mihon.git
synced 2024-10-31 21:20:59 -04:00
11 lines
213 B
Kotlin
11 lines
213 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
|
||
|
}
|