File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,3 +73,6 @@ local.properties
7373
7474# Docusarus build
7575.docusaurus
76+
77+ # Android Studio
78+ .idea
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99 id(" com.android.library" ) version " 8.7.1" apply false
1010 id(" com.android.application" ) version " 8.7.1" apply false
1111 id(" io.github.gradle-nexus.publish-plugin" ) version " 1.3.0"
12+ id ' org.jetbrains.kotlin.android' version ' 2.2.0' apply false
1213}
1314
1415allprojects {
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ plugins {
99 id(" com.android.library" )
1010 id(" maven-publish" )
1111 id(" signing" )
12+ id(" org.jetbrains.kotlin.android" )
1213}
1314
1415group = " com.facebook.yoga"
@@ -48,6 +49,10 @@ android {
4849 }
4950 }
5051
52+ kotlinOptions {
53+ jvmTarget = " 1.8"
54+ }
55+
5156 publishing {
5257 multipleVariants {
5358 withSourcesJar()
@@ -60,6 +65,7 @@ android {
6065dependencies {
6166 implementation(" com.google.code.findbugs:jsr305:3.0.2" )
6267 implementation(" com.facebook.soloader:soloader:0.10.5" )
68+ implementation(" androidx.core:core-ktx:1.16.0" )
6369 testImplementation(" junit:junit:4.12" )
6470}
6571
Load diff This file was deleted.
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) Meta Platforms, Inc. and affiliates.
3+ *
4+ * This source code is licensed under the MIT license found in the
5+ * LICENSE file in the root directory of this source tree.
6+ */
7+
8+ package com.facebook.yoga
9+
10+ public object YogaConstants {
11+ @JvmField public val UNDEFINED : Float = Float .NaN
12+
13+ @JvmStatic public fun isUndefined (value : Float ): Boolean = value.compareTo(UNDEFINED ) == 0
14+
15+ @JvmStatic public fun isUndefined (value : YogaValue ): Boolean = value.unit == YogaUnit .UNDEFINED
16+
17+ @JvmStatic public fun getUndefined (): Float = UNDEFINED
18+ }
You can’t perform that action at this time.
0 commit comments