在线参数
功能介绍
Android代码集成
更新机制
集成代码
/**
* 获取在线参数
*
* @param ctx context上下文
* @param key 特定的key
* @return 特定key的值,若找不到赠返回null
*/
public static String getCustomProperty(Context ctx, String key);
/**
* 获取在线参数
*
* @param ctx context上下文
* @param key 特定的key
* @param defaultValue 默认值
* @return 特定key的值,若找不到赠返回defaultValue
*/
public static String getCustomProperty(Context ctx, String key, String defaultValue);iOS代码集成
Last updated