Back to project page android-AppPuntalRadio.
The source code is released under:
GNU General Public License
If you think the Android project android-AppPuntalRadio listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.ivanob.puntalradio.model; /*from w w w . java 2 s . c o m*/ /** * Reads the .pls file to provide the configuration to connect to the * station * @author ivan * */ public class StationConfigManager { private static StationConfigManager instance = null; public static StationConfigManager getInstance() { if(instance == null) { instance = new StationConfigManager(); } return instance; } private StationConfigManager(){} public String getStationURL(){ return "http://5.39.76.68:8036/"; } }