Gets the value of a specific config key. @param key The name of the config parameter you want to find. @param defaultValue What the default value would be.
(String key, String defaultValue)
| 136 | * @param defaultValue What the default value would be. |
| 137 | */ |
| 138 | public static String getConfigString(String key, String defaultValue) { |
| 139 | return config.getString(key, defaultValue); |
| 140 | } |
| 141 | |
| 142 | public static String[] getConfigStringArray(String key) { |
| 143 | String[] configStringArray = config.getStringArray(key); |
no outgoing calls