android.database.sqlite.SQLiteCantOpenDatabaseException: unknown error (code 14): Could not open database

Add this permission to your project’s AndroidManifest.xml file, in the manifest tag (which should be the top level tag).

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

Leave a Comment