JunYoung7

Update mainActivity code

1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project version="4">
3 + <component name="VcsDirectoryMappings">
4 + <mapping directory="$PROJECT_DIR$/.." vcs="Git" />
5 + </component>
6 +</project>
...\ No newline at end of file ...\ No newline at end of file
...@@ -85,7 +85,7 @@ public class MainActivity extends AppCompatActivity { ...@@ -85,7 +85,7 @@ public class MainActivity extends AppCompatActivity {
85 builder.setPositiveButton("예", new DialogInterface.OnClickListener() { 85 builder.setPositiveButton("예", new DialogInterface.OnClickListener() {
86 @Override 86 @Override
87 public void onClick(DialogInterface dialog, int which) { 87 public void onClick(DialogInterface dialog, int which) {
88 - Intent intent = new Intent (Intent.ACTION_VIEW, Uri.parse("http://114.108.69.93:8888/")); 88 + Intent intent = new Intent (Intent.ACTION_VIEW, Uri.parse("http://192.168.0.3:3000/"));
89 startActivity(intent); 89 startActivity(intent);
90 } 90 }
91 }); 91 });
...@@ -116,7 +116,7 @@ public class MainActivity extends AppCompatActivity { ...@@ -116,7 +116,7 @@ public class MainActivity extends AppCompatActivity {
116 116
117 117
118 public void onButton1Clicked(View view){ 118 public void onButton1Clicked(View view){
119 - Intent intent = new Intent (Intent.ACTION_VIEW, Uri.parse("http://114.108.69.93:8888/")); 119 + Intent intent = new Intent (Intent.ACTION_VIEW, Uri.parse("http://192.168.0.3:3000/"));
120 startActivity(intent); 120 startActivity(intent);
121 } 121 }
122 122
......