Skip to content

Commit a982cd5

Browse files
committed
Initial Kotlin setup and migrate YogaConstants
1 parent 82671c0 commit a982cd5

5 files changed

Lines changed: 31 additions & 25 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,6 @@ local.properties
7373

7474
# Docusarus build
7575
.docusaurus
76+
77+
# Android Studio
78+
.idea

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

1415
allprojects {

java/build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

1415
group = "com.facebook.yoga"
@@ -47,6 +48,9 @@ android {
4748
res.srcDir("res")
4849
}
4950
}
51+
kotlinOptions {
52+
jvmTarget = "1.8"
53+
}
5054

5155
publishing {
5256
multipleVariants {
@@ -60,6 +64,7 @@ android {
6064
dependencies {
6165
implementation("com.google.code.findbugs:jsr305:3.0.2")
6266
implementation("com.facebook.soloader:soloader:0.10.5")
67+
implementation("androidx.core:core-ktx:1.16.0")
6368
testImplementation("junit:junit:4.12")
6469
}
6570

java/com/facebook/yoga/YogaConstants.java

Lines changed: 0 additions & 25 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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
12+
public val UNDEFINED: Float = Float.NaN
13+
14+
@JvmStatic
15+
public fun isUndefined(value: Float): Boolean = value.compareTo(UNDEFINED) == 0
16+
17+
@JvmStatic
18+
public fun isUndefined(value: YogaValue): Boolean = value.unit == YogaUnit.UNDEFINED
19+
20+
@JvmStatic
21+
public fun getUndefined(): Float = UNDEFINED
22+
}

0 commit comments

Comments
 (0)