⌘K

Build Scalable Native Apps
Flexible Action & Dynamic UI

Change the app`s UI and action without any code changes, release new updates to millions of users simultaneously.

Control UI components & client action from the server

Nativeblocks offers native SDKs that empowers you to integrate your components and action directly into your app, using the programming language you love.

MainActivity.kt
NativeblocksManager.initialize(
    applicationContext = this,
    edition = NativeblocksEdition.Cloud(
        endpoint = NATIVEBLOCKS_API_URL,
        apiKey = NATIVEBLOCKS_API_KEY,
        developmentMode = true
    )
)

setContent {
    NativeblocksFrame(
        frameRoute = "/",
        loading = {
            NativeblocksLoading()
        },
        error = { message ->
            NativeblocksError(message)
        },
    )
}