pantoken / platforms/android/src / toAndroid
Function: toAndroid()
toAndroid(
tokens,options):Promise<string[]>
Experimental
Emit Android resource XML for an explicit token IR.
Parameters
tokens
readonly Token[]
options
Returns
Promise<string[]>
The paths of the written colors.xml and dimens.xml.
Examples
Emit a specific theme's IR
ts
import { toAndroid } from "@pantoken/android";
import { byTheme } from "@pantoken/tokens";
const [colors, dimens] = await toAndroid(byTheme("canvas"), { outDir: "./app/src/main" });
// writes ./app/src/main/res/values/colors.xml and dimens.xmlDark mode with icon VectorDrawables
ts
import { toAndroid } from "@pantoken/android";
import { byTheme } from "@pantoken/tokens";
await toAndroid(byTheme("rebrand"), {
outDir: "./app/src/main",
mode: "dark",
icons: ["add", "check"], // also emits res/drawable/ic_add.xml, ic_check.xml
});