I'm new in android development and for now I would like to create an app that uses a SQLite DB. I'm having trouble to understand one thing about the PATH of the DB. I saw this on a guide to succeed in what I want, take a look:
public class DataBaseHelper extends SQLiteOpenHelper{
//The Android's default system path of your application database.
private static String DB_PATH = "/data/data/YOUR_PACKAGE/databases/";
private static String DB_NAME = "myDBName";
...
}
When it says path there, it's the path of the SQLite db file on my desktop? That's is gonna be used while I'm running at the AVD? And.. when I change the db to my tablet ("localhost" of the db this way) I need to specify the path inside my tablet?am I correct?