├── .gitignore ├── README.md └── octave ├── .classpath ├── .project ├── .settings ├── org.eclipse.jdt.core.prefs └── org.eclipse.ltk.core.refactoring.prefs ├── OctaveForgeControlPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeControlPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeFinancialPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ ├── armeabi │ │ └── libarch-supported.so │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeFuzzyLogicPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ ├── armeabi │ │ └── libarch-supported.so │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeIOPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeIOPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeMappingPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ ├── armeabi │ │ └── libarch-supported.so │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeMissingFunctionPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ ├── armeabi │ │ └── libarch-supported.so │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeODEPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeODEPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeOptimPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeOptimPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSignalPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSignalPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSpecFunPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSpecFunPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeStatisticsPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ ├── armeabi │ │ └── libarch-supported.so │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSymbolicPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveForgeSymbolicPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── license.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveGnuplotPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveGnuplotPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── exec.mp3 │ ├── exec_files.txt │ ├── noexec.mp3 │ └── noexec_files.txt ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── proguard-project.txt ├── project.properties └── res │ ├── drawable │ └── icon.PNG │ └── values │ ├── strings.xml │ └── styles.xml ├── OctaveMainPackage ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── busybox.mp2 │ ├── license.txt │ ├── noexec_custom.mp3 │ ├── noexec_custom_files.txt │ ├── old_proot.mp2 │ └── proot.mp2 ├── libs │ ├── android-support-v4.jar │ └── armeabi │ │ └── libarch-supported.so ├── license.txt ├── obb │ ├── main.2.com.octave.main.obb │ └── patch.2.com.octave.main.obb ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable │ │ └── icon.PNG │ ├── layout │ │ └── main_downloader.xml │ └── values │ │ ├── strings.xml │ │ ├── strings_downloader.xml │ │ └── styles.xml └── src │ └── com │ └── octave │ └── main │ ├── octaveAlarmReceiver.java │ ├── octaveDownloaderActivity.java │ └── octaveDownloaderService.java ├── OctaveMainPackagex86 ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── busybox.mp2 │ ├── license.txt │ ├── noexec_custom.mp3 │ ├── noexec_custom_files.txt │ └── proot.mp2 ├── libs │ ├── android-support-v4.jar │ └── x86 │ │ └── libarch-supported.so ├── license.txt ├── obb │ ├── main.2.com.octave.main.x86.obb │ └── patch.2.com.octave.main.x86.obb ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable │ │ └── icon.PNG │ ├── layout │ │ └── main_downloader.xml │ └── values │ │ ├── strings.xml │ │ ├── strings_downloader.xml │ │ └── styles.xml └── src │ └── com │ └── octave │ └── main │ └── x86 │ ├── octaveAlarmReceiver.java │ ├── octaveDownloaderActivity.java │ └── octaveDownloaderService.java └── bulidScripts ├── README.md ├── linkify_new2.sh ├── makeOctavePackages.sh └── makeOctavex86Packages.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | octave4android 2 | ============== 3 | 4 | App for Installing Octave on Android -------------------------------------------------------------------------------- /octave/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /octave/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | octave 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.6 12 | -------------------------------------------------------------------------------- /octave/.settings/org.eclipse.ltk.core.refactoring.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.ltk.core.refactoring.enable.project.refactoring.history=false 3 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeControlPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Control Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeControlPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeControlPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Control Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeControlPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeFinancialPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFinancialPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFinancialPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFinancialPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFinancialPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Financial Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeFinancialPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeFuzzyLogicPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFuzzyLogicPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFuzzyLogicPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFuzzyLogicPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeFuzzyLogicPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Forge Fuzzy Logic Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeFuzzyLogicPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeIOPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/lib/ 4 | ./usr/lib/arm-linux-gnueabi/ 5 | ./usr/lib/arm-linux-gnueabi/octave/ 6 | ./usr/lib/arm-linux-gnueabi/octave/packages/ 7 | ./usr/lib/arm-linux-gnueabi/octave/packages/io-1.0.19/ 8 | ./usr/lib/arm-linux-gnueabi/octave/packages/io-1.0.19/arm-unknown-linux-gnueabi-api-v48+/ 9 | ./usr/lib/arm-linux-gnueabi/octave/packages/io-1.0.19/arm-unknown-linux-gnueabi-api-v48+/PKG_ADD 10 | ./usr/lib/arm-linux-gnueabi/octave/packages/io-1.0.19/arm-unknown-linux-gnueabi-api-v48+/PKG_DEL 11 | ./usr/share/ 12 | ./usr/share/doc/ 13 | ./usr/share/doc/octave-io/ 14 | ./usr/share/doc/octave-io/changelog.Debian.gz 15 | ./usr/share/doc/octave-io/copyright 16 | ./usr/share/doc/octave-io/NEWS.gz 17 | ./usr/share/doc/octave-io/README.Debian 18 | ./usr/share/doc/octave-io/READ-ODS.html 19 | ./usr/share/doc/octave-io/READ-XLS.html 20 | ./usr/share/octave/ 21 | ./usr/share/octave/packages/ 22 | ./usr/share/octave/packages/io-1.0.19/ 23 | ./usr/share/octave/packages/io-1.0.19/append_save.m 24 | ./usr/share/octave/packages/io-1.0.19/calccelladdress.m 25 | ./usr/share/octave/packages/io-1.0.19/chk_spreadsheet_support.m 26 | ./usr/share/octave/packages/io-1.0.19/doc-cache 27 | ./usr/share/octave/packages/io-1.0.19/fexist.m 28 | ./usr/share/octave/packages/io-1.0.19/getusedrange.m 29 | ./usr/share/octave/packages/io-1.0.19/io_ods_testscript.m 30 | ./usr/share/octave/packages/io-1.0.19/io_xls_testscript.m 31 | ./usr/share/octave/packages/io-1.0.19/object2json.m 32 | ./usr/share/octave/packages/io-1.0.19/oct2ods.m 33 | ./usr/share/octave/packages/io-1.0.19/oct2xls.m 34 | ./usr/share/octave/packages/io-1.0.19/ods2oct.m 35 | ./usr/share/octave/packages/io-1.0.19/odsclose.m 36 | ./usr/share/octave/packages/io-1.0.19/odsfinfo.m 37 | ./usr/share/octave/packages/io-1.0.19/odsopen.m 38 | ./usr/share/octave/packages/io-1.0.19/odsread.m 39 | ./usr/share/octave/packages/io-1.0.19/odswrite.m 40 | ./usr/share/octave/packages/io-1.0.19/packinfo/ 41 | ./usr/share/octave/packages/io-1.0.19/packinfo/DESCRIPTION 42 | ./usr/share/octave/packages/io-1.0.19/packinfo/INDEX 43 | ./usr/share/octave/packages/io-1.0.19/packinfo/NEWS 44 | ./usr/share/octave/packages/io-1.0.19/parsecell.m 45 | ./usr/share/octave/packages/io-1.0.19/parse_sp_range.m 46 | ./usr/share/octave/packages/io-1.0.19/pch2mat.m 47 | ./usr/share/octave/packages/io-1.0.19/spsh_chkrange.m 48 | ./usr/share/octave/packages/io-1.0.19/spsh_prstype.m 49 | ./usr/share/octave/packages/io-1.0.19/xls2oct.m 50 | ./usr/share/octave/packages/io-1.0.19/xlsclose.m 51 | ./usr/share/octave/packages/io-1.0.19/xlsfinfo.m 52 | ./usr/share/octave/packages/io-1.0.19/xlsopen.m 53 | ./usr/share/octave/packages/io-1.0.19/xlsread.m 54 | ./usr/share/octave/packages/io-1.0.19/xlswrite.m 55 | ./usr/share/octave/packages/io-1.0.19/xmlwrite.m 56 | 57 | 14 directories, 40 files 58 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave IO Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeIOPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/lib/ 4 | ./usr/lib/i386-linux-gnu/ 5 | ./usr/lib/i386-linux-gnu/octave/ 6 | ./usr/lib/i386-linux-gnu/octave/packages/ 7 | ./usr/lib/i386-linux-gnu/octave/packages/io-1.0.19/ 8 | ./usr/lib/i386-linux-gnu/octave/packages/io-1.0.19/i486-pc-linux-gnu-api-v48+/ 9 | ./usr/lib/i386-linux-gnu/octave/packages/io-1.0.19/i486-pc-linux-gnu-api-v48+/PKG_ADD 10 | ./usr/lib/i386-linux-gnu/octave/packages/io-1.0.19/i486-pc-linux-gnu-api-v48+/PKG_DEL 11 | ./usr/share/ 12 | ./usr/share/doc/ 13 | ./usr/share/doc/octave-io/ 14 | ./usr/share/doc/octave-io/changelog.Debian.gz 15 | ./usr/share/doc/octave-io/copyright 16 | ./usr/share/doc/octave-io/NEWS.gz 17 | ./usr/share/doc/octave-io/README.Debian 18 | ./usr/share/doc/octave-io/READ-ODS.html 19 | ./usr/share/doc/octave-io/READ-XLS.html 20 | ./usr/share/octave/ 21 | ./usr/share/octave/packages/ 22 | ./usr/share/octave/packages/io-1.0.19/ 23 | ./usr/share/octave/packages/io-1.0.19/append_save.m 24 | ./usr/share/octave/packages/io-1.0.19/calccelladdress.m 25 | ./usr/share/octave/packages/io-1.0.19/chk_spreadsheet_support.m 26 | ./usr/share/octave/packages/io-1.0.19/doc-cache 27 | ./usr/share/octave/packages/io-1.0.19/fexist.m 28 | ./usr/share/octave/packages/io-1.0.19/getusedrange.m 29 | ./usr/share/octave/packages/io-1.0.19/io_ods_testscript.m 30 | ./usr/share/octave/packages/io-1.0.19/io_xls_testscript.m 31 | ./usr/share/octave/packages/io-1.0.19/object2json.m 32 | ./usr/share/octave/packages/io-1.0.19/oct2ods.m 33 | ./usr/share/octave/packages/io-1.0.19/oct2xls.m 34 | ./usr/share/octave/packages/io-1.0.19/ods2oct.m 35 | ./usr/share/octave/packages/io-1.0.19/odsclose.m 36 | ./usr/share/octave/packages/io-1.0.19/odsfinfo.m 37 | ./usr/share/octave/packages/io-1.0.19/odsopen.m 38 | ./usr/share/octave/packages/io-1.0.19/odsread.m 39 | ./usr/share/octave/packages/io-1.0.19/odswrite.m 40 | ./usr/share/octave/packages/io-1.0.19/packinfo/ 41 | ./usr/share/octave/packages/io-1.0.19/packinfo/DESCRIPTION 42 | ./usr/share/octave/packages/io-1.0.19/packinfo/INDEX 43 | ./usr/share/octave/packages/io-1.0.19/packinfo/NEWS 44 | ./usr/share/octave/packages/io-1.0.19/parsecell.m 45 | ./usr/share/octave/packages/io-1.0.19/parse_sp_range.m 46 | ./usr/share/octave/packages/io-1.0.19/pch2mat.m 47 | ./usr/share/octave/packages/io-1.0.19/spsh_chkrange.m 48 | ./usr/share/octave/packages/io-1.0.19/spsh_prstype.m 49 | ./usr/share/octave/packages/io-1.0.19/xls2oct.m 50 | ./usr/share/octave/packages/io-1.0.19/xlsclose.m 51 | ./usr/share/octave/packages/io-1.0.19/xlsfinfo.m 52 | ./usr/share/octave/packages/io-1.0.19/xlsopen.m 53 | ./usr/share/octave/packages/io-1.0.19/xlsread.m 54 | ./usr/share/octave/packages/io-1.0.19/xlswrite.m 55 | ./usr/share/octave/packages/io-1.0.19/xmlwrite.m 56 | 57 | 14 directories, 40 files 58 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeIOPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave IO Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeIOPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeMappingPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMappingPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/assets/exec_files.txt: -------------------------------------------------------------------------------- 1 | usr 2 | usr/share/ 3 | usr/share/doc/ 4 | usr/share/doc/octave-mapping/ 5 | usr/share/doc/octave-mapping/changelog.Debian.gz -> /noexec/./usr/share/doc/octave-mapping/changelog.Debian.gz 6 | usr/share/doc/octave-mapping/changelog.gz -> /noexec/./usr/share/doc/octave-mapping/changelog.gz 7 | usr/share/doc/octave-mapping/copyright -> /noexec/./usr/share/doc/octave-mapping/copyright 8 | usr/share/octave/ 9 | usr/share/octave/packages/ 10 | usr/share/octave/packages/mapping-1.0.7/ 11 | usr/share/octave/packages/mapping-1.0.7/azimuth.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/azimuth.m 12 | usr/share/octave/packages/mapping-1.0.7/deg2rad.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/deg2rad.m 13 | usr/share/octave/packages/mapping-1.0.7/distance.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/distance.m 14 | usr/share/octave/packages/mapping-1.0.7/doc-cache -> /noexec/./usr/share/octave/packages/mapping-1.0.7/doc-cache 15 | usr/share/octave/packages/mapping-1.0.7/km2deg.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/km2deg.m 16 | usr/share/octave/packages/mapping-1.0.7/packinfo/ 17 | usr/share/octave/packages/mapping-1.0.7/packinfo/.autoload 18 | usr/share/octave/packages/mapping-1.0.7/packinfo/DESCRIPTION -> /noexec/./usr/share/octave/packages/mapping-1.0.7/packinfo/DESCRIPTION 19 | usr/share/octave/packages/mapping-1.0.7/packinfo/INDEX -> /noexec/./usr/share/octave/packages/mapping-1.0.7/packinfo/INDEX 20 | usr/share/octave/packages/mapping-1.0.7/rad2deg.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/rad2deg.m 21 | usr/share/octave/packages/mapping-1.0.7/reckon.m -> /noexec/./usr/share/octave/packages/mapping-1.0.7/reckon.m 22 | 23 | 7 directories, 13 files 24 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMappingPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | usr 2 | usr/share/ 3 | usr/share/doc/ 4 | usr/share/doc/octave-mapping/ 5 | usr/share/doc/octave-mapping/changelog.Debian.gz 6 | usr/share/doc/octave-mapping/changelog.gz 7 | usr/share/doc/octave-mapping/copyright 8 | usr/share/octave/ 9 | usr/share/octave/packages/ 10 | usr/share/octave/packages/mapping-1.0.7/ 11 | usr/share/octave/packages/mapping-1.0.7/azimuth.m 12 | usr/share/octave/packages/mapping-1.0.7/deg2rad.m 13 | usr/share/octave/packages/mapping-1.0.7/distance.m 14 | usr/share/octave/packages/mapping-1.0.7/doc-cache 15 | usr/share/octave/packages/mapping-1.0.7/km2deg.m 16 | usr/share/octave/packages/mapping-1.0.7/packinfo/ 17 | usr/share/octave/packages/mapping-1.0.7/packinfo/DESCRIPTION 18 | usr/share/octave/packages/mapping-1.0.7/packinfo/INDEX 19 | usr/share/octave/packages/mapping-1.0.7/rad2deg.m 20 | usr/share/octave/packages/mapping-1.0.7/reckon.m 21 | 22 | 7 directories, 12 files 23 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMappingPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMappingPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Forge Mapping Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeMappingPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeMissingFunctionPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMissingFunctionPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/assets/exec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./exec_files.txt 3 | ./exec.mp3 4 | ./usr/ 5 | ./usr/share/ 6 | ./usr/share/doc/ 7 | ./usr/share/doc/octave-missing-functions/ 8 | ./usr/share/doc/octave-missing-functions/changelog.Debian.gz -> /noexec/./usr/share/doc/octave-missing-functions/changelog.Debian.gz 9 | ./usr/share/doc/octave-missing-functions/changelog.gz -> /noexec/./usr/share/doc/octave-missing-functions/changelog.gz 10 | ./usr/share/doc/octave-missing-functions/copyright -> /noexec/./usr/share/doc/octave-missing-functions/copyright 11 | ./usr/share/octave/ 12 | ./usr/share/octave/packages/ 13 | ./usr/share/octave/packages/missing-functions-1.0.2/ 14 | ./usr/share/octave/packages/missing-functions-1.0.2/doc-cache -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/doc-cache 15 | ./usr/share/octave/packages/missing-functions-1.0.2/__functionstatus__.m -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/__functionstatus__.m 16 | ./usr/share/octave/packages/missing-functions-1.0.2/__matlabfunctionlist__.m -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/__matlabfunctionlist__.m 17 | ./usr/share/octave/packages/missing-functions-1.0.2/missingfunctionstatus.m -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/missingfunctionstatus.m 18 | ./usr/share/octave/packages/missing-functions-1.0.2/__missingmatlab2txt__.m -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/__missingmatlab2txt__.m 19 | ./usr/share/octave/packages/missing-functions-1.0.2/missingmatlabfunctions.m -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/missingmatlabfunctions.m 20 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/ 21 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/.autoload 22 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/DESCRIPTION -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/packinfo/DESCRIPTION 23 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/INDEX -> /noexec/./usr/share/octave/packages/missing-functions-1.0.2/packinfo/INDEX 24 | 25 | 8 directories, 14 files 26 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMissingFunctionPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/share/ 4 | ./usr/share/doc/ 5 | ./usr/share/doc/octave-missing-functions/ 6 | ./usr/share/doc/octave-missing-functions/changelog.Debian.gz 7 | ./usr/share/doc/octave-missing-functions/changelog.gz 8 | ./usr/share/doc/octave-missing-functions/copyright 9 | ./usr/share/octave/ 10 | ./usr/share/octave/packages/ 11 | ./usr/share/octave/packages/missing-functions-1.0.2/ 12 | ./usr/share/octave/packages/missing-functions-1.0.2/doc-cache 13 | ./usr/share/octave/packages/missing-functions-1.0.2/__functionstatus__.m 14 | ./usr/share/octave/packages/missing-functions-1.0.2/__matlabfunctionlist__.m 15 | ./usr/share/octave/packages/missing-functions-1.0.2/missingfunctionstatus.m 16 | ./usr/share/octave/packages/missing-functions-1.0.2/__missingmatlab2txt__.m 17 | ./usr/share/octave/packages/missing-functions-1.0.2/missingmatlabfunctions.m 18 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/ 19 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/DESCRIPTION 20 | ./usr/share/octave/packages/missing-functions-1.0.2/packinfo/INDEX 21 | 22 | 8 directories, 11 files 23 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMissingFunctionPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeMissingFunctionPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Missing Function Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeMissingFunctionPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeODEPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave ODE Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeODEPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeODEPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave ODE Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeODEPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeOptimPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Optim Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeOptimPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeOptimPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Optim Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeOptimPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSignalPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Forge Signal Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSignalPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSignalPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Forge Signal Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSignalPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSpecFunPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/share/ 4 | ./usr/share/doc/ 5 | ./usr/share/doc/octave-specfun/ 6 | ./usr/share/doc/octave-specfun/changelog.Debian.gz 7 | ./usr/share/doc/octave-specfun/copyright 8 | ./usr/share/doc/octave-specfun/NEWS.gz 9 | ./usr/share/octave/ 10 | ./usr/share/octave/packages/ 11 | ./usr/share/octave/packages/specfun-1.1.0/ 12 | ./usr/share/octave/packages/specfun-1.1.0/Ci.m 13 | ./usr/share/octave/packages/specfun-1.1.0/cosint.m 14 | ./usr/share/octave/packages/specfun-1.1.0/dirac.m 15 | ./usr/share/octave/packages/specfun-1.1.0/doc-cache 16 | ./usr/share/octave/packages/specfun-1.1.0/ellipke.m 17 | ./usr/share/octave/packages/specfun-1.1.0/erfcinv.m 18 | ./usr/share/octave/packages/specfun-1.1.0/expint_E1.m 19 | ./usr/share/octave/packages/specfun-1.1.0/expint_Ei.m 20 | ./usr/share/octave/packages/specfun-1.1.0/expint.m 21 | ./usr/share/octave/packages/specfun-1.1.0/heaviside.m 22 | ./usr/share/octave/packages/specfun-1.1.0/laguerre.m 23 | ./usr/share/octave/packages/specfun-1.1.0/lambertw.m 24 | ./usr/share/octave/packages/specfun-1.1.0/laplacian.m 25 | ./usr/share/octave/packages/specfun-1.1.0/multinom_coeff.m 26 | ./usr/share/octave/packages/specfun-1.1.0/multinom_exp.m 27 | ./usr/share/octave/packages/specfun-1.1.0/multinom.m 28 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/ 29 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/DESCRIPTION 30 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/INDEX 31 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/NEWS 32 | ./usr/share/octave/packages/specfun-1.1.0/psi.m 33 | ./usr/share/octave/packages/specfun-1.1.0/Si.m 34 | ./usr/share/octave/packages/specfun-1.1.0/sinint.m 35 | ./usr/share/octave/packages/specfun-1.1.0/zeta.m 36 | 37 | 8 directories, 26 files 38 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Specfun Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSpecFunPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/share/ 4 | ./usr/share/doc/ 5 | ./usr/share/doc/octave-specfun/ 6 | ./usr/share/doc/octave-specfun/changelog.Debian.gz 7 | ./usr/share/doc/octave-specfun/copyright 8 | ./usr/share/doc/octave-specfun/NEWS.gz 9 | ./usr/share/octave/ 10 | ./usr/share/octave/packages/ 11 | ./usr/share/octave/packages/specfun-1.1.0/ 12 | ./usr/share/octave/packages/specfun-1.1.0/Ci.m 13 | ./usr/share/octave/packages/specfun-1.1.0/cosint.m 14 | ./usr/share/octave/packages/specfun-1.1.0/dirac.m 15 | ./usr/share/octave/packages/specfun-1.1.0/doc-cache 16 | ./usr/share/octave/packages/specfun-1.1.0/ellipke.m 17 | ./usr/share/octave/packages/specfun-1.1.0/erfcinv.m 18 | ./usr/share/octave/packages/specfun-1.1.0/expint_E1.m 19 | ./usr/share/octave/packages/specfun-1.1.0/expint_Ei.m 20 | ./usr/share/octave/packages/specfun-1.1.0/expint.m 21 | ./usr/share/octave/packages/specfun-1.1.0/heaviside.m 22 | ./usr/share/octave/packages/specfun-1.1.0/laguerre.m 23 | ./usr/share/octave/packages/specfun-1.1.0/lambertw.m 24 | ./usr/share/octave/packages/specfun-1.1.0/laplacian.m 25 | ./usr/share/octave/packages/specfun-1.1.0/multinom_coeff.m 26 | ./usr/share/octave/packages/specfun-1.1.0/multinom_exp.m 27 | ./usr/share/octave/packages/specfun-1.1.0/multinom.m 28 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/ 29 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/DESCRIPTION 30 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/INDEX 31 | ./usr/share/octave/packages/specfun-1.1.0/packinfo/NEWS 32 | ./usr/share/octave/packages/specfun-1.1.0/psi.m 33 | ./usr/share/octave/packages/specfun-1.1.0/Si.m 34 | ./usr/share/octave/packages/specfun-1.1.0/sinint.m 35 | ./usr/share/octave/packages/specfun-1.1.0/zeta.m 36 | 37 | 8 directories, 26 files 38 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSpecFunPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Specfun Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSpecFunPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeStatisticsPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeStatisticsPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeStatisticsPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeStatisticsPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeStatisticsPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Statistics Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeStatisticsPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSymbolicPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | usr 2 | usr/lib/ 3 | usr/lib/arm-linux-gnueabi/ 4 | usr/lib/arm-linux-gnueabi/octave/ 5 | usr/lib/arm-linux-gnueabi/octave/packages/ 6 | usr/lib/arm-linux-gnueabi/octave/packages/symbolic-1.1.0/ 7 | usr/lib/arm-linux-gnueabi/octave/packages/symbolic-1.1.0/arm-unknown-linux-gnueabi-api-v48+/ 8 | usr/lib/arm-linux-gnueabi/octave/packages/symbolic-1.1.0/arm-unknown-linux-gnueabi-api-v48+/PKG_ADD 9 | usr/share/ 10 | usr/share/doc/ 11 | usr/share/doc/libcln6/ 12 | usr/share/doc/libcln6/ChangeLog 13 | usr/share/doc/libcln6/changelog.Debian.gz 14 | usr/share/doc/libcln6/copyright 15 | usr/share/doc/libcln6/NEWS.gz 16 | usr/share/doc/libcln6/README 17 | usr/share/doc/libcln6/TODO 18 | usr/share/doc/libginac2/ 19 | usr/share/doc/libginac2/AUTHORS 20 | usr/share/doc/libginac2/changelog.Debian.gz 21 | usr/share/doc/libginac2/changelog.gz 22 | usr/share/doc/libginac2/copyright 23 | usr/share/doc/libginac2/NEWS.gz 24 | usr/share/doc/libginac2/README 25 | usr/share/doc/octave-symbolic/ 26 | usr/share/doc/octave-symbolic/changelog.Debian.gz 27 | usr/share/doc/octave-symbolic/copyright 28 | usr/share/doc/octave-symbolic/symbolic.html 29 | usr/share/octave/ 30 | usr/share/octave/packages/ 31 | usr/share/octave/packages/symbolic-1.1.0/ 32 | usr/share/octave/packages/symbolic-1.1.0/doc-cache 33 | usr/share/octave/packages/symbolic-1.1.0/findsym.m 34 | usr/share/octave/packages/symbolic-1.1.0/packinfo/ 35 | usr/share/octave/packages/symbolic-1.1.0/packinfo/DESCRIPTION 36 | usr/share/octave/packages/symbolic-1.1.0/packinfo/INDEX 37 | usr/share/octave/packages/symbolic-1.1.0/poly2sym.m 38 | usr/share/octave/packages/symbolic-1.1.0/splot.m 39 | usr/share/octave/packages/symbolic-1.1.0/sym2poly.m 40 | usr/share/octave/packages/symbolic-1.1.0/symfsolve.m 41 | 42 | 15 directories, 24 files 43 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Symbolic Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveForgeSymbolicPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/assets/noexec_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/lib/ 4 | ./usr/lib/i386-linux-gnu/ 5 | ./usr/lib/i386-linux-gnu/octave/ 6 | ./usr/lib/i386-linux-gnu/octave/packages/ 7 | ./usr/lib/i386-linux-gnu/octave/packages/symbolic-1.1.0/ 8 | ./usr/lib/i386-linux-gnu/octave/packages/symbolic-1.1.0/i486-pc-linux-gnu-api-v48+/ 9 | ./usr/lib/i386-linux-gnu/octave/packages/symbolic-1.1.0/i486-pc-linux-gnu-api-v48+/PKG_ADD 10 | ./usr/share/ 11 | ./usr/share/doc/ 12 | ./usr/share/doc/libcln6/ 13 | ./usr/share/doc/libcln6/ChangeLog 14 | ./usr/share/doc/libcln6/changelog.Debian.gz 15 | ./usr/share/doc/libcln6/copyright 16 | ./usr/share/doc/libcln6/NEWS.gz 17 | ./usr/share/doc/libcln6/README 18 | ./usr/share/doc/libcln6/TODO 19 | ./usr/share/doc/libginac2/ 20 | ./usr/share/doc/libginac2/AUTHORS 21 | ./usr/share/doc/libginac2/changelog.Debian.gz 22 | ./usr/share/doc/libginac2/changelog.gz 23 | ./usr/share/doc/libginac2/copyright 24 | ./usr/share/doc/libginac2/NEWS.gz 25 | ./usr/share/doc/libginac2/README 26 | ./usr/share/doc/octave-symbolic/ 27 | ./usr/share/doc/octave-symbolic/changelog.Debian.gz 28 | ./usr/share/doc/octave-symbolic/copyright 29 | ./usr/share/doc/octave-symbolic/symbolic.html 30 | ./usr/share/octave/ 31 | ./usr/share/octave/packages/ 32 | ./usr/share/octave/packages/symbolic-1.1.0/ 33 | ./usr/share/octave/packages/symbolic-1.1.0/doc-cache 34 | ./usr/share/octave/packages/symbolic-1.1.0/findsym.m 35 | ./usr/share/octave/packages/symbolic-1.1.0/packinfo/ 36 | ./usr/share/octave/packages/symbolic-1.1.0/packinfo/DESCRIPTION 37 | ./usr/share/octave/packages/symbolic-1.1.0/packinfo/INDEX 38 | ./usr/share/octave/packages/symbolic-1.1.0/poly2sym.m 39 | ./usr/share/octave/packages/symbolic-1.1.0/splot.m 40 | ./usr/share/octave/packages/symbolic-1.1.0/sym2poly.m 41 | ./usr/share/octave/packages/symbolic-1.1.0/symfsolve.m 42 | 43 | 16 directories, 24 files 44 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveForgeSymbolicPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Symbolic Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveForgeSymbolicPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveGnuplotPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackage/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackage/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Gnuplot Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveGnuplotPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/assets/exec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackagex86/assets/exec.mp3 -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/assets/noexec.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackagex86/assets/noexec.mp3 -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveGnuplotPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Gnuplot Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveGnuplotPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveMainPackage 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/assets/busybox.mp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/assets/busybox.mp2 -------------------------------------------------------------------------------- /octave/OctaveMainPackage/assets/noexec_custom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/assets/noexec_custom.mp3 -------------------------------------------------------------------------------- /octave/OctaveMainPackage/assets/noexec_custom_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/share/ 4 | ./usr/share/octave/ 5 | ./usr/share/octave/3.6.2/ 6 | ./usr/share/octave/3.6.2/m/ 7 | ./usr/share/octave/3.6.2/m/plot/ 8 | ./usr/share/octave/3.6.2/m/plot/__gnuplot_drawnow__.m 9 | ./usr/share/octave/site/ 10 | ./usr/share/octave/site/m/ 11 | ./usr/share/octave/site/m/startup/ 12 | ./usr/share/octave/site/m/startup/octaverc 13 | 14 | 9 directories, 2 files 15 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/assets/old_proot.mp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/assets/old_proot.mp2 -------------------------------------------------------------------------------- /octave/OctaveMainPackage/assets/proot.mp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/assets/proot.mp2 -------------------------------------------------------------------------------- /octave/OctaveMainPackage/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveMainPackage/libs/armeabi/libarch-supported.so: -------------------------------------------------------------------------------- 1 | armeabi -------------------------------------------------------------------------------- /octave/OctaveMainPackage/obb/main.2.com.octave.main.obb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/obb/main.2.com.octave.main.obb -------------------------------------------------------------------------------- /octave/OctaveMainPackage/obb/patch.2.com.octave.main.obb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/obb/patch.2.com.octave.main.obb -------------------------------------------------------------------------------- /octave/OctaveMainPackage/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=../downloader_library 16 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackage/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveMainPackage/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Main Package 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/res/values/strings_downloader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Would you like to enable downloading over cellular connections? Depending on your data plan, this may cost you money. 4 | If you choose not to enable downloading over cellular connections, the download will automatically resume when wi-fi is available. 5 | Resume download 6 | Wi-Fi settings 7 | Pause Download 8 | Resume Download 9 | Cancel 10 | 11 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/src/com/octave/main/octaveAlarmReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.octave.main; 18 | 19 | import com.google.android.vending.expansion.downloader.DownloaderClientMarshaller; 20 | 21 | import android.content.BroadcastReceiver; 22 | import android.content.Context; 23 | import android.content.Intent; 24 | import android.content.pm.PackageManager.NameNotFoundException; 25 | 26 | /** 27 | * You should start your derived downloader class when this receiver gets the message 28 | * from the alarm service using the provided service helper function within the 29 | * DownloaderClientMarshaller. This class must be then registered in your AndroidManifest.xml 30 | * file with a section like this: 31 | * 32 | */ 33 | public class octaveAlarmReceiver extends BroadcastReceiver { 34 | 35 | @Override 36 | public void onReceive(Context context, Intent intent) { 37 | try { 38 | DownloaderClientMarshaller.startDownloadServiceIfRequired(context, intent, octaveDownloaderService.class); 39 | } catch (NameNotFoundException e) { 40 | e.printStackTrace(); 41 | } 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /octave/OctaveMainPackage/src/com/octave/main/octaveDownloaderService.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.octave.main; 18 | 19 | import com.google.android.vending.expansion.downloader.impl.DownloaderService; 20 | 21 | /** 22 | * This class demonstrates the minimal client implementation of the 23 | * DownloaderService from the Downloader library. 24 | */ 25 | public class octaveDownloaderService extends DownloaderService { 26 | // stuff for LVL -- MODIFY FOR YOUR APPLICATION! 27 | private static final String BASE64_PUBLIC_KEY = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArXfuiU9ba70+lg6n4QolcviGbrS/KUbJWqYgsvXGn9NBPNTyman8At9tw6TScJw508HxyaEHlbUYaGAtxkuxBmV/Ps5fmBhJEWxXzLfQX+5kX/qqkwXPalZSkcp2BPav5fon3X4kGVAvdh7Je+GdbrV9nmWIQU0JokVQE9X2IdUlL9xtMY0gelMBSrUroSByvb2tj2H7sSqzK18YIowZiC0luz9NiTri/8DYVzxKKI+jbCbe3KVlJuHETV8jy38bLV1roZc36m1mg26UxAHPD+21dA+OlEmZ4HXlq8bDigEwuZRdMvPg95bdrN2exxH/nWL1z4a1lpfQG4uUtXKi1wIDAQAB"; 28 | // used by the preference obfuscater 29 | private static final byte[] SALT = new byte[] { 30 | 1, 43, -12, -1, 54, 98, 31 | -100, -12, 43, 2, -8, -4, 9, 5, -106, -108, -33, 45, -1, 84 32 | }; 33 | 34 | /** 35 | * This public key comes from your Android Market publisher account, and it 36 | * used by the LVL to validate responses from Market on your behalf. 37 | */ 38 | @Override 39 | public String getPublicKey() { 40 | return BASE64_PUBLIC_KEY; 41 | } 42 | 43 | /** 44 | * This is used by the preference obfuscater to make sure that your 45 | * obfuscated preferences are different than the ones used by other 46 | * applications. 47 | */ 48 | @Override 49 | public byte[] getSALT() { 50 | return SALT; 51 | } 52 | 53 | /** 54 | * Fill this in with the class name for your alarm receiver. We do this 55 | * because receivers must be unique across all of Android (it's a good idea 56 | * to make sure that your receiver is in your unique package) 57 | */ 58 | @Override 59 | public String getAlarmReceiverClassName() { 60 | return octaveAlarmReceiver.class.getName(); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | OctaveMainPackagex86 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/assets/busybox.mp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/assets/busybox.mp2 -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/assets/noexec_custom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/assets/noexec_custom.mp3 -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/assets/noexec_custom_files.txt: -------------------------------------------------------------------------------- 1 | . 2 | ./usr/ 3 | ./usr/share/ 4 | ./usr/share/octave/ 5 | ./usr/share/octave/3.6.2/ 6 | ./usr/share/octave/3.6.2/m/ 7 | ./usr/share/octave/3.6.2/m/plot/ 8 | ./usr/share/octave/3.6.2/m/plot/__gnuplot_drawnow__.m 9 | ./usr/share/octave/site/ 10 | ./usr/share/octave/site/m/ 11 | ./usr/share/octave/site/m/startup/ 12 | ./usr/share/octave/site/m/startup/octaverc 13 | 14 | 9 directories, 2 files 15 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/assets/proot.mp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/assets/proot.mp2 -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/libs/android-support-v4.jar -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/libs/x86/libarch-supported.so: -------------------------------------------------------------------------------- 1 | x86 -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/obb/main.2.com.octave.main.x86.obb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/obb/main.2.com.octave.main.x86.obb -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/obb/patch.2.com.octave.main.x86.obb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/obb/patch.2.com.octave.main.x86.obb -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library.reference.1=../downloader_library 16 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/res/drawable/icon.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corbinlc/octave4android/87b358fdde735015aa38ed903723edd7863db1b8/octave/OctaveMainPackagex86/res/drawable/icon.PNG -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Octave Main Package (x86) 4 | 5 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/res/values/strings_downloader.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Would you like to enable downloading over cellular connections? Depending on your data plan, this may cost you money. 4 | If you choose not to enable downloading over cellular connections, the download will automatically resume when wi-fi is available. 5 | Resume download 6 | Wi-Fi settings 7 | Pause Download 8 | Resume Download 9 | Cancel 10 | 11 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/src/com/octave/main/x86/octaveAlarmReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.octave.main.x86; 18 | 19 | import com.google.android.vending.expansion.downloader.DownloaderClientMarshaller; 20 | 21 | import android.content.BroadcastReceiver; 22 | import android.content.Context; 23 | import android.content.Intent; 24 | import android.content.pm.PackageManager.NameNotFoundException; 25 | 26 | /** 27 | * You should start your derived downloader class when this receiver gets the message 28 | * from the alarm service using the provided service helper function within the 29 | * DownloaderClientMarshaller. This class must be then registered in your AndroidManifest.xml 30 | * file with a section like this: 31 | * 32 | */ 33 | public class octaveAlarmReceiver extends BroadcastReceiver { 34 | 35 | @Override 36 | public void onReceive(Context context, Intent intent) { 37 | try { 38 | DownloaderClientMarshaller.startDownloadServiceIfRequired(context, intent, octaveDownloaderService.class); 39 | } catch (NameNotFoundException e) { 40 | e.printStackTrace(); 41 | } 42 | } 43 | 44 | } 45 | -------------------------------------------------------------------------------- /octave/OctaveMainPackagex86/src/com/octave/main/x86/octaveDownloaderService.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.octave.main.x86; 18 | 19 | import com.google.android.vending.expansion.downloader.impl.DownloaderService; 20 | 21 | /** 22 | * This class demonstrates the minimal client implementation of the 23 | * DownloaderService from the Downloader library. 24 | */ 25 | public class octaveDownloaderService extends DownloaderService { 26 | // stuff for LVL -- MODIFY FOR YOUR APPLICATION! 27 | private static final String BASE64_PUBLIC_KEY = "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgMWZwZmq+BwXsPmG1kYodCAiWq7DKzZZh8chsgW3tf0eIF7mX7JUVS6GeXyVDPKLS1Ems5NNksbiGbi61uDb5r41gwYxU4Q7x/oT+PdBLfHOJGDgKgciC8XXdLE8wNvsBOkbqQ5H3whi93HYZJutLoBo2OF6O5ytbSzTL8EQnajqVqT2g/bwAn2oUX1qXRt45w+IBGn4i7w7T46PG6qoLMcn05evxTmW7B6SoWIw9CZ/W+5ItYIkuVygcawJoIoBAKFJhsDNiGTVvpjuV+Lec+pWCN5544dPBRm2NsJW3x8jpxc9wj4WNCKY5eF7QCP/p9gR0xxMDB9aeIY+PBQmCQIDAQAB"; 28 | // used by the preference obfuscater 29 | private static final byte[] SALT = new byte[] { 30 | 1, 43, -12, -1, 54, 98, 31 | -100, -12, 43, 2, -8, -4, 9, 5, -106, -108, -33, 45, -1, 84 32 | }; 33 | 34 | /** 35 | * This public key comes from your Android Market publisher account, and it 36 | * used by the LVL to validate responses from Market on your behalf. 37 | */ 38 | @Override 39 | public String getPublicKey() { 40 | return BASE64_PUBLIC_KEY; 41 | } 42 | 43 | /** 44 | * This is used by the preference obfuscater to make sure that your 45 | * obfuscated preferences are different than the ones used by other 46 | * applications. 47 | */ 48 | @Override 49 | public byte[] getSALT() { 50 | return SALT; 51 | } 52 | 53 | /** 54 | * Fill this in with the class name for your alarm receiver. We do this 55 | * because receivers must be unique across all of Android (it's a good idea 56 | * to make sure that your receiver is in your unique package) 57 | */ 58 | @Override 59 | public String getAlarmReceiverClassName() { 60 | return octaveAlarmReceiver.class.getName(); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /octave/bulidScripts/README.md: -------------------------------------------------------------------------------- 1 | octave4android build scripts 2 | ============================ 3 | 4 | For building all of the packages, except the main packages, use the makeOctavePackages*.sh scripts. 5 | 6 | This generates two .tar.gz files. They get renamed to have a .mp3 extension and put in the assets folder of the associated android app. 7 | 8 | For building the main package, I don't have a script of my own (I should, but only had to do this once so far). I have done it manually. First I use debootstrap to create a debian rootfs with Octave as an included package. I then run the same linkify script that is used in the makeOctavePackages*.sh. I rename the two outputs to be .obb files, but really are tar.gz files, and put them in the obb directory for the associated app. 9 | 10 | In the main package assets directory the is the following: 11 | 1) noexec_custom.mp3 - a tar.gz file of changes I want to make to rootfs after it is unpacked. 12 | 2)busybox.mp2 - the statically compile busybox pulled from the debian wheezy busybox staic .deb. 13 | 3) proot.mp2 - proot built from https://github.com/corbinlc/PRoot/commit/f0ce438853562b70b03d9001dcdb4ac9ee8925f9 14 | -------------------------------------------------------------------------------- /octave/bulidScripts/linkify_new2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | traverse() 4 | { 5 | # Traverse a directory 6 | 7 | ls "$1" | while read i 8 | do 9 | if [ "$1" == "." ]; then 10 | if [ "$i" = "dev" ]; then 11 | continue 12 | fi 13 | if [ "$i" == "mnt" ]; then 14 | continue 15 | fi 16 | if [ "$i" == "proc" ]; then 17 | continue 18 | fi 19 | if [ "$i" == "host-rootfs" ]; then 20 | continue 21 | fi 22 | if [ "$i" == "noexec" ]; then 23 | continue 24 | fi 25 | if [[ "$i" == *.deb ]]; then 26 | continue 27 | fi 28 | fi 29 | if [ -L "$1/$i" ]; then 30 | continue 31 | elif [ -d "$1/$i" ]; then 32 | traverse "$1/$i" 33 | elif [ -x "$1/$i" ]; then 34 | continue 35 | elif (file "$1/$i" | grep ELF); then 36 | continue 37 | else 38 | #make directory to move things 39 | mkdir -p "/noexec/$1" 40 | #copy files/dirs to noexec 41 | cp "$1/$i" "/noexec/$1/" 42 | #remove original files/dirs 43 | rm -f "$1/$i" 44 | #create link to noexec 45 | ln -sf "/noexec/$1/$i" "$1/$i" 46 | fi 47 | done 48 | } 49 | 50 | if [ -z "$1" ]; then 51 | traverse . 52 | else 53 | traverse "$1" 54 | fi 55 | --------------------------------------------------------------------------------