remove a redundant constant
This commit is contained in:
parent
0c7c5f22c9
commit
0dcc77cdc2
|
@ -1,14 +1,13 @@
|
|||
package com.simplemobiletools.filemanager.helpers
|
||||
|
||||
val PATH = "path"
|
||||
const val PATH = "path"
|
||||
|
||||
// shared preferences
|
||||
val SHOW_HIDDEN = "show_hidden"
|
||||
val HOME_FOLDER = "home_folder"
|
||||
val FAVORITES = "favorites"
|
||||
val SORT_ORDER = "sort_order"
|
||||
val SORT_FOLDER_PREFIX = "sort_folder_"
|
||||
val TEMPORARILY_SHOW_HIDDEN = "temporarily_show_hidden"
|
||||
val IS_ROOT_AVAILABLE = "is_root_available"
|
||||
val ENABLE_ROOT_ACCESS = "enable_root_access"
|
||||
val LS_HAS_HARD_LINKS_COLUMN = "ls_has_hard_links_column"
|
||||
const val SHOW_HIDDEN = "show_hidden"
|
||||
const val HOME_FOLDER = "home_folder"
|
||||
const val FAVORITES = "favorites"
|
||||
const val SORT_ORDER = "sort_order"
|
||||
const val SORT_FOLDER_PREFIX = "sort_folder_"
|
||||
const val TEMPORARILY_SHOW_HIDDEN = "temporarily_show_hidden"
|
||||
const val IS_ROOT_AVAILABLE = "is_root_available"
|
||||
const val ENABLE_ROOT_ACCESS = "enable_root_access"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
|
||||
buildscript {
|
||||
ext.kotlin_version = '1.2.0'
|
||||
ext.kotlin_version = '1.2.21'
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
|
|
Loading…
Reference in New Issue