This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class DatabaseHelper extends SQLiteOpenHelper { | |
public static final String DATABASE_NAME = "utilities.db"; | |
private static final int DATABASE_VERSION = 3; | |
public DatabaseHelper(Context context) { | |
super(context, DATABASE_NAME, null, DATABASE_VERSION); | |
} | |
@Override |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<color name="material_red_50">#ffebee</color> | |
<color name="material_red_100">#ffcdd2</color> | |
<color name="material_red_200">#ef9a9a</color> | |
<color name="material_red_300">#e57373</color> | |
<color name="material_red_400">#ef5350</color> | |
<color name="material_red_500">#f44336</color> | |
<color name="material_red_600">#e53935</color> |