All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xiaopy.python.android.PyApplication Maven / Gradle / Ivy

There is a newer version: 12.1.13
Show newest version
package com.xiaopy.python.android;

import android.app.Application;
import com.xiaopy.python.*;


/** Application subclass which automatically starts Python. */
public class PyApplication extends Application {

    /** 

Starts Python.

* *

If you override this method you must call through to the superclass * implementation.

*/ @Override public void onCreate() { super.onCreate(); Python.start(new AndroidPlatform(this)); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy