diff --git a/app/src/debug/res/values/google_maps_api.xml b/app/src/debug/res/values/google_maps_api.xml
new file mode 100644
index 0000000..475fcba
--- /dev/null
+++ b/app/src/debug/res/values/google_maps_api.xml
@@ -0,0 +1,24 @@
+
+
+ AIzaSyCgLZP1YMHv_-Sri0H6_xE6pRKl9he2Lw8
+
diff --git a/app/src/main/java/com/example/h_mal/mochee/Config.java b/app/src/main/java/com/example/h_mal/mochee/Config.java
new file mode 100644
index 0000000..5c19fef
--- /dev/null
+++ b/app/src/main/java/com/example/h_mal/mochee/Config.java
@@ -0,0 +1,28 @@
+package com.example.h_mal.mochee;
+
+import android.view.View;
+import android.view.ViewGroup;
+import android.widget.EditText;
+
+/**
+ * Created by h_mal on 14/01/2018.
+ */
+
+public class Config {
+
+ private Config() {}
+
+ public static final String PAYPAL_CLIENT_ID = "AXp9Ak3gihwYll_W1ny-jee4FQfCZ4dknR7aSCKPSpQWi4HRYg2CHCcJ7zvUL2dBLEulTke67-msQUwL";
+
+ public static final void clearForm(ViewGroup group) {
+ for (int i = 0, count = group.getChildCount(); i < count; ++i) {
+ View view = group.getChildAt(i);
+ if (view instanceof EditText) {
+ ((EditText)view).setText("");
+ }
+
+ if(view instanceof ViewGroup && (((ViewGroup)view).getChildCount() > 0))
+ clearForm((ViewGroup)view);
+ }
+ }
+}
diff --git a/app/src/main/res/drawable/cloth.png b/app/src/main/res/drawable/cloth.png
new file mode 100644
index 0000000..632ff78
Binary files /dev/null and b/app/src/main/res/drawable/cloth.png differ
diff --git a/app/src/main/res/drawable/downarrow.png b/app/src/main/res/drawable/downarrow.png
new file mode 100644
index 0000000..4021b4c
Binary files /dev/null and b/app/src/main/res/drawable/downarrow.png differ
diff --git a/app/src/main/res/drawable/line.xml b/app/src/main/res/drawable/line.xml
new file mode 100644
index 0000000..900a15f
--- /dev/null
+++ b/app/src/main/res/drawable/line.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/mocheeloading.png b/app/src/main/res/drawable/mocheeloading.png
new file mode 100644
index 0000000..63b6ead
Binary files /dev/null and b/app/src/main/res/drawable/mocheeloading.png differ
diff --git a/app/src/main/res/drawable/pen.png b/app/src/main/res/drawable/pen.png
new file mode 100644
index 0000000..b74661b
Binary files /dev/null and b/app/src/main/res/drawable/pen.png differ
diff --git a/app/src/main/res/drawable/tailor.png b/app/src/main/res/drawable/tailor.png
new file mode 100644
index 0000000..0208602
Binary files /dev/null and b/app/src/main/res/drawable/tailor.png differ
diff --git a/app/src/main/res/drawable/world.png b/app/src/main/res/drawable/world.png
new file mode 100644
index 0000000..0604790
Binary files /dev/null and b/app/src/main/res/drawable/world.png differ
diff --git a/app/src/release/res/values/google_maps_api.xml b/app/src/release/res/values/google_maps_api.xml
new file mode 100644
index 0000000..1ef79e9
--- /dev/null
+++ b/app/src/release/res/values/google_maps_api.xml
@@ -0,0 +1,20 @@
+
+
+ YOUR_KEY_HERE
+