this simple test works as expected on my normal devices (pixel3A, android 12, motorola 5 something, etc).
however, when i deploy it to a tablet obtained from a faraway asian land and allegedly running android 9
i get this:
with the instruction to "Please fix". what does it want me to fix?
B4X:
Sub Globals
'These global dimiables will be redeclared each time the activity is created.
Dim ph As Phone
End Sub
Sub Activity_Create(FirstTime As Boolean)
Log(ph.SdkVersion)
Dim url As String = "https://www.google.com"
Dim j As HttpJob
j.Initialize("", Me)
j.Download(url)
Wait For (j) Jobdone(j As HttpJob)
If j.Success Then
Log(j.GetString)
Else
Log(j.ErrorMessage)
End If
j.Release
End Sub
however, when i deploy it to a tablet obtained from a faraway asian land and allegedly running android 9
i get this:
B4X:
B4A Version: 11.20
Parsing code. (0.01s)
Java Version: 11
Building folders structure. (0.06s)
Compiling code. (0.02s)
Compiling layouts code. (0.00s)
Organizing libraries. (0.00s)
(AndroidX SDK)
Compiling resources (0.65s)
Linking resources (0.66s)
Compiling generated Java code. (0.29s)
Convert byte code - optimized dex. (5.14s)
Copying libraries resources (0.46s)
ZipAlign file. (0.02s)
Signing package file (private key). (0.75s)
Installing file to device. Error
Performing Push Install
oktest.apk: 1 file pushed, 0 skipped. 6.0 MB/s (1500497 bytes in 0.239s)
WARNING: linker: libvc1dec_sa.ca7.so has text relocations. This is wasting memory and is a security risk. Please fix.
WARNING: linker: libvc1dec_sa.ca7.so has text relocations. This is wasting memory and is a security risk. Please fix.
pkg: /data/local/tmp/oktest.apk
Failure [INSTALL_FAILED_OLDER_SDK]
with the instruction to "Please fix". what does it want me to fix?