| Index: sky/apk/stocks/org/domokit/stocks/StocksActivity.java
|
| diff --git a/sky/apk/stocks/org/domokit/stocks/StocksActivity.java b/sky/apk/stocks/org/domokit/stocks/StocksActivity.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d167394d437b9cd0b716ad0f729df58c5388d382
|
| --- /dev/null
|
| +++ b/sky/apk/stocks/org/domokit/stocks/StocksActivity.java
|
| @@ -0,0 +1,23 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +package org.domokit.stocks;
|
| +
|
| +import android.os.Bundle;
|
| +
|
| +import org.domokit.sky.shell.SkyActivity;
|
| +
|
| +/**
|
| + * Main activity for Stocks.
|
| + */
|
| +public class StocksActivity extends SkyActivity {
|
| + /**
|
| + * @see android.app.Activity#onCreate(android.os.Bundle)
|
| + */
|
| + @Override
|
| + protected void onCreate(Bundle savedInstanceState) {
|
| + super.onCreate(savedInstanceState);
|
| + loadUrl("https://domokit.github.io/sky/examples/stocks/index.sky");
|
| + }
|
| +}
|
|
|