Application package
Updated: Dec 3, 2025
The
Platform SDK Application Package manages app lifecycle and inter-app interactions on the Meta Quest platform. The package retrieves information about installed applications including version details, launches other Meta Quest applications with deep linking support, and manages app downloads and updates programmatically.
Applications can query installation status, check version information, and facilitate cross-app navigation and integration scenarios.
Add the following to your project’s ./gradle/libs.versions.toml file:
[libraries]
// Existing lines
application-kotlin = { module = "com.meta.horizon.platform.sdk:application-kotlin", version.ref = "horizonPlatformSdk" }
dependencies {
// Existing lines
implementation(libs.application.kotlin)
}
In Android Studio, click File > Sync Project with Gradle Files to install the package.
Click Build > Generate App Bundles or APKs > Generate APKs.
In the “External Libraries” section of your project, confirm that these packages are listed.
com.meta.horizon.platform.sdk:core-kotlin
com.meta.horizon.platform.sdk:application-kotlin
Now you can initialize the Platform SDK and use Application package functions in your app.