Back to project page Butler.
The source code is released under:
Apache License
If you think the Android project Butler listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Copyright 2014 Ricky Tobing/*from ww w. j a va2s. c o m*/ * * 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 com.bingzer.android; /** * List of convenient bundle keys */ public final class BundleKeys { // -- APP public static final String BINGZER = "Bingzer"; public static final String ANDROID = "Android"; // -- bundle key public static final String BUNDLE_KEY_ID = "com.bingzer.android.bundleKey.id"; public static final String BUNDLE_KEY_URI = "com.bingzer.android.bundleKey.uri"; public static final String BUNDLE_KEY_NAME = "com.bingzer.android.bundleKey.name"; public static final String BUNDLE_KEY_TITLE = "com.bingzer.android.bundleKey.title"; public static final String BUNDLE_KEY_DESC = "com.bingzer.android.bundleKey.description"; public static final String BUNDLE_KEY_MODE = "com.bingzer.android.bundleKey.mode"; public static final String BUNDLE_KEY_TYPE = "com.bingzer.android.bundleKey.type"; public static final String BUNDLE_KEY_MESSAGE = "com.bingzer.android.bundleKey.message"; public static final String BUNDLE_KEY_RESULT = "com.bingzer.android.bundleKey.result"; public static final String BUNDLE_KEY_SOURCE = "com.bingzer.android.bundleKey.source"; public static final String BUNDLE_KEY_CATEGORY = "com.bingzer.android.bundleKey.category"; public static final String BUNDLE_KEY_VALUE = "com.bingzer.android.bundleKey.value"; public static final String BUNDLE_KEY_UPDATE = "com.bingzer.android.bundleKey.update"; public static final String BUNDLE_KEY_INVALIDATE = "com.bingzer.android.bundleKey.invalidate"; public static final String BUNDLE_KEY_ABOUT = "com.bingzer.android.bundleKey.about"; // -- meta-data constants public static final String META_KEY_APPSTORE = "com.bingzer.android.meta.appStoreName"; }