Remote config is used to manage radio streaming url, cover image, background, social menu and other configurations from JSON file uploaded to your web hosting or server.
WITH REMOTE JSON :
In the Config.java, set true value for enable remote json
Upload config.json to your hosting and get the json url
Start making configurations for applications such as radio configuration, settings, ads and social menu
Config.java
//set true to enable remote config from json url, or set false for offline json config from assets
public static final boolean ENABLE_REMOTE_JSON = true;
//only used when remote json is enabled
public static final String JSON_URL = "https://solodroid.net/demo/your_single_radio/config.json";
WITHOUT REMOTE JSON (OFFLINE) :
In the Config.java, set false value for enable remote json
Open app → assets → config.json
Start making configurations for applications such as radio configuration, settings, ads and social menu
Config.java
//set true to enable remote config from json url, or set false for offline json config from assets
public static final boolean ENABLE_REMOTE_JSON = true;