We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
异常类型:demo中gradlew -PTINKER_ENABLE=false 传参无效,当做字符处理了
tinker版本:1.9.2
gradle版本:如:2.10
是否使用热更新SDK: TinkerPatch SDK
系统:如:Mac、Windows
def buildWithTinker() { return hasProperty("TINKER_ENABLE") ? Boolean.parseBoolean(TINKER_ENABLE) : ext.tinkerEnabled } 应该这样写,加个强转
The text was updated successfully, but these errors were encountered:
[tinker-demo] fix issue #757.
68192b6
No branches or pull requests
异常类型:demo中gradlew -PTINKER_ENABLE=false 传参无效,当做字符处理了
tinker版本:1.9.2
gradle版本:如:2.10
是否使用热更新SDK: TinkerPatch SDK
系统:如:Mac、Windows
def buildWithTinker() {
return hasProperty("TINKER_ENABLE") ? Boolean.parseBoolean(TINKER_ENABLE) : ext.tinkerEnabled
}
应该这样写,加个强转
The text was updated successfully, but these errors were encountered: