We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c13746 commit 2445aa2Copy full SHA for 2445aa2
buildSrc/src/main/kotlin/LocalProperties.kt
@@ -3,7 +3,7 @@ import java.io.File
3
import java.util.*
4
5
class LocalProperties private constructor(file: File) : Properties() {
6
- val isRelease: Boolean get() = getProperty("physxjni.isRelease").toBoolean()
+ val isRelease: Boolean get() = getProperty("physxjni.isRelease", "true").toBoolean()
7
8
init {
9
if (file.exists()) {
0 commit comments