Back to project page android-ipcam.
The source code is released under:
GNU General Public License
If you think the Android project android-ipcam 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 cz.janchvala.android.ipcamera.preferences; /*from w w w .ja v a2s.c om*/ import org.androidannotations.annotations.sharedpreferences.DefaultString; import org.androidannotations.annotations.sharedpreferences.SharedPref; import cz.janchvala.android.ipcamera.R; /** * @author Jan.Chvala * Created on 22. 10. 2014. */ @SharedPref(value = SharedPref.Scope.APPLICATION_DEFAULT) public interface Preferences { @DefaultString(keyRes = R.string.rtsp_port, value = "8086") String port(); @DefaultString(keyRes = R.string.cdn_server_url, value = "http://10.0.0.12:8080") String cdnServerUrl(); }