| Index: remoting/android/host/src/org/chromium/chromoting/host/RemotingApplication.java
|
| diff --git a/remoting/android/host/src/org/chromium/chromoting/host/RemotingApplication.java b/remoting/android/host/src/org/chromium/chromoting/host/RemotingApplication.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d695041ca1c18cd4450b2495a32c87df4eee8f58
|
| --- /dev/null
|
| +++ b/remoting/android/host/src/org/chromium/chromoting/host/RemotingApplication.java
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2016 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.chromium.chromoting.host;
|
| +
|
| +import android.app.Application;
|
| +
|
| +import org.chromium.chromoting.host.jni.Host;
|
| +
|
| +/** Main context for the application. */
|
| +public class RemotingApplication extends Application {
|
| + @Override
|
| + public void onCreate() {
|
| + Host.loadLibrary(this);
|
| + }
|
| +}
|
|
|