Back to project page umbrella.alert.
The source code is released under:
GNU General Public License
If you think the Android project umbrella.alert 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 macbury.umbrella.managers; /* www .ja v a 2s . com*/ import android.util.Log; import macbury.umbrella.UmbrellaApplication; /** * Created by macbury on 26.08.14. */ public class ServicesManager { private static final String TAG = "ServicesManager"; private final UmbrellaApplication application; public ServicesManager(UmbrellaApplication application) { this.application = application; } public void checkWeather(boolean forceRefresh) { Log.i(TAG, "Start check weather service"); application.startService(application.intents.checkWeatherService(forceRefresh)); } }