Convert Constants.java to kotlin

master
dtvv 2018-10-31 15:22:44 -06:00
parent e562d322d7
commit f4759abc72
2 changed files with 10 additions and 8 deletions

View File

@ -1,8 +0,0 @@
package cy.agorise.bitsybitshareswallet.utils;
public class Constants {
/**
* Key used to store the night mode setting into the shared preferences
*/
public static final String KEY_NIGHT_MODE_ACTIVATED = "key_night_mode_activated";
}

View File

@ -0,0 +1,10 @@
package cy.agorise.bitsybitshareswallet.utils
object Constants {
/**
* Key used to store the night mode setting into the shared preferences
*/
val KEY_NIGHT_MODE_ACTIVATED = "key_night_mode_activated"
}