/* * Copyright 2013-2015 The GDG Frisbee Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.gdg.frisbee.android; public class Const { //Special Events public static final String EXTRA_TAGGED_EVENT = "org.gdg.frisbee.TAGGED_EVENT"; public static final String EXTRA_ALARM_FOR_ALL = "org.gdg.frisbee.ALARM_FOR_ALL"; public static final String EXTRA_TAGGED_EVENT_CACHEKEY = "org.gdg.frisbee.TAGGED_EVENT_CACHEKEY"; public static final String EXTRA_EVENT_ID = "EXTRA_EVENT_ID"; public static final String EXTRA_SECTION = "EXTRA_SECTION"; public static final String URL_DEVELOPERS_GOOGLE_COM = "https://developers.google.com"; public static final String URL_HELP = "https://support.google.com/developergroups"; public static final String URL_GDG_RESOURCE_FOLDER = "https://drive.google.com/drive/#folders/0B55wxScz_BJtWW9aUnk2LUlNdEk"; public static final String URL_GDG_WISDOM_BOOK = "http://wisdom.gdgroups.org"; public static final String URL_GDG_LEADS_GPLUS_COMMUNITY = "https://plus.google.com/communities/101119632372181012379"; public static final String URL_GDGROUPS_ORG = "https://gdgroups.org"; public static final String PATH_GDGROUPS_ORG_EVENT = "event"; //Keys public static final String EXTRA_PLUS_ID = "plus_id"; public static final String EXTRA_CHAPTER_ID = "org.gdg.frisbee.CHAPTER"; private Const() { } }