Logo
Sign in

Welcome to Digital Turbine

  1. Digital Turbine
  2. DT Ignite Services
  3. Code Snippets
  4. Install by URI
January 20, 2023 19:38
Follow

Install by URI without Tracking Installation Status

// Initialization

// Install application via uri string and do not listen to updates
val file = File("${context.filesDir}", "fortnite.apk")
val uriString = file.toUri().toString()

IgniteServiceSdk.instance().install(uriString)

// ...

Back to Top ⇧

© Digital Turbine