I am creating an android app in java that uses room SQLite to store data. The app have two tables:
I want to add default values for course_name entity so when the user open the app find the courses.
For example :
Math - Sport - Art - Music
@Entity
public class CoursesTable {
@PrimaryKey(autoGenerate = true)
int course_id;
String course_name;
}
Run Code Online (Sandbox Code Playgroud)