Instal APK automaticly ?

jnbarban

Member
Licensed User
Longtime User
Hi, i use this to launch a apk instalation :

B4X:
Dim iIntent As Intent 
iIntent.Initialize(iIntent.ACTION_VIEW, "file:///sdcard/MyAPK.apk")
iIntent.SetType("application/vnd.android.package-archive")
StartActivity(iIntent)

Work fine but do you know if it's possible to Install this APk automaticly and not show the instalation wizard?

thanks
 
Top