Merge "Hard code BuildConfig."
diff --git a/common/Android.mk b/common/Android.mk
index 0858ffd..18c5075 100644
--- a/common/Android.mk
+++ b/common/Android.mk
@@ -54,6 +54,7 @@
 
 LOCAL_MIN_SDK_VERSION := 23
 
-include $(LOCAL_PATH)/buildconfig.mk
+# TODO(b/77284273): generate build config after dagger supports libraries
+#include $(LOCAL_PATH)/buildconfig.mk
 
 include $(BUILD_STATIC_JAVA_LIBRARY)
diff --git a/common/src/com/android/tv/common/BuildConfig.java b/common/src/com/android/tv/common/BuildConfig.java
new file mode 100644
index 0000000..94ebf3b
--- /dev/null
+++ b/common/src/com/android/tv/common/BuildConfig.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2019 The Android Open Source 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 com.android.tv.common;
+
+/* Hard coded BuildConfig. */
+public final class BuildConfig {
+    public static final boolean DEBUG = true;
+    public static final boolean ENG = true;
+    public static final boolean NO_JNI_TEST = false;
+    private BuildConfig() {}
+}
\ No newline at end of file