package com.dm.wallpaper.board.utils; /* * Wallpaper Board * * Copyright (c) 2017 Dani Mahardhika * * 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. */ public class Extras { public static final String TAG_WALLPAPERS = "wallpapers"; public static final String TAG_WALLPAPER_SEARCH = "wallpaperSearch"; public static final String TAG_FAVORITES = "favorites"; public static final String TAG_SETTINGS = "settings"; public static final String TAG_ABOUT = "about"; public static final String EXTRA_POSITION = "position"; public static final String EXTRA_URL = "url"; public static final String EXTRA_NAME = "name"; public static final String EXTRA_AUTHOR = "author"; public static final String EXTRA_IMAGE = "image"; public static final String EXTRA_RESUMED = "resumed"; public static final String EXTRA_SIZE = "size"; public static final String EXTRA_PACKAGE_NAME = "packageName"; public static final String EXTRA_KEY = "key"; public static final String EXTRA_PRODUCT_ID = "productId"; public static final String EXTRA_TYPE = "type"; public static final int TYPE_CONTRIBUTORS = 1; public static final int TYPE_DASHBOARD_CONTRIBUTORS = 2; public static final int TYPE_DASHBOARD_TRANSLATOR = 3; }