| Index: sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
|
| diff --git a/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java b/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
|
| index e15982a41931bfd6a6b2ce4591eabc292b166535..43ac7c83daa89c8376b5c17ddaba9aecd7d42c3f 100644
|
| --- a/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
|
| +++ b/sky/shell/apk/src/org/domokit/sky/shell/SkyShellActivity.java
|
| @@ -24,7 +24,9 @@ public class SkyShellActivity extends Activity {
|
| Intent intent = getIntent();
|
| if (Intent.ACTION_VIEW.equals(intent.getAction())) {
|
| Uri skyUri = intent.getData();
|
| - Uri httpsUri = skyUri.buildUpon().scheme("https").build();
|
| + // TODO(eseidel): This should use https, but that makes localhost
|
| + // testing very hard.
|
| + Uri httpsUri = skyUri.buildUpon().scheme("http").build();
|
| url = httpsUri.toString();
|
| }
|
|
|
|
|