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 6fcabb1 commit 1d183cbCopy full SHA for 1d183cb
okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt
@@ -186,7 +186,8 @@ open class Platform {
186
187
// This explicit check avoids activating in Android Studio with Android specific classes
188
// available when running plugins inside the IDE.
189
- val isAndroid = "Dalvik" == System.getProperty("java.vm.name")
+ val isAndroid: Boolean
190
+ get() = "Dalvik" == System.getProperty("java.vm.name")
191
192
private val isConscryptPreferred: Boolean
193
get() {
0 commit comments