Is the Android Tablet too old

Before I start trying to debug the App, I am wondering if the Tablet (T1-A21L) with Android-Version 4.4.4 ist too old.

The app can start, I can log on to our server, but other buttons seems to react, but does not execute the code behind it.

Any thoughts, any one ?

The minimum supported Android version, as per documentation, is 4.0.3 (see https://docs.coronalabs.com/guide/start/systemReqs/index.html).

The reason as to why the function(s) for the buttons don’t work might be due to problems in the function or the handle. If you first log in and then try pressing other buttons, perhaps something is left hanging around? Without seeing any code this is merely guessing.

It works on my android 4.4 devices which are really old. The app does not lag as bad as in 2016 as improvements has been made in Corona.

It would be best to check your code.

Thank you both - especially for the link to the requirements.

I will get debugging then…

:slight_smile:

It turned out that the cause of the problem was that I was trying to use network.request to an URL with https.

When I changed https to http in the URL it works.

The minimum supported Android version, as per documentation, is 4.0.3 (see https://docs.coronalabs.com/guide/start/systemReqs/index.html).

The reason as to why the function(s) for the buttons don’t work might be due to problems in the function or the handle. If you first log in and then try pressing other buttons, perhaps something is left hanging around? Without seeing any code this is merely guessing.

It works on my android 4.4 devices which are really old. The app does not lag as bad as in 2016 as improvements has been made in Corona.

It would be best to check your code.

Thank you both - especially for the link to the requirements.

I will get debugging then…

:slight_smile:

It turned out that the cause of the problem was that I was trying to use network.request to an URL with https.

When I changed https to http in the URL it works.