Hi, i use this to launch a apk instalation :
Work fine but do you know if it's possible to Install this APk automaticly and not show the instalation wizard?
thanks
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