Home | History | Annotate | Download | only in recipeassistant
      1 /*
      2  * Copyright (C) 2014 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.example.android.wearable.recipeassistant;
     18 
     19 public final class Constants {
     20     private Constants() {
     21     }
     22     public static final String RECIPE_LIST_FILE = "recipelist.json";
     23     public static final String RECIPE_NAME_TO_LOAD = "recipe_name";
     24 
     25     public static final String RECIPE_FIELD_LIST = "recipe_list";
     26     public static final String RECIPE_FIELD_IMAGE = "img";
     27     public static final String RECIPE_FIELD_INGREDIENTS = "ingredients";
     28     public static final String RECIPE_FIELD_NAME = "name";
     29     public static final String RECIPE_FIELD_SUMMARY = "summary";
     30     public static final String RECIPE_FIELD_STEPS = "steps";
     31     public static final String RECIPE_FIELD_TEXT = "text";
     32     public static final String RECIPE_FIELD_TITLE = "title";
     33     public static final String RECIPE_FIELD_STEP_TEXT = "step_text";
     34     public static final String RECIPE_FIELD_STEP_IMAGE = "step_image";
     35 
     36     static final String ACTION_START_COOKING =
     37             "com.example.android.wearable.recipeassistant.START_COOKING";
     38     public static final String EXTRA_RECIPE = "recipe";
     39 
     40     public static final int NOTIFICATION_ID = 0;
     41     public static final int NOTIFICATION_IMAGE_WIDTH = 280;
     42     public static final int NOTIFICATION_IMAGE_HEIGHT = 280;
     43 }
     44