浏览代码

[메인][Common] 테스트 패널 디벨롭/운영과 물리적(flavor)로 분리

hyodong.min 6 年之前
父节点
当前提交
1455bb85b4

文件差异内容过多而无法显示
+ 275 - 0
app/src/dev/java/kr/co/zumo/app/lifeplus/view/screen/main/MainFragment.java


app/src/main/res/layout/main_test_layout.xml → app/src/dev/res/layout/main_test_layout.xml


文件差异内容过多而无法显示
+ 2 - 242
app/src/main/java/kr/co/zumo/app/lifeplus/view/screen/main/MainFragment.java


+ 24 - 0
app/src/product/java/kr/co/zumo/app/lifeplus/view/screen/main/MainFragment.java

@@ -0,0 +1,24 @@
+/*
+ * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
+ */
+package kr.co.zumo.app.lifeplus.view.screen.main;
+
+/**
+ * MainFragment
+ * <pre>
+ * </pre>
+ *
+ * @author 민효동
+ * @version 1.0
+ * @history 민효동   [2018. 10. 15.]   [최초 작성]
+ * @since 2018. 10. 15.
+ */
+public class MainFragment extends MainDebugFragment implements IMainView {
+
+  /***********************************
+   * debug
+   ***********************************/
+
+  @Deprecated
+  protected void debug() { }
+}

+ 11 - 0
app/src/product/res/layout/main_test_layout.xml

@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<merge
+  xmlns:android="http://schemas.android.com/apk/res/android"
+  android:id="@+id/layout_test_all"
+  android:layout_width="match_parent"
+  android:layout_height="wrap_content"
+  android:gravity="bottom"
+  android:orientation="vertical">
+<!-- 릴리즈 버젼에 테스트 패널 없음 -->
+</merge>