├── .gitignore ├── .gitmodules ├── .idea ├── .gitignore ├── .name ├── compiler.xml ├── deploymentTargetDropDown.xml ├── gradle.xml ├── misc.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── allplatform │ │ └── box86 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── DroidSansMono.ttf │ │ ├── bin-map.zip │ │ └── data-2.tgz │ ├── java │ │ ├── com │ │ │ ├── allplatform │ │ │ │ └── box86 │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── Wine.java │ │ │ │ │ ├── main │ │ │ │ │ ├── About.java │ │ │ │ │ ├── Home.java │ │ │ │ │ ├── Library.java │ │ │ │ │ ├── Mod.java │ │ │ │ │ ├── Setting.java │ │ │ │ │ └── wine.java │ │ │ │ │ └── other │ │ │ │ │ ├── Filemgr.java │ │ │ │ │ ├── InstallAssets.java │ │ │ │ │ ├── Run.java │ │ │ │ │ └── mDialog.java │ │ │ └── termux │ │ │ │ ├── app │ │ │ │ ├── BackgroundJob.java │ │ │ │ ├── BellUtil.java │ │ │ │ ├── DialogUtils.java │ │ │ │ ├── ExtraKeysInfos.java │ │ │ │ ├── ExtraKeysView.java │ │ │ │ ├── FullScreenWorkAround.java │ │ │ │ ├── RunCommandService.java │ │ │ │ ├── TermuxActivity.java │ │ │ │ ├── TermuxHelpActivity.java │ │ │ │ ├── TermuxInstaller.java │ │ │ │ ├── TermuxOpenReceiver.java │ │ │ │ ├── TermuxPreferences.java │ │ │ │ ├── TermuxService.java │ │ │ │ └── TermuxViewClient.java │ │ │ │ └── filepicker │ │ │ │ ├── TermuxDocumentsProvider.java │ │ │ │ └── TermuxFileReceiverActivity.java │ │ └── x │ │ │ └── org │ │ │ └── server │ │ │ ├── Accelerometer.java │ │ │ ├── Advertisement.java │ │ │ ├── Audio.java │ │ │ ├── Clipboard.java │ │ │ ├── CloudSave.java │ │ │ ├── DataDownloader.java │ │ │ ├── DummyService.java │ │ │ ├── GLSurfaceView_SDL.java │ │ │ ├── Globals.java │ │ │ ├── Keycodes.java │ │ │ ├── MainActivity.java │ │ │ ├── RestartMainActivity.java │ │ │ ├── RunFromOtherApp.java │ │ │ ├── Settings.java │ │ │ ├── SettingsMenu.java │ │ │ ├── SettingsMenuKeyboard.java │ │ │ ├── SettingsMenuMisc.java │ │ │ ├── SettingsMenuMouse.java │ │ │ ├── Video.java │ │ │ └── XZInputStream.java │ ├── jniLibs │ │ ├── armeabi-v7a │ │ │ ├── lib0.so │ │ │ ├── lib1.so │ │ │ ├── lib10.so │ │ │ ├── lib11.so │ │ │ ├── lib12.so │ │ │ ├── lib13.so │ │ │ ├── lib14.so │ │ │ ├── lib15.so │ │ │ ├── lib16.so │ │ │ ├── lib17.so │ │ │ ├── lib18.so │ │ │ ├── lib19.so │ │ │ ├── lib2.so │ │ │ ├── lib20.so │ │ │ ├── lib21.so │ │ │ ├── lib22.so │ │ │ ├── lib23.so │ │ │ ├── lib24.so │ │ │ ├── lib25.so │ │ │ ├── lib26.so │ │ │ ├── lib27.so │ │ │ ├── lib28.so │ │ │ ├── lib29.so │ │ │ ├── lib3.so │ │ │ ├── lib30.so │ │ │ ├── lib31.so │ │ │ ├── lib32.so │ │ │ ├── lib33.so │ │ │ ├── lib34.so │ │ │ ├── lib35.so │ │ │ ├── lib36.so │ │ │ ├── lib37.so │ │ │ ├── lib38.so │ │ │ ├── lib39.so │ │ │ ├── lib4.so │ │ │ ├── lib40.so │ │ │ ├── lib41.so │ │ │ ├── lib42.so │ │ │ ├── lib43.so │ │ │ ├── lib44.so │ │ │ ├── lib45.so │ │ │ ├── lib46.so │ │ │ ├── lib47.so │ │ │ ├── lib48.so │ │ │ ├── lib49.so │ │ │ ├── lib5.so │ │ │ ├── lib50.so │ │ │ ├── lib51.so │ │ │ ├── lib52.so │ │ │ ├── lib53.so │ │ │ ├── lib54.so │ │ │ ├── lib55.so │ │ │ ├── lib56.so │ │ │ ├── lib57.so │ │ │ ├── lib58.so │ │ │ ├── lib59.so │ │ │ ├── lib6.so │ │ │ ├── lib60.so │ │ │ ├── lib61.so │ │ │ ├── lib62.so │ │ │ ├── lib63.so │ │ │ ├── lib64.so │ │ │ ├── lib65.so │ │ │ ├── lib66.so │ │ │ ├── lib67.so │ │ │ ├── lib68.so │ │ │ ├── lib69.so │ │ │ ├── lib7.so │ │ │ ├── lib70.so │ │ │ ├── lib71.so │ │ │ ├── lib72.so │ │ │ ├── lib8.so │ │ │ ├── lib9.so │ │ │ ├── libapplication.so │ │ │ ├── libcrypto.so.sdl.1.so │ │ │ ├── libsdl-1.2.so │ │ │ ├── libsdl_main.so │ │ │ ├── libsdl_native_helpers.so │ │ │ ├── libsdl_ttf.so │ │ │ └── libtermux.so │ │ └── x86 │ │ │ ├── lib0.so │ │ │ ├── lib1.so │ │ │ ├── lib10.so │ │ │ ├── lib11.so │ │ │ ├── lib12.so │ │ │ ├── lib13.so │ │ │ ├── lib14.so │ │ │ ├── lib15.so │ │ │ ├── lib16.so │ │ │ ├── lib17.so │ │ │ ├── lib18.so │ │ │ ├── lib19.so │ │ │ ├── lib2.so │ │ │ ├── lib20.so │ │ │ ├── lib21.so │ │ │ ├── lib22.so │ │ │ ├── lib23.so │ │ │ ├── lib24.so │ │ │ ├── lib25.so │ │ │ ├── lib26.so │ │ │ ├── lib27.so │ │ │ ├── lib28.so │ │ │ ├── lib29.so │ │ │ ├── lib3.so │ │ │ ├── lib30.so │ │ │ ├── lib31.so │ │ │ ├── lib32.so │ │ │ ├── lib33.so │ │ │ ├── lib34.so │ │ │ ├── lib35.so │ │ │ ├── lib36.so │ │ │ ├── lib37.so │ │ │ ├── lib38.so │ │ │ ├── lib39.so │ │ │ ├── lib4.so │ │ │ ├── lib40.so │ │ │ ├── lib41.so │ │ │ ├── lib42.so │ │ │ ├── lib43.so │ │ │ ├── lib44.so │ │ │ ├── lib45.so │ │ │ ├── lib46.so │ │ │ ├── lib47.so │ │ │ ├── lib48.so │ │ │ ├── lib49.so │ │ │ ├── lib5.so │ │ │ ├── lib50.so │ │ │ ├── lib51.so │ │ │ ├── lib52.so │ │ │ ├── lib53.so │ │ │ ├── lib54.so │ │ │ ├── lib55.so │ │ │ ├── lib56.so │ │ │ ├── lib57.so │ │ │ ├── lib58.so │ │ │ ├── lib59.so │ │ │ ├── lib6.so │ │ │ ├── lib60.so │ │ │ ├── lib61.so │ │ │ ├── lib62.so │ │ │ ├── lib63.so │ │ │ ├── lib64.so │ │ │ ├── lib65.so │ │ │ ├── lib66.so │ │ │ ├── lib67.so │ │ │ ├── lib68.so │ │ │ ├── lib69.so │ │ │ ├── lib7.so │ │ │ ├── lib70.so │ │ │ ├── lib71.so │ │ │ ├── lib72.so │ │ │ ├── lib8.so │ │ │ ├── lib9.so │ │ │ ├── libapplication.so │ │ │ ├── libcrypto.so.sdl.1.so │ │ │ ├── libsdl-1.2.so │ │ │ ├── libsdl_main.so │ │ │ ├── libsdl_native_helpers.so │ │ │ ├── libsdl_ttf.so │ │ │ └── libtermux.so │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── addfile.png │ │ ├── appicon.png │ │ ├── b1.png │ │ ├── b2.png │ │ ├── b3.png │ │ ├── b4.png │ │ ├── b5.png │ │ ├── b6.png │ │ ├── back72x72.png │ │ ├── banner.png │ │ ├── bg_mdialog.xml │ │ ├── bg_mdialogbottom.xml │ │ ├── box86logo.png │ │ ├── calibrate.png │ │ ├── current_session.xml │ │ ├── current_session_black.xml │ │ ├── discord72x72.png │ │ ├── dpad.png │ │ ├── fb72x72.png │ │ ├── file72x72.png │ │ ├── folder72x72.png │ │ ├── github72x72.png │ │ ├── home72x72.png │ │ ├── ic_baseline_menu_24.xml │ │ ├── ic_foreground.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_new_session.xml │ │ ├── ic_service_notification.xml │ │ ├── icon.png │ │ ├── info72x72.png │ │ ├── keyboard.png │ │ ├── lib72x72.png │ │ ├── menu72x72.png │ │ ├── nav_color.xml │ │ ├── openfl64x64.png │ │ ├── publisherlogo.png │ │ ├── rectangle.png │ │ ├── selected_session_background.xml │ │ ├── selected_session_background_black.xml │ │ ├── session_ripple.xml │ │ ├── session_ripple_black.xml │ │ ├── setting72x72.png │ │ ├── tar72x72.png │ │ ├── terminal_scroll_shape.xml │ │ ├── tv_border_left.jpg │ │ ├── tv_border_top.jpg │ │ ├── un72x72.png │ │ ├── wine72x72.png │ │ └── youtube72x72.png │ │ ├── layout │ │ ├── about.xml │ │ ├── activity_main.xml │ │ ├── dialog.xml │ │ ├── dialog_loading.xml │ │ ├── drawer_layout.xml │ │ ├── extra_keys_main.xml │ │ ├── extra_keys_right.xml │ │ ├── filemgr.xml │ │ ├── home.xml │ │ ├── layout_navigation.xml │ │ ├── layout_setting.xml │ │ ├── library.xml │ │ ├── library_layout.xml │ │ ├── line_in_drawer.xml │ │ ├── main.xml │ │ ├── mods.xml │ │ ├── notification.xml │ │ ├── screensize.xml │ │ ├── setting.xml │ │ └── wine.xml │ │ ├── menu │ │ └── menu_navigation.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── raw │ │ ├── bell.ogg │ │ ├── dualshock.raw │ │ ├── gba.raw │ │ ├── keen.raw │ │ ├── n64.raw │ │ ├── psx.raw │ │ ├── retro.raw │ │ ├── simpletheme.raw │ │ ├── snes.raw │ │ ├── sun.raw │ │ ├── ultimatedroid.raw │ │ └── xsdl.raw │ │ ├── values-night │ │ └── themes.xml │ │ ├── values │ │ ├── colors.xml │ │ ├── dimen.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml │ │ └── xml │ │ ├── amiga.xml │ │ ├── amiga_alt.xml │ │ ├── amiga_alt_shift.xml │ │ ├── amiga_old.xml │ │ ├── amiga_shift.xml │ │ ├── atari800.xml │ │ ├── c64.xml │ │ ├── qwerty.xml │ │ ├── qwerty_alt.xml │ │ ├── qwerty_alt_shift.xml │ │ ├── qwerty_shift.xml │ │ └── shortcuts.xml │ └── test │ └── java │ └── com │ └── allplatform │ └── box86 │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── terminal-emulator ├── build.gradle ├── proguard-rules.pro └── src │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── termux │ │ │ └── terminal │ │ │ ├── ByteQueue.java │ │ │ ├── EmulatorDebug.java │ │ │ ├── JNI.java │ │ │ ├── KeyHandler.java │ │ │ ├── TerminalBuffer.java │ │ │ ├── TerminalColorScheme.java │ │ │ ├── TerminalColors.java │ │ │ ├── TerminalEmulator.java │ │ │ ├── TerminalOutput.java │ │ │ ├── TerminalRow.java │ │ │ ├── TerminalSession.java │ │ │ ├── TextStyle.java │ │ │ └── WcWidth.java │ └── jni │ │ ├── Android.mk │ │ └── termux.c │ └── test │ └── java │ └── com │ └── termux │ └── terminal │ ├── ByteQueueTest.java │ ├── ControlSequenceIntroducerTest.java │ ├── CursorAndScreenTest.java │ ├── DecSetTest.java │ ├── DeviceControlStringTest.java │ ├── HistoryTest.java │ ├── KeyHandlerTest.java │ ├── OperatingSystemControlTest.java │ ├── RectangularAreasTest.java │ ├── ResizeTest.java │ ├── ScreenBufferTest.java │ ├── ScrollRegionTest.java │ ├── TerminalRowTest.java │ ├── TerminalTest.java │ ├── TerminalTestCase.java │ ├── TextStyleTest.java │ ├── UnicodeInputTest.java │ └── WcWidthTest.java └── terminal-view ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── termux │ └── view │ ├── GestureAndScaleRecognizer.java │ ├── TerminalRenderer.java │ ├── TerminalView.java │ └── TerminalViewClient.java └── res ├── drawable ├── text_select_handle_left_material.xml └── text_select_handle_right_material.xml └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | 17 | # Project exclude paths 18 | /terminal-emulator/build/ 19 | /terminal-emulator/build/intermediates/javac/debug/classes/ 20 | /terminal-view/build/ 21 | /terminal-view/build/intermediates/javac/debug/classes/ -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "app/src/main/assets/WineBox86.zip/box86"] 2 | path = app/src/main/assets/WineBox86.zip/box86 3 | url = https://github.com/ptitSeb/box86.git 4 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | AndroidBox86 -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Discontinued 2 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'com.android.application' 3 | } 4 | 5 | android { 6 | compileSdk 31 7 | 8 | defaultConfig { 9 | applicationId "com.allplatform.box86" 10 | minSdk 21 11 | targetSdk 28 12 | versionCode 1 13 | versionName "0.1" 14 | 15 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 16 | } 17 | 18 | buildTypes { 19 | release { 20 | minifyEnabled false 21 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 22 | } 23 | } 24 | compileOptions { 25 | sourceCompatibility JavaVersion.VERSION_1_8 26 | targetCompatibility JavaVersion.VERSION_1_8 27 | } 28 | } 29 | 30 | dependencies { 31 | implementation 'androidx.appcompat:appcompat:1.3.1' 32 | implementation 'com.google.android.material:material:1.4.0' 33 | implementation 'androidx.constraintlayout:constraintlayout:2.1.1' 34 | testImplementation 'junit:junit:4.+' 35 | androidTestImplementation 'androidx.test.ext:junit:1.1.3' 36 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' 37 | implementation 'com.squareup.picasso:picasso:2.5.2' 38 | implementation project(":terminal-view") 39 | } -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile -------------------------------------------------------------------------------- /app/src/androidTest/java/com/allplatform/box86/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86; 2 | 3 | import android.content.Context; 4 | 5 | import androidx.test.platform.app.InstrumentationRegistry; 6 | import androidx.test.ext.junit.runners.AndroidJUnit4; 7 | 8 | import org.junit.Test; 9 | import org.junit.runner.RunWith; 10 | 11 | import static org.junit.Assert.*; 12 | 13 | /** 14 | * Instrumented test, which will execute on an Android device. 15 | * 16 | * @see Testing documentation 17 | */ 18 | @RunWith(AndroidJUnit4.class) 19 | public class ExampleInstrumentedTest { 20 | @Test 21 | public void useAppContext() { 22 | // Context of the app under test. 23 | Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); 24 | assertEquals("com.allplatform.box86", appContext.getPackageName()); 25 | } 26 | } -------------------------------------------------------------------------------- /app/src/main/assets/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/assets/DroidSansMono.ttf -------------------------------------------------------------------------------- /app/src/main/assets/bin-map.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/assets/bin-map.zip -------------------------------------------------------------------------------- /app/src/main/assets/data-2.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/assets/data-2.tgz -------------------------------------------------------------------------------- /app/src/main/java/com/allplatform/box86/main/About.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86.main; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import android.view.LayoutInflater; 6 | import android.view.View; 7 | import android.view.ViewGroup; 8 | import android.widget.Button; 9 | 10 | import androidx.annotation.NonNull; 11 | import androidx.annotation.Nullable; 12 | import androidx.fragment.app.Fragment; 13 | 14 | import com.allplatform.box86.R; 15 | import com.allplatform.box86.other.Run; 16 | 17 | public class About extends Fragment { 18 | @Nullable 19 | @Override 20 | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { 21 | View view = inflater.inflate(R.layout.about, container, false); 22 | Button button = (Button) view.findViewById(R.id.button9); 23 | button.setOnClickListener(new View.OnClickListener() { 24 | @Override 25 | public void onClick(View v) { 26 | startActivity(new Intent(getContext(), x.org.server.MainActivity.class)); 27 | } 28 | }); 29 | Button button1 = (Button) view.findViewById(R.id.button10); 30 | button1.setOnClickListener(new View.OnClickListener() { 31 | @Override 32 | public void onClick(View v) { 33 | startActivity(new Intent(getContext(), com.termux.app.TermuxActivity.class)); 34 | } 35 | }); 36 | 37 | Button button2 = (Button) view.findViewById(R.id.WineCMD); 38 | button2.setOnClickListener(new View.OnClickListener() { 39 | @Override 40 | public void onClick(View v) { 41 | boolean MODE = false; 42 | Run run = new Run(); 43 | run.WineCmd(getContext(), MODE); 44 | } 45 | }); 46 | 47 | return view; 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /app/src/main/java/com/allplatform/box86/main/Mod.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86.main; 2 | 3 | import android.os.Bundle; 4 | import android.view.LayoutInflater; 5 | import android.view.View; 6 | import android.view.ViewGroup; 7 | 8 | import androidx.annotation.NonNull; 9 | import androidx.annotation.Nullable; 10 | import androidx.fragment.app.Fragment; 11 | 12 | import com.allplatform.box86.R; 13 | 14 | public class Mod extends Fragment { 15 | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { 16 | View view = inflater.inflate(R.layout.mods, container, false); 17 | return view; 18 | } 19 | 20 | } 21 | -------------------------------------------------------------------------------- /app/src/main/java/com/allplatform/box86/other/InstallAssets.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86.other; 2 | 3 | import android.os.Bundle; 4 | import android.view.LayoutInflater; 5 | import android.view.View; 6 | import android.view.ViewGroup; 7 | import android.widget.ProgressBar; 8 | import android.widget.Toast; 9 | 10 | import androidx.annotation.NonNull; 11 | import androidx.annotation.Nullable; 12 | import androidx.fragment.app.DialogFragment; 13 | 14 | import com.allplatform.box86.R; 15 | 16 | import java.io.File; 17 | import java.io.FileNotFoundException; 18 | import java.io.FileOutputStream; 19 | import java.io.IOException; 20 | import java.io.InputStream; 21 | import java.util.zip.ZipEntry; 22 | import java.util.zip.ZipInputStream; 23 | 24 | public class InstallAssets extends DialogFragment { 25 | ProgressBar progressBar; 26 | public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { 27 | super.onCreateView(inflater, container, savedInstanceState); 28 | View view = inflater.inflate(R.layout.dialog_loading, container, false); 29 | progressBar = (ProgressBar) view.findViewById(R.id.progressBar); 30 | getDialog().setCancelable(false); 31 | Thread thread = new Thread(new Runnable() { 32 | @Override 33 | public void run() { 34 | try { 35 | unzip(new File("/data/data/com.allplatform.box86/home")); 36 | } catch (IOException e) { 37 | e.printStackTrace(); 38 | } 39 | try { 40 | Runtime.getRuntime().exec("chmod -R 777 /data/data/com.allplatform.box86/home"); 41 | } catch (IOException e) { 42 | e.printStackTrace(); 43 | Toast.makeText(getContext(), "Error chmod", Toast.LENGTH_SHORT).show(); 44 | } 45 | } 46 | }); 47 | thread.start(); 48 | return view; 49 | } 50 | public void unzip(File targetDirectory) throws IOException { 51 | InputStream inputStream = getActivity().getAssets().open("WineBox86.zip"); 52 | ZipInputStream zis = new ZipInputStream(inputStream); 53 | try { 54 | ZipEntry ze; 55 | int count; 56 | byte[] buffer = new byte[8192]; 57 | while ((ze = zis.getNextEntry()) != null) { 58 | File file = new File(targetDirectory, ze.getName()); 59 | File dir = ze.isDirectory() ? file : file.getParentFile(); 60 | if (!dir.isDirectory() && !dir.mkdirs()) 61 | throw new FileNotFoundException("Failed to ensure directory: " + 62 | dir.getAbsolutePath()); 63 | if (ze.isDirectory()) 64 | continue; 65 | FileOutputStream fout = new FileOutputStream(file); 66 | try { 67 | while ((count = zis.read(buffer)) != -1) 68 | fout.write(buffer, 0, count); 69 | } finally { 70 | fout.close(); 71 | } 72 | } 73 | } finally { 74 | zis.close(); 75 | dismiss(); 76 | } 77 | } 78 | } 79 | 80 | -------------------------------------------------------------------------------- /app/src/main/java/com/allplatform/box86/other/Run.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86.other; 2 | 3 | import android.content.Context; 4 | import android.content.Intent; 5 | 6 | import com.allplatform.box86.MainActivity; 7 | import com.termux.app.RunCommandService; 8 | 9 | import java.io.File; 10 | import java.io.FileWriter; 11 | import java.io.IOException; 12 | 13 | public class Run { 14 | final String PKG = "/data/data/com.allplatform.box86"; 15 | final String BOX86 = PKG + "/home/Wine/box86"; 16 | final String WINE = PKG + "/home/Wine/x86/bin/wine"; 17 | final String LIBDIR = PKG+ "/home/Wine/lib"; 18 | final String LD_LIBRARY_PATH="LD_LIBRARY_PATH=" + LIBDIR; 19 | final String RUN = PKG + "/home/run.sh"; 20 | public void RunWine(String Winescr, String Winefrefix, boolean MODE, Context context) { 21 | final String SETTING; 22 | final String WINEFREFIX = Winefrefix; 23 | String WINESCR = Winescr; 24 | String TFM = PKG + "/home/TFM.exe"; 25 | String DESKTOPSHELL = "explorer /desktop=shell," + WINESCR + " " + TFM; 26 | if (MainActivity.setting.getAll().toString().replaceAll("\\{","").replaceAll("\\}","") == ""){ 27 | SETTING = ""; 28 | }else { 29 | SETTING = MainActivity.setting.getAll().toString().replaceAll("\\{", "").replaceAll("\\}", "").replaceAll(",","") + " "; 30 | } 31 | 32 | if (WINEFREFIX == null) { 33 | try { 34 | FileWriter mFileWriter = new FileWriter(RUN); 35 | mFileWriter.write(LD_LIBRARY_PATH + " " + SETTING + " " + BOX86 + " " + WINE + " " + DESKTOPSHELL + ">/sdcard/Box86Log.txt"); 36 | mFileWriter.close(); 37 | } catch (IOException e) { 38 | e.printStackTrace(); 39 | } 40 | } else { 41 | try { 42 | FileWriter mFileWriter = new FileWriter(RUN); 43 | mFileWriter.write(LD_LIBRARY_PATH + " " + SETTING + " " + WINEFREFIX); 44 | mFileWriter.close(); 45 | } catch (IOException e) { 46 | e.printStackTrace(); 47 | } 48 | } 49 | 50 | try { 51 | Runtime.getRuntime().exec("chmod 777 " + RUN); 52 | } catch (IOException e) { 53 | e.printStackTrace(); 54 | } 55 | 56 | //x.org.server.Settings 57 | 58 | File resetsetting = new File(PKG + "/files/libsdl-settings.cfg"); 59 | if (resetsetting.exists()) { 60 | resetsetting.delete(); 61 | } 62 | //RUN XServer XSDL 63 | context.startActivity(new Intent(context, x.org.server.MainActivity.class)); 64 | //Run TERMUX Service 65 | StartTermux(context, RUN ,MODE); 66 | } 67 | 68 | private void StartTermux(Context context, String RUN, boolean MODE) { 69 | context.startService(new Intent(context, RunCommandService.class) 70 | .putExtra("com.termux.RUN_COMMAND_PATH", "/system/bin/sh") 71 | .putExtra("com.termux.RUN_COMMAND_ARGUMENTS", new String[]{RUN}) 72 | .putExtra("com.termux.RUN_COMMAND_BACKGROUND", MODE)); 73 | } 74 | 75 | public void WineCmd(Context context, boolean MODE) { 76 | try { 77 | FileWriter mFileWriter = new FileWriter(RUN); 78 | mFileWriter.write(LD_LIBRARY_PATH + " " + BOX86 + " " + WINE + " " + "cmd"); 79 | mFileWriter.close(); 80 | } catch (IOException e) { 81 | e.printStackTrace(); 82 | } 83 | StartTermux(context, RUN, MODE); 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /app/src/main/java/com/allplatform/box86/other/mDialog.java: -------------------------------------------------------------------------------- 1 | package com.allplatform.box86.other; 2 | 3 | import android.app.Dialog; 4 | import android.content.Context; 5 | import android.content.SharedPreferences; 6 | import android.view.LayoutInflater; 7 | import android.view.View; 8 | import android.view.Window; 9 | import android.widget.TextView; 10 | 11 | import androidx.fragment.app.FragmentActivity; 12 | 13 | import com.allplatform.box86.MainActivity; 14 | import com.allplatform.box86.R; 15 | 16 | public class mDialog { 17 | public mDialog(FragmentActivity fragmentActivity, Context context, int title, int body, String ok, String cancel, int code) { 18 | LayoutInflater inflater = LayoutInflater.from(context); 19 | View view = inflater.inflate(R.layout.dialog, null); 20 | TextView Tntitle = (TextView) view.findViewById(R.id.dialog_title); 21 | Tntitle.setText(title); 22 | TextView Tbody = (TextView) view.findViewById(R.id.dialog_body); 23 | Tbody.setText(body); 24 | TextView Tok = (TextView) view.findViewById(R.id.dialog_ok); 25 | Tok.setText(ok); 26 | TextView Tcancel = (TextView) view.findViewById(R.id.dialog_cancel); 27 | Tcancel.setText(cancel); 28 | Dialog dialog = new Dialog(context); 29 | dialog.requestWindowFeature(Window.FEATURE_NO_TITLE); 30 | dialog.setContentView(view); 31 | dialog.setCancelable(false); 32 | dialog.show(); 33 | SharedPreferences.Editor Editor = MainActivity.data.edit(); 34 | if (code == 1) { 35 | click(fragmentActivity, Editor, dialog, Tcancel, Tok); 36 | } 37 | if (code == 2) { 38 | click2(Editor, dialog, Tcancel, Tok); 39 | } 40 | } 41 | private void click2(SharedPreferences.Editor Editor, Dialog dialog, TextView Tcancel, TextView Tok) { 42 | Tok.setOnClickListener(new View.OnClickListener() { 43 | @Override 44 | public void onClick(View v) { 45 | dialog.dismiss(); 46 | } 47 | }); 48 | Tcancel.setOnClickListener(new View.OnClickListener() { 49 | @Override 50 | public void onClick(View v) { 51 | dialog.dismiss(); 52 | Editor.putInt("lib", 1).apply(); 53 | } 54 | }); 55 | } 56 | 57 | private void click(FragmentActivity fragmentActivity, SharedPreferences.Editor Editor, Dialog dialog, TextView Tcancel, TextView Tok) { 58 | Tok.setOnClickListener(new View.OnClickListener() { 59 | @Override 60 | public void onClick(View v) { 61 | dialog.dismiss(); 62 | if (MainActivity.data.getInt("InstallAssets", 0) == 1) { 63 | // 64 | } else { 65 | InstallAssets installAssets = new InstallAssets(); 66 | installAssets.show(fragmentActivity.getSupportFragmentManager(), "install"); 67 | Editor.putInt("InstallAssets", 1).apply(); 68 | } 69 | } 70 | }); 71 | Tcancel.setOnClickListener(new View.OnClickListener() { 72 | @Override 73 | public void onClick(View v) { 74 | dialog.dismiss(); 75 | Editor.putInt("home", 1).apply(); 76 | if (MainActivity.data.getInt("InstallAssets", 0) == 1) { 77 | // 78 | } else { 79 | InstallAssets installAssets = new InstallAssets(); 80 | installAssets.show(fragmentActivity.getSupportFragmentManager(), "install"); 81 | Editor.putInt("InstallAssets", 1).apply(); 82 | } 83 | } 84 | }); 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /app/src/main/java/com/termux/app/BellUtil.java: -------------------------------------------------------------------------------- 1 | package com.termux.app; 2 | 3 | import android.content.Context; 4 | import android.os.Handler; 5 | import android.os.Looper; 6 | import android.os.SystemClock; 7 | import android.os.Vibrator; 8 | 9 | public class BellUtil { 10 | private static BellUtil instance = null; 11 | private static final Object lock = new Object(); 12 | 13 | public static BellUtil getInstance(Context context) { 14 | if (instance == null) { 15 | synchronized (lock) { 16 | if (instance == null) { 17 | instance = new BellUtil((Vibrator) context.getApplicationContext().getSystemService(Context.VIBRATOR_SERVICE)); 18 | } 19 | } 20 | } 21 | 22 | return instance; 23 | } 24 | 25 | private static final long DURATION = 50; 26 | private static final long MIN_PAUSE = 3 * DURATION; 27 | 28 | private final Handler handler = new Handler(Looper.getMainLooper()); 29 | private long lastBell = 0; 30 | private final Runnable bellRunnable; 31 | 32 | private BellUtil(final Vibrator vibrator) { 33 | bellRunnable = new Runnable() { 34 | @Override 35 | public void run() { 36 | if (vibrator != null) { 37 | vibrator.vibrate(DURATION); 38 | } 39 | } 40 | }; 41 | } 42 | 43 | public synchronized void doBell() { 44 | long now = now(); 45 | long timeSinceLastBell = now - lastBell; 46 | 47 | if (timeSinceLastBell < 0) { 48 | // there is a next bell pending; don't schedule another one 49 | } else if (timeSinceLastBell < MIN_PAUSE) { 50 | // there was a bell recently, scheudle the next one 51 | handler.postDelayed(bellRunnable, MIN_PAUSE - timeSinceLastBell); 52 | lastBell = lastBell + MIN_PAUSE; 53 | } else { 54 | // the last bell was long ago, do it now 55 | bellRunnable.run(); 56 | lastBell = now; 57 | } 58 | } 59 | 60 | private long now() { 61 | return SystemClock.uptimeMillis(); 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /app/src/main/java/com/termux/app/DialogUtils.java: -------------------------------------------------------------------------------- 1 | package com.termux.app; 2 | 3 | import android.app.Activity; 4 | import android.app.AlertDialog; 5 | import android.content.DialogInterface; 6 | import android.text.Selection; 7 | import android.util.TypedValue; 8 | import android.view.KeyEvent; 9 | import android.view.ViewGroup.LayoutParams; 10 | import android.widget.EditText; 11 | import android.widget.LinearLayout; 12 | 13 | public final class DialogUtils { 14 | 15 | public interface TextSetListener { 16 | void onTextSet(String text); 17 | } 18 | 19 | public static void textInput(Activity activity, int titleText, String initialText, 20 | int positiveButtonText, final TextSetListener onPositive, 21 | int neutralButtonText, final TextSetListener onNeutral, 22 | int negativeButtonText, final TextSetListener onNegative, 23 | final DialogInterface.OnDismissListener onDismiss) { 24 | final EditText input = new EditText(activity); 25 | input.setSingleLine(); 26 | if (initialText != null) { 27 | input.setText(initialText); 28 | Selection.setSelection(input.getText(), initialText.length()); 29 | } 30 | 31 | final AlertDialog[] dialogHolder = new AlertDialog[1]; 32 | input.setImeActionLabel(activity.getResources().getString(positiveButtonText), KeyEvent.KEYCODE_ENTER); 33 | input.setOnEditorActionListener((v, actionId, event) -> { 34 | onPositive.onTextSet(input.getText().toString()); 35 | dialogHolder[0].dismiss(); 36 | return true; 37 | }); 38 | 39 | float dipInPixels = TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 1, activity.getResources().getDisplayMetrics()); 40 | // https://www.google.com/design/spec/components/dialogs.html#dialogs-specs 41 | int paddingTopAndSides = Math.round(16 * dipInPixels); 42 | int paddingBottom = Math.round(24 * dipInPixels); 43 | 44 | LinearLayout layout = new LinearLayout(activity); 45 | layout.setOrientation(LinearLayout.VERTICAL); 46 | layout.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT)); 47 | layout.setPadding(paddingTopAndSides, paddingTopAndSides, paddingTopAndSides, paddingBottom); 48 | layout.addView(input); 49 | 50 | AlertDialog.Builder builder = new AlertDialog.Builder(activity) 51 | .setTitle(titleText).setView(layout) 52 | .setPositiveButton(positiveButtonText, (d, whichButton) -> onPositive.onTextSet(input.getText().toString())); 53 | 54 | if (onNeutral != null) { 55 | builder.setNeutralButton(neutralButtonText, (dialog, which) -> onNeutral.onTextSet(input.getText().toString())); 56 | } 57 | 58 | if (onNegative == null) { 59 | builder.setNegativeButton(android.R.string.cancel, null); 60 | } else { 61 | builder.setNegativeButton(negativeButtonText, (dialog, which) -> onNegative.onTextSet(input.getText().toString())); 62 | } 63 | 64 | if (onDismiss != null) builder.setOnDismissListener(onDismiss); 65 | 66 | dialogHolder[0] = builder.create(); 67 | dialogHolder[0].setCanceledOnTouchOutside(false); 68 | dialogHolder[0].show(); 69 | } 70 | 71 | } 72 | -------------------------------------------------------------------------------- /app/src/main/java/com/termux/app/FullScreenWorkAround.java: -------------------------------------------------------------------------------- 1 | package com.termux.app; 2 | 3 | import android.graphics.Rect; 4 | import android.view.View; 5 | import android.view.ViewGroup; 6 | 7 | /** 8 | * Work around for fullscreen mode in Termux to fix ExtraKeysView not being visible. 9 | * This class is derived from: 10 | * https://stackoverflow.com/questions/7417123/android-how-to-adjust-layout-in-full-screen-mode-when-softkeyboard-is-visible 11 | * and has some additional tweaks 12 | * --- 13 | * For more information, see https://issuetracker.google.com/issues/36911528 14 | */ 15 | public class FullScreenWorkAround { 16 | private View mChildOfContent; 17 | private int mUsableHeightPrevious; 18 | private ViewGroup.LayoutParams mViewGroupLayoutParams; 19 | 20 | private int mNavBarHeight; 21 | 22 | 23 | public static void apply(TermuxActivity activity) { 24 | new FullScreenWorkAround(activity); 25 | } 26 | 27 | private FullScreenWorkAround(TermuxActivity activity) { 28 | ViewGroup content = activity.findViewById(android.R.id.content); 29 | mChildOfContent = content.getChildAt(0); 30 | mViewGroupLayoutParams = mChildOfContent.getLayoutParams(); 31 | mNavBarHeight = activity.getNavBarHeight(); 32 | mChildOfContent.getViewTreeObserver().addOnGlobalLayoutListener(this::possiblyResizeChildOfContent); 33 | } 34 | 35 | private void possiblyResizeChildOfContent() { 36 | int usableHeightNow = computeUsableHeight(); 37 | if (usableHeightNow != mUsableHeightPrevious) { 38 | int usableHeightSansKeyboard = mChildOfContent.getRootView().getHeight(); 39 | int heightDifference = usableHeightSansKeyboard - usableHeightNow; 40 | if (heightDifference > (usableHeightSansKeyboard / 4)) { 41 | // keyboard probably just became visible 42 | 43 | // ensures that usable layout space does not extend behind the 44 | // soft keyboard, causing the extra keys to not be visible 45 | mViewGroupLayoutParams.height = (usableHeightSansKeyboard - heightDifference) + getNavBarHeight(); 46 | } else { 47 | // keyboard probably just became hidden 48 | mViewGroupLayoutParams.height = usableHeightSansKeyboard; 49 | } 50 | mChildOfContent.requestLayout(); 51 | mUsableHeightPrevious = usableHeightNow; 52 | } 53 | } 54 | 55 | private int getNavBarHeight() { 56 | return mNavBarHeight; 57 | } 58 | 59 | private int computeUsableHeight() { 60 | Rect r = new Rect(); 61 | mChildOfContent.getWindowVisibleDisplayFrame(r); 62 | return (r.bottom - r.top); 63 | } 64 | 65 | } 66 | 67 | -------------------------------------------------------------------------------- /app/src/main/java/com/termux/app/TermuxHelpActivity.java: -------------------------------------------------------------------------------- 1 | package com.termux.app; 2 | 3 | import android.app.Activity; 4 | import android.content.ActivityNotFoundException; 5 | import android.content.Intent; 6 | import android.net.Uri; 7 | import android.os.Bundle; 8 | import android.view.ViewGroup; 9 | import android.webkit.WebSettings; 10 | import android.webkit.WebView; 11 | import android.webkit.WebViewClient; 12 | import android.widget.ProgressBar; 13 | import android.widget.RelativeLayout; 14 | 15 | /** Basic embedded browser for viewing help pages. */ 16 | public final class TermuxHelpActivity extends Activity { 17 | 18 | WebView mWebView; 19 | 20 | @Override 21 | protected void onCreate(Bundle savedInstanceState) { 22 | super.onCreate(savedInstanceState); 23 | 24 | final RelativeLayout progressLayout = new RelativeLayout(this); 25 | RelativeLayout.LayoutParams lParams = new RelativeLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT); 26 | lParams.addRule(RelativeLayout.CENTER_IN_PARENT); 27 | ProgressBar progressBar = new ProgressBar(this); 28 | progressBar.setIndeterminate(true); 29 | progressBar.setLayoutParams(lParams); 30 | progressLayout.addView(progressBar); 31 | 32 | mWebView = new WebView(this); 33 | WebSettings settings = mWebView.getSettings(); 34 | settings.setCacheMode(WebSettings.LOAD_NO_CACHE); 35 | settings.setAppCacheEnabled(false); 36 | setContentView(progressLayout); 37 | mWebView.clearCache(true); 38 | 39 | mWebView.setWebViewClient(new WebViewClient() { 40 | @Override 41 | public boolean shouldOverrideUrlLoading(WebView view, String url) { 42 | if (url.startsWith("https://wiki.termux.com")) { 43 | // Inline help. 44 | setContentView(progressLayout); 45 | return false; 46 | } 47 | 48 | try { 49 | startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)); 50 | } catch (ActivityNotFoundException e) { 51 | // Android TV does not have a system browser. 52 | setContentView(progressLayout); 53 | return false; 54 | } 55 | return true; 56 | } 57 | 58 | @Override 59 | public void onPageFinished(WebView view, String url) { 60 | setContentView(mWebView); 61 | } 62 | }); 63 | mWebView.loadUrl("https://wiki.termux.com/wiki/Main_Page"); 64 | } 65 | 66 | @Override 67 | public void onBackPressed() { 68 | if (mWebView.canGoBack()) { 69 | mWebView.goBack(); 70 | } else { 71 | super.onBackPressed(); 72 | } 73 | } 74 | 75 | } 76 | -------------------------------------------------------------------------------- /app/src/main/java/x/org/server/Advertisement.java: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT THIS FILE - it is automatically generated, ALL YOUR CHANGES WILL BE OVERWRITTEN, edit the file under $JAVA_SRC_PATH dir 2 | /* 3 | Simple DirectMedia Layer 4 | Java source code (C) 2009-2014 Sergii Pylypenko 5 | 6 | This software is provided 'as-is', without any express or implied 7 | warranty. In no event will the authors be held liable for any damages 8 | arising from the use of this software. 9 | 10 | Permission is granted to anyone to use this software for any purpose, 11 | including commercial applications, and to alter it and redistribute it 12 | freely, subject to the following restrictions: 13 | 14 | 1. The origin of this software must not be misrepresented; you must not 15 | claim that you wrote the original software. If you use this software 16 | in a product, an acknowledgment in the product documentation would be 17 | appreciated but is not required. 18 | 2. Altered source versions must be plainly marked as such, and must not be 19 | misrepresented as being the original software. 20 | 3. This notice may not be removed or altered from any source distribution. 21 | */ 22 | 23 | package x.org.server; 24 | 25 | import android.view.View; 26 | 27 | class Advertisement 28 | { 29 | MainActivity parent; 30 | 31 | public Advertisement(MainActivity p) 32 | { 33 | parent = p; 34 | } 35 | 36 | public View getView() 37 | { 38 | return null; 39 | } 40 | 41 | public void requestNewAd() 42 | { 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /app/src/main/java/x/org/server/CloudSave.java: -------------------------------------------------------------------------------- 1 | // DO NOT EDIT THIS FILE - it is automatically generated, ALL YOUR CHANGES WILL BE OVERWRITTEN, edit the file under $JAVA_SRC_PATH dir 2 | /* 3 | Simple DirectMedia Layer 4 | Java source code (C) 2009-2014 Sergii Pylypenko 5 | 6 | This software is provided 'as-is', without any express or implied 7 | warranty. In no event will the authors be held liable for any damages 8 | arising from the use of this software. 9 | 10 | Permission is granted to anyone to use this software for any purpose, 11 | including commercial applications, and to alter it and redistribute it 12 | freely, subject to the following restrictions: 13 | 14 | 1. The origin of this software must not be misrepresented; you must not 15 | claim that you wrote the original software. If you use this software 16 | in a product, an acknowledgment in the product documentation would be 17 | appreciated but is not required. 18 | 2. Altered source versions must be plainly marked as such, and must not be 19 | misrepresented as being the original software. 20 | 3. This notice may not be removed or altered from any source distribution. 21 | */ 22 | 23 | package x.org.server; 24 | 25 | import android.content.Intent; 26 | 27 | // Stub class for compiling without cloud save support 28 | class CloudSave 29 | { 30 | public CloudSave(MainActivity p) 31 | { 32 | } 33 | 34 | public void onStart() { 35 | } 36 | 37 | public void onStop() { 38 | } 39 | 40 | public void onActivityResult(int request, int response, Intent data) { 41 | } 42 | 43 | public boolean save(String filename, String saveId, String dialogTitle, String description, String imageFile, long playedTimeMs) 44 | { 45 | return false; 46 | } 47 | 48 | public boolean load(String filename, String saveId, String dialogTitle) 49 | { 50 | return false; 51 | } 52 | 53 | public boolean isSignedIn() 54 | { 55 | return false; 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /app/src/main/java/x/org/server/RunFromOtherApp.java: -------------------------------------------------------------------------------- 1 | /* 2 | Simple DirectMedia Layer 3 | Java source code (C) 2009-2014 Sergii Pylypenko 4 | 5 | This software is provided 'as-is', without any express or implied 6 | warranty. In no event will the authors be held liable for any damages 7 | arising from the use of this software. 8 | 9 | Permission is granted to anyone to use this software for any purpose, 10 | including commercial applications, and to alter it and redistribute it 11 | freely, subject to the following restrictions: 12 | 13 | 1. The origin of this software must not be misrepresented; you must not 14 | claim that you wrote the original software. If you use this software 15 | in a product, an acknowledgment in the product documentation would be 16 | appreciated but is not required. 17 | 2. Altered source versions must be plainly marked as such, and must not be 18 | misrepresented as being the original software. 19 | 3. This notice may not be removed or altered from any source distribution. 20 | */ 21 | 22 | package x.org.server; 23 | 24 | import android.app.Activity; 25 | import android.content.ComponentName; 26 | import android.content.Intent; 27 | import android.net.Uri; 28 | import android.os.Bundle; 29 | import android.util.Log; 30 | 31 | 32 | public class RunFromOtherApp extends Activity 33 | { 34 | @Override 35 | protected void onCreate(Bundle savedInstanceState) 36 | { 37 | super.onCreate(savedInstanceState); 38 | 39 | Log.i("SDL", "Run from another app, getCallingActivity() is " +( getCallingActivity() == null ? "null" : "not null" )); 40 | 41 | Intent main = new Intent(this, MainActivity.class); 42 | main.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); 43 | if( getIntent().getScheme() != null && getIntent().getScheme().equals("x11") ) 44 | { 45 | int port = getIntent().getData().getPort(); 46 | if (port >= 0) 47 | { 48 | if (port >= 6000) 49 | port -= 6000; 50 | //Globals.CommandLine = Globals.CommandLine + " :" + port; 51 | main.putExtra(RestartMainActivity.SDL_RESTART_PARAMS, ":" + port); 52 | } 53 | } 54 | startActivity(main); 55 | 56 | new Thread(new Runnable() 57 | { 58 | public void run() 59 | { 60 | Log.i("SDL", "Waiting for env vars to be set"); 61 | while( System.getenv("DISPLAY") == null || System.getenv("PULSE_SERVER") == null ) 62 | { 63 | try { 64 | Thread.sleep(300); 65 | } catch (InterruptedException e) {} 66 | } 67 | Log.i("SDL", "Env vars set, returning result, getCallingActivity() is " + (getCallingActivity() == null ? "null" : "not null")); 68 | 69 | if( getCallingActivity() != null ) 70 | { 71 | final ComponentName callingActivity = getCallingActivity().clone(); 72 | Log.i("SDL", "Launching calling activity: " + getCallingActivity().toString()); 73 | new Thread(new Runnable() 74 | { 75 | public void run() 76 | { 77 | try { 78 | Thread.sleep(500); 79 | } catch (InterruptedException e) {} 80 | Intent caller = new Intent(); 81 | caller.setComponent(callingActivity); 82 | caller.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 83 | Log.i("SDL", "Launching calling activity: " + caller.toString()); 84 | startActivity(caller); 85 | } 86 | }).start(); 87 | } 88 | 89 | Intent intent = new Intent(Intent.ACTION_RUN, Uri.parse("x11://run?DISPLAY=" + Uri.encode(System.getenv("DISPLAY")) + "&PULSE_SERVER=" + Uri.encode(System.getenv("PULSE_SERVER")))); 90 | intent.putExtra("DISPLAY", System.getenv("DISPLAY")); 91 | intent.putExtra("PULSE_SERVER", System.getenv("PULSE_SERVER")); 92 | intent.putExtra("run", "export DISPLAY=" + System.getenv("DISPLAY") + " ; export PULSE_SERVER=" + System.getenv("PULSE_SERVER")); 93 | setResult(Activity.RESULT_OK, intent); 94 | finish(); 95 | } 96 | }).start(); 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib0.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib1.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib10.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib10.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib11.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib12.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib12.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib13.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib13.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib14.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib15.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib16.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib17.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib18.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib19.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib20.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib20.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib21.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib22.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib22.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib23.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib24.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib24.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib25.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib25.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib26.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib26.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib27.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib28.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib28.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib29.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib29.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib3.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib30.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib30.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib31.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib32.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib33.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib33.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib34.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib34.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib35.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib35.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib36.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib36.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib37.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib37.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib38.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib39.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib39.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib4.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib40.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib40.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib41.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib41.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib42.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib42.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib43.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib43.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib44.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib44.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib45.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib45.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib46.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib46.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib47.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib47.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib48.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib48.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib49.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib49.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib5.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib50.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib50.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib51.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib51.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib52.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib52.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib53.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib53.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib54.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib55.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib56.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib56.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib57.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib58.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib58.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib59.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib59.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib6.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib60.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib60.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib61.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib61.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib62.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib62.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib63.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib63.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib64.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib65.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib65.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib66.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib66.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib67.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib67.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib68.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib68.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib69.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib69.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib7.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib70.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib70.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib71.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib71.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib72.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib72.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib8.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/lib9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/lib9.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libapplication.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libapplication.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libcrypto.so.sdl.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libcrypto.so.sdl.1.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libsdl-1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libsdl-1.2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libsdl_main.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libsdl_main.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libsdl_native_helpers.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libsdl_native_helpers.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libsdl_ttf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libsdl_ttf.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/armeabi-v7a/libtermux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/armeabi-v7a/libtermux.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib0.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib0.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib1.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib10.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib10.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib11.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib11.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib12.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib12.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib13.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib13.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib14.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib14.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib15.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib15.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib16.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib16.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib17.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib17.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib18.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib18.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib19.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib19.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib20.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib20.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib21.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib21.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib22.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib22.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib23.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib23.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib24.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib24.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib25.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib25.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib26.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib26.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib27.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib27.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib28.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib28.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib29.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib29.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib3.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib3.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib30.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib30.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib31.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib31.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib32.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib33.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib33.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib34.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib34.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib35.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib35.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib36.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib36.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib37.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib37.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib38.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib38.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib39.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib39.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib4.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib4.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib40.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib40.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib41.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib41.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib42.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib42.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib43.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib43.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib44.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib44.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib45.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib45.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib46.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib46.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib47.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib47.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib48.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib48.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib49.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib49.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib5.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib5.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib50.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib50.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib51.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib51.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib52.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib52.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib53.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib53.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib54.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib54.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib55.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib55.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib56.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib56.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib57.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib57.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib58.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib58.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib59.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib59.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib6.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib6.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib60.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib60.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib61.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib61.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib62.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib62.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib63.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib63.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib64.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib65.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib65.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib66.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib66.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib67.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib67.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib68.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib68.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib69.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib69.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib7.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib7.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib70.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib70.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib71.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib71.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib72.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib72.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib8.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib8.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/lib9.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/lib9.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libapplication.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libapplication.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libcrypto.so.sdl.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libcrypto.so.sdl.1.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libsdl-1.2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libsdl-1.2.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libsdl_main.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libsdl_main.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libsdl_native_helpers.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libsdl_native_helpers.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libsdl_ttf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libsdl_ttf.so -------------------------------------------------------------------------------- /app/src/main/jniLibs/x86/libtermux.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/jniLibs/x86/libtermux.so -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 15 | 18 | 21 | 22 | 23 | 24 | 30 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/addfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/addfile.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/appicon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/b6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/b6.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/back72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/back72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/banner.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_mdialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_mdialogbottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/box86logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/box86logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/calibrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/calibrate.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/current_session.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/current_session_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/discord72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/discord72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/dpad.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/fb72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/fb72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/file72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/file72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/folder72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/folder72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/github72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/github72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/home72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/home72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_baseline_menu_24.xml: -------------------------------------------------------------------------------- 1 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 18 | 19 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_new_session.xml: -------------------------------------------------------------------------------- 1 | 6 | 7 | 13 | 14 | 17 | 18 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_service_notification.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 11 | 12 | 14 | 15 | 18 | 19 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/info72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/info72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/keyboard.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/lib72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/lib72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/menu72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/menu72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/nav_color.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/openfl64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/openfl64x64.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/publisherlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/publisherlogo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/rectangle.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/selected_session_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/selected_session_background_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/session_ripple.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/session_ripple_black.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/setting72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/setting72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/tar72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/tar72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/terminal_scroll_shape.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 21 | 22 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/tv_border_left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/tv_border_left.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/tv_border_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/tv_border_top.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/un72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/un72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/wine72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/wine72x72.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/youtube72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllPlatform/Box86Launcher/690304bcd84ba13df6d76226ce9fa994b8983af4/app/src/main/res/drawable/youtube72x72.png -------------------------------------------------------------------------------- /app/src/main/res/layout/about.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 11 | 12 |