mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-16 15:32:50 +01: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
|
||
|
}
|