Hello
I'm trying to send a .zip file to LineApp in my code as below, but the .zip seems broken and couldn't be opened on LineApp.
I used to send .mp3 to lineApp, it's totally ok. I was just wondering what's wrong with .zip file
Is 2.3MB zip file too big to be sent?
Thanks for help
Albert Lim
I'm trying to send a .zip file to LineApp in my code as below, but the .zip seems broken and couldn't be opened on LineApp.
I used to send .mp3 to lineApp, it's totally ok. I was just wondering what's wrong with .zip file
Is 2.3MB zip file too big to be sent?
Thanks for help
Albert Lim
B4X:
Sub ToLineApp_ZipFile( FullName As String)
Dim i As Intent, u As Uri, pm As PackageManager, theApp As String, ext As String
u.Parse("file://" & FullName )
i.Initialize(i.ACTION_SEND, "")
i.SetType("application/zip")
i.PutExtra("android.intent.extra.STREAM",u)
i.SetPackage("jp.naver.line.android")
StartActivity(i)
End Sub