gethwid Synchronous

  • get_hwid
  • get_user_identifier

Read the identifier supplied by the Android bridge. Use it only where a local integration specifically requires Kawaii’s device identifier. Treat it as an opaque value rather than deriving device properties from its text.

Syntax
Luau
gethwid() -> string

Parameters

This function takes no arguments.

Returns

string

An identifier string. Treat its format as opaque.

Example

Example
Luau
local identifier = gethwid()
-- Check availability without printing the identifier itself.
print("Identifier available:", #identifier > 0)
Kawaii documentation