bluejoyq

change logo and loading screen

...@@ -14,10 +14,10 @@ ...@@ -14,10 +14,10 @@
14 ], 14 ],
15 "version": "1.0.0", 15 "version": "1.0.0",
16 "orientation": "portrait", 16 "orientation": "portrait",
17 - "icon": "./assets/icon.png", 17 + "icon": "./assets/logo.png",
18 "splash": { 18 "splash": {
19 - "image": "./assets/splash.png", 19 + "image": "./assets/loading.png",
20 - "resizeMode": "contain", 20 + "resizeMode": "contain",
21 "backgroundColor": "#ffffff" 21 "backgroundColor": "#ffffff"
22 }, 22 },
23 "updates": { 23 "updates": {
......
...@@ -35,8 +35,8 @@ export const submit = (text) => async (dispatch) => { ...@@ -35,8 +35,8 @@ export const submit = (text) => async (dispatch) => {
35 },10000); 35 },10000);
36 36
37 try{ 37 try{
38 - const response = await readTest() 38 + // const response = await readTest()
39 - //const response = await sendSearch(text.nativeEvent.text); 39 + const response = await sendSearch(text.nativeEvent.text);
40 40
41 // 에러시 error throw 41 // 에러시 error throw
42 if(response.return_code == -1){throw new Error(response.error_code)}; 42 if(response.return_code == -1){throw new Error(response.error_code)};
......