blob: cd3418081f26d3c5d8f7d0523b8c77ebe654d491 [file] [log] [blame]
/*
* Copyright 2018 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
package org.skia.skottie;
import android.app.Application;
public class SkottieApplication extends Application {
static {
System.loadLibrary("skottie_android");
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
public void onTerminate() {
super.onTerminate();
}
}