/* * Copyright (C) 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ /* * Copyright (C) 2012, Anthony Prieur & Daniel Oppenheim. All rights reserved. * * Original from SL4A modified to allow to embed Interpreter and scripts into an APK */ package com.beckersweet.opmub.config; public class GlobalConstants { public static final String PYTHON_MAIN_SCRIPT_NAME = "ppserver_driver2.py"; public static final String PYTHON_PROJECT_ZIP_NAME = "ppserver_driver2.py.zip"; public static final String PYTHON_ZIP_NAME = "python_27.zip"; public static final String PYTHON_EXTRAS_ZIP_NAME = "python_extras_27_2.zip"; public static final boolean IS_FOREGROUND_SERVICE = true; public static final String LOG_TAG = "PythonAPK"; }