Android Open Source - sbicktAndroid Properties






From Project

Back to project page sbicktAndroid.

License

The source code is released under:

GNU General Public License

If you think the Android project sbicktAndroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package geotag.core;
// w w  w. j a  v  a  2  s. com
public class Properties {

  public static final String VISIBILITY_0 = "PRIVATE";
  public static final String VISIBILITY_1 = "PROTECTED";
  public static final String VISIBILITY_2 = "PUBLIC";
  
  public static final String URL_PROTOCOL = "http";
  public static final String URL_HOST = "sbickt.heroku.com";
  public static final String URL_FOLDER_INDEX = "/geotags/";
  public static final String URL_FOLDER_LIST = "/geotags/list.kml";
  public static final String URL_FOLDER_LOGIN = "/users/login";
  public static final int URL_PORT = 80;
  
  public static final String getUrl(){
    return URL_PROTOCOL + "://" + URL_HOST;// + ":" + Integer.toString(URL_PORT);
  }
  
  public static final String getUrlIndex(){
    return getUrl() + URL_FOLDER_INDEX;
  }
}




Java Source Code List

geotag.core.GeoTag.java
geotag.core.HttpHelper.java
geotag.core.KmlParser.java
geotag.core.Point3D.java
geotag.core.Properties.java
geotag.core.TagVisibility.java
geotag.example.sbickt.ArchiveActivity.java
geotag.example.sbickt.BackgroundView.java
geotag.example.sbickt.BicksActivity.java
geotag.example.sbickt.CameraActivity.java
geotag.example.sbickt.FriendsActivity.java
geotag.example.sbickt.MapViewActivity.java
geotag.example.sbickt.MenuView.java
geotag.example.sbickt.ProfileActivity.java
geotag.example.sbickt.SbicktAPI.java
geotag.example.sbickt.SbicktMessagesOverlay.java