34071ee8a58b049d9d1c96001481aa3f96d63a32
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / runtimelib / src / org / xwalk / runtime / lib / RuntimeLibApplication.java
1 // Copyright (c) 2013 Intel Corporation. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.xwalk.runtime.lib;
6
7 import android.app.Application;
8
9 public class RuntimeLibApplication extends Application {
10
11     @Override
12     public void onCreate() {
13         super.onCreate();
14     }
15 }
16