赞
踩
package com.leon.leonlib
import androidx.annotation.Keep
/**
* 放置被代码混淆掉 ,在Kotlin中可以使用@Keep注解
*/
@Keep
object LeonAPI {
fun getCurrentTime(): String {
return "系统当前时间:${LeonTime().time()}"
}
}
package com.leon.leonlib
import java.text.SimpleDateFormat
import java.util.Calendar
class LeonTime {
fun time(): String {
val currentDateTime = Calendar.getInstance().time
val formatter = SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
return formatter.format(currentDateTime)
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。