SimpleSQLite does not specify actvityMetadata
and many more compilation errors
Please show the full error when compile fails
Also we might need to see how you are using SimpleSQLite in your project (blocks etc.)
Please show the complete error message
I note you are running your own AppInventor ? Have you been able to compile other projects ?
Yes, I had compiled without problems in my own APP Inventor, but with the Bennedum extension
The complete list of errors is very long ...
Which is why we need to see all of it.
You should be able to click and select it all to copy it here.
I do not believe this has anything to do with the SimpleSQLite extension.
Export your aia project, then use the real online AppInventor and try to compile there. Does this work, if not, what error does it return?
Or share your aia project here, so it can be reviewed and tested.
Thanks, it seems to work.
Thanks again
I have another problem with my project:
Using the online server and AI2 Companion or USB cable all is ok in the smartphone, BUT building the apk and using it give me an error.
The project only have the initialization screen, I send the blocks and the error screen.
Excuse my poor english. I speak spanish.
Structure of evento: id INTEGER, fecha_hora TEXT, estado TEXT
My guess is that you do not handle whether your table has records or not. With the APK a new empty database and new empty table are created.
Do your initialising and testing something like this:
The two tests in the if statement will check first if the table exists, and then second if the table contains any records. If it has records then you can run your query, if not then you need to add some data...
Thanks you very much. I'm sure are you right.