[Solved] I cannot get the app to construct an sqlite database
You aren’t, according to the code, acessing(opening) the database. You are just instantiating the DatabseHelper in MainActivity i.e. mydb = new CrdDBHelper(this); It is not until an attempt is made to open the database (which is frequently implicit) that the database is actually created. A simple way would be to force an open when instantiating … Read more