Home | History | Annotate | Download | only in gradleapp
      1 package org.robolectric.gradleapp;
      2 
      3 public class BuildConfig {
      4   // The build system creates a BuildConfig for each flavor/build type combination,
      5   // in a different intermediate directory in the build tree.
      6   // APPLICATION_ID is unique for each combination. The R class is always found
      7   // in the same package as BuildConfig.
      8   public static final String APPLICATION_ID = "org.robolectric.gradleapp.demo";
      9 
     10   public static final String BUILD_TYPE = "type1";
     11   public static final String FLAVOR = "flavor1";
     12 }
     13