Pre-built SQLite .db don't appear on APK export for Android

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Riderick

I have a pre-made SQLite database that I want to export inside my APK but I can’t see it inside it or in my file system? What am I missing?

const SQLite = preload("res://addons/godot-sqlite/bin/gdsqlite.gdns")
var db
var db_name = "res://datastore/database"

func _ready():
if OS.get_name() in ["Android"]:
	copy_data_to_user()
	db_name = "user://datastore/database"

Thank you very much!

:bust_in_silhouette: Reply From: Riderick

The .db is not considered a resource within godot so you have to add the file when exporting to any platform. e.g.: (*.db)