Convert Constants.java to kotlin
This commit is contained in:
parent
f04708bde1
commit
14a6a520c9
2 changed files with 10 additions and 8 deletions
|
@ -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";
|
||||
}
|
|
@ -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"
|
||||
}
|
Loading…
Reference in a new issue