Hi... I have a project and we need to install new versions of apk from an FTP folder, if there is a new file there..
I connect to FTP Site and download APK.. After apk is downloaded, I use
Dim i as Intent
i.Initialize(i.ACTION_VIEW, "file://" & File.DirInternal & "/Trinoks/NewAPK/tmp.apk")
i.SetType("application/vnd.android.package-archive")
StartActivity(i)
it says
"There is a problem parsing the package"
and does not install new version...
Where is my problem ?