{"payload":{"allShortcutsEnabled":false,"fileTree":{"":{"items":[{"name":"VisualC-WinRT","path":"VisualC-WinRT","contentType":"directory"},{"name":"VisualC","path":"VisualC","contentType":"directory"},{"name":"Xcode-iOS","path":"Xcode-iOS","contentType":"directory"},{"name":"Xcode","path":"Xcode","contentType":"directory"},{"name":"acinclude","path":"acinclude","contentType":"directory"},{"name":"android-project","path":"android-project","contentType":"directory"},{"name":"build-scripts","path":"build-scripts","contentType":"directory"},{"name":"cmake","path":"cmake","contentType":"directory"},{"name":"debian","path":"debian","contentType":"directory"},{"name":"include","path":"include","contentType":"directory"},{"name":"premake","path":"premake","contentType":"directory"},{"name":"src","path":"src","contentType":"directory"},{"name":"test","path":"test","contentType":"directory"},{"name":"visualtest","path":"visualtest","contentType":"directory"},{"name":".hgignore","path":".hgignore","contentType":"file"},{"name":"Android.mk","path":"Android.mk","contentType":"file"},{"name":"BUGS.txt","path":"BUGS.txt","contentType":"file"},{"name":"CMakeLists.txt","path":"CMakeLists.txt","contentType":"file"},{"name":"COPYING.txt","path":"COPYING.txt","contentType":"file"},{"name":"CREDITS.txt","path":"CREDITS.txt","contentType":"file"},{"name":"INSTALL.txt","path":"INSTALL.txt","contentType":"file"},{"name":"Makefile.in","path":"Makefile.in","contentType":"file"},{"name":"Makefile.minimal","path":"Makefile.minimal","contentType":"file"},{"name":"Makefile.pandora","path":"Makefile.pandora","contentType":"file"},{"name":"Makefile.psp","path":"Makefile.psp","contentType":"file"},{"name":"Makefile.wiz","path":"Makefile.wiz","contentType":"file"},{"name":"README-SDL.txt","path":"README-SDL.txt","contentType":"file"},{"name":"README-android.txt","path":"README-android.txt","contentType":"file"},{"name":"README-cmake.txt","path":"README-cmake.txt","contentType":"file"},{"name":"README-directfb.txt","path":"README-directfb.txt","contentType":"file"},{"name":"README-dynapi.txt","path":"README-dynapi.txt","contentType":"file"},{"name":"README-gesture.txt","path":"README-gesture.txt","contentType":"file"},{"name":"README-hg.txt","path":"README-hg.txt","contentType":"file"},{"name":"README-ios.txt","path":"README-ios.txt","contentType":"file"},{"name":"README-linux.txt","path":"README-linux.txt","contentType":"file"},{"name":"README-macosx.txt","path":"README-macosx.txt","contentType":"file"},{"name":"README-nacl.txt","path":"README-nacl.txt","contentType":"file"},{"name":"README-pandora.txt","path":"README-pandora.txt","contentType":"file"},{"name":"README-platforms.txt","path":"README-platforms.txt","contentType":"file"},{"name":"README-porting.txt","path":"README-porting.txt","contentType":"file"},{"name":"README-psp.txt","path":"README-psp.txt","contentType":"file"},{"name":"README-raspberrypi.txt","path":"README-raspberrypi.txt","contentType":"file"},{"name":"README-touch.txt","path":"README-touch.txt","contentType":"file"},{"name":"README-wince.txt","path":"README-wince.txt","contentType":"file"},{"name":"README-windows.txt","path":"README-windows.txt","contentType":"file"},{"name":"README-winrt.txt","path":"README-winrt.txt","contentType":"file"},{"name":"README.txt","path":"README.txt","contentType":"file"},{"name":"SDL2.spec.in","path":"SDL2.spec.in","contentType":"file"},{"name":"TODO.txt","path":"TODO.txt","contentType":"file"},{"name":"VisualC.html","path":"VisualC.html","contentType":"file"},{"name":"WhatsNew.txt","path":"WhatsNew.txt","contentType":"file"},{"name":"autogen.sh","path":"autogen.sh","contentType":"file"},{"name":"cmake_uninstall.cmake.in","path":"cmake_uninstall.cmake.in","contentType":"file"},{"name":"configure","path":"configure","contentType":"file"},{"name":"configure.in","path":"configure.in","contentType":"file"},{"name":"sdl2-config.in","path":"sdl2-config.in","contentType":"file"},{"name":"sdl2.m4","path":"sdl2.m4","contentType":"file"},{"name":"sdl2.pc.in","path":"sdl2.pc.in","contentType":"file"}],"totalCount":58}},"fileTreeProcessingTime":4.916841,"foldersToFetch":[],"repo":{"id":330008801,"defaultBranch":"main","name":"SDL","ownerLogin":"libsdl-org","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-01-15T19:55:54.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/77683370?v=4","public":true,"private":false,"isOrgOwned":true},"symbolsExpanded":false,"treeExpanded":true,"refInfo":{"name":"a838a56d45b237888810ca4c76d9345fe98f27f6","listCacheKey":"v0:1709678518.0","canEdit":false,"refType":"tree","currentOid":"a838a56d45b237888810ca4c76d9345fe98f27f6"},"path":"README-android.txt","currentUser":null,"blob":{"rawLines":["================================================================================\r","Simple DirectMedia Layer for Android\r","================================================================================\r","\r","Requirements:\r","\r","Android SDK (version 12 or later)\r","http://developer.android.com/sdk/index.html\r","\r","Android NDK r7 or later\r","http://developer.android.com/tools/sdk/ndk/index.html\r","\r","Minimum API level supported by SDL: 10 (Android 2.3.3)\r","Joystick support is available for API level >=12 devices.\r","\r","================================================================================\r"," How the port works\r","================================================================================\r","\r","- Android applications are Java-based, optionally with parts written in C\r","- As SDL apps are C-based, we use a small Java shim that uses JNI to talk to \r","the SDL library\r","- This means that your application C code must be placed inside an Android \r","Java project, along with some C support code that communicates with Java\r","- This eventually produces a standard Android .apk package\r","\r","The Android Java code implements an \"Activity\" and can be found in:\r","android-project/src/org/libsdl/app/SDLActivity.java\r","\r","The Java code loads your game code, the SDL shared library, and\r","dispatches to native functions implemented in the SDL library:\r","src/core/android/SDL_android.c\r","\r","Your project must include some glue code that starts your main() routine:\r","src/main/android/SDL_android_main.c\r","\r","\r","================================================================================\r"," Building an app\r","================================================================================\r","\r","For simple projects you can use the script located at build-scripts/androidbuild.sh\r","\r","There's two ways of using it:\r","\r","androidbuild.sh com.yourcompany.yourapp < sources.list\r","androidbuild.sh com.yourcompany.yourapp source1.c source2.c ...sourceN.c\r","\r","sources.list should be a text file with a source file name in each line\r","Filenames should be specified relative to the current directory, for example if\r","you are in the build-scripts directory and want to create the testgles.c test, you'll\r","run:\r"," \r","./androidbuild.sh org.libsdl.testgles ../test/testgles.c\r","\r","One limitation of this script is that all sources provided will be aggregated into\r","a single directory, thus all your source files should have a unique name.\r","\r","Once the project is complete the script will tell you where the debug APK is located.\r","If you want to create a signed release APK, you can use the project created by this\r","utility to generate it.\r","\r","Finally, a word of caution: re running androidbuild.sh wipes any changes you may have\r","done in the build directory for the app!\r","\r","\r","For more complex projects, follow these instructions:\r"," \r","1. Copy the android-project directory wherever you want to keep your projects\r"," and rename it to the name of your project.\r","2. Move or symlink this SDL directory into the /jni directory\r","3. Edit /jni/src/Android.mk to include your source files\r","4. Run 'ndk-build' (a script provided by the NDK). This compiles the C source\r","\r","If you want to use the Eclipse IDE, skip to the Eclipse section below.\r","\r","5. Create /local.properties and use that to point to the Android SDK directory, by writing a line with the following form:\r","sdk.dir=PATH_TO_ANDROID_SDK\r","6. Run 'ant debug' in android/project. This compiles the .java and eventually \r"," creates a .apk with the native code embedded\r","7. 'ant debug install' will push the apk to the device or emulator (if connected)\r","\r","Here's an explanation of the files in the Android project, so you can customize them:\r","\r","android-project/\r","\tAndroidManifest.xml\t- package manifest. Among others, it contains the class name\r","\t\t\t\t of the main Activity and the package name of the application.\r","\tbuild.properties\t- empty\r","\tbuild.xml\t\t- build description file, used by ant. The actual application name\r","\t\t\t\t is specified here.\r","\tdefault.properties\t- holds the target ABI for the application, android-10 and up\r","\tproject.properties\t- holds the target ABI for the application, android-10 and up\r","\tlocal.properties\t- holds the SDK path, you should change this to the path to your SDK\r","\tjni/\t\t\t- directory holding native code\r","\tjni/Android.mk\t\t- Android makefile that can call recursively the Android.mk files\r","\t\t\t\t in all subdirectories\r","\tjni/SDL/\t\t- (symlink to) directory holding the SDL library files\r","\tjni/SDL/Android.mk\t- Android makefile for creating the SDL shared library\r","\tjni/src/\t\t- directory holding your C/C++ source\r","\tjni/src/Android.mk\t- Android makefile that you should customize to include your \r"," source code and any library references\r","\tres/\t\t\t- directory holding resources for your application\r","\tres/drawable-*\t\t- directories holding icons for different phone hardware. Could be\r","\t\t\t\t one dir called \"drawable\".\r","\tres/layout/main.xml\t- Usually contains a file main.xml, which declares the screen layout.\r","\t\t\t\t We don't need it because we use the SDL video output.\r","\tres/values/strings.xml\t- strings used in your application, including the application name\r","\t\t\t\t shown on the phone.\r","\tsrc/org/libsdl/app/SDLActivity.java - the Java class handling the initialization and binding\r","\t\t\t\t to SDL. Be very careful changing this, as the SDL library relies\r","\t\t\t\t on this implementation.\r","\r","\r","================================================================================\r"," Build an app with static linking of libSDL\r","================================================================================\r","\r","This build uses the Android NDK module system.\r","\r","Instructions:\r","1. Copy the android-project directory wherever you want to keep your projects\r"," and rename it to the name of your project.\r","2. Rename /jni/src/Android_static.mk to /jni/src/Android.mk\r"," (overwrite the existing one)\r","3. Edit /jni/src/Android.mk to include your source files\r","4. create and export an environment variable named NDK_MODULE_PATH that points\r"," to the parent directory of this SDL directory. e.g.:\r","\r"," export NDK_MODULE_PATH=\"$PWD\"/..\r","\r","5. Edit /src/org/libsdl/app/SDLActivity.java and remove the call to\r"," System.loadLibrary(\"SDL2\") line 42.\r","6. Run 'ndk-build' (a script provided by the NDK). This compiles the C source\r","\r","\r","================================================================================\r"," Customizing your application name\r","================================================================================\r","\r","To customize your application name, edit AndroidManifest.xml and replace\r","\"org.libsdl.app\" with an identifier for your product package.\r","\r","Then create a Java class extending SDLActivity and place it in a directory\r","under src matching your package, e.g.\r","\tsrc/com/gamemaker/game/MyGame.java\r","\r","Here's an example of a minimal class file:\r","--- MyGame.java --------------------------\r","package com.gamemaker.game;\r","\r","import org.libsdl.app.SDLActivity; \r","\r","/* \r"," * A sample wrapper class that just calls SDLActivity \r"," */ \r","\r","public class MyGame extends SDLActivity { }\r","\r","------------------------------------------\r","\r","Then replace \"SDLActivity\" in AndroidManifest.xml with the name of your\r","class, .e.g. \"MyGame\"\r","\r","================================================================================\r"," Customizing your application icon\r","================================================================================\r","\r","Conceptually changing your icon is just replacing the \"ic_launcher.png\" files in\r","the drawable directories under the res directory. There are four directories for\r","different screen sizes. These can be replaced with one dir called \"drawable\",\r","containing an icon file \"ic_launcher.png\" with dimensions 48x48 or 72x72.\r","\r","You may need to change the name of your icon in AndroidManifest.xml to match\r","this icon filename.\r","\r","================================================================================\r"," Loading assets\r","================================================================================\r","\r","Any files you put in the \"assets\" directory of your android-project directory\r","will get bundled into the application package and you can load them using the\r","standard functions in SDL_rwops.h.\r","\r","There are also a few Android specific functions that allow you to get other\r","useful paths for saving and loading data:\r","SDL_AndroidGetInternalStoragePath()\r","SDL_AndroidGetExternalStorageState()\r","SDL_AndroidGetExternalStoragePath()\r","\r","See SDL_system.h for more details on these functions.\r","\r","The asset packaging system will, by default, compress certain file extensions.\r","SDL includes two asset file access mechanisms, the preferred one is the so\r","called \"File Descriptor\" method, which is faster and doesn't involve the Dalvik\r","GC, but given this method does not work on compressed assets, there is also the\r","\"Input Stream\" method, which is automatically used as a fall back by SDL. You\r","may want to keep this fact in mind when building your APK, specially when large\r","files are involved.\r","For more information on which extensions get compressed by default and how to\r","disable this behaviour, see for example:\r"," \r","http://ponystyle.com/blog/2010/03/26/dealing-with-asset-compression-in-android-apps/\r","\r","================================================================================\r"," Pause / Resume behaviour\r","================================================================================\r","\r","If SDL is compiled with SDL_ANDROID_BLOCK_ON_PAUSE defined (the default),\r","the event loop will block itself when the app is paused (ie, when the user\r","returns to the main Android dashboard). Blocking is better in terms of battery\r","use, and it allows your app to spring back to life instantaneously after resume\r","(versus polling for a resume message).\r","\r","Upon resume, SDL will attempt to restore the GL context automatically.\r","In modern devices (Android 3.0 and up) this will most likely succeed and your\r","app can continue to operate as it was.\r","\r","However, there's a chance (on older hardware, or on systems under heavy load),\r","where the GL context can not be restored. In that case you have to listen for\r","a specific message, (which is not yet implemented!) and restore your textures\r","manually or quit the app (which is actually the kind of behaviour you'll see\r","under iOS, if the OS can not restore your GL context it will just kill your app)\r","\r","================================================================================\r"," Threads and the Java VM\r","================================================================================\r","\r","For a quick tour on how Linux native threads interoperate with the Java VM, take\r","a look here: http://developer.android.com/guide/practices/jni.html\r","If you want to use threads in your SDL app, it's strongly recommended that you\r","do so by creating them using SDL functions. This way, the required attach/detach\r","handling is managed by SDL automagically. If you have threads created by other\r","means and they make calls to SDL functions, make sure that you call\r","Android_JNI_SetupThread before doing anything else otherwise SDL will attach\r","your thread automatically anyway (when you make an SDL call), but it'll never\r","detach it.\r","\r","================================================================================\r"," Using STL\r","================================================================================\r","\r","You can use STL in your project by creating an Application.mk file in the jni\r","folder and adding the following line:\r","APP_STL := stlport_static\r","\r","For more information check out CPLUSPLUS-SUPPORT.html in the NDK documentation.\r","\r","================================================================================\r"," Additional documentation\r","================================================================================\r","\r","The documentation in the NDK docs directory is very helpful in understanding the\r","build process and how to work with native code on the Android platform.\r","\r","The best place to start is with docs/OVERVIEW.TXT\r","\r","\r","================================================================================\r"," Using Eclipse\r","================================================================================\r","\r","First make sure that you've installed Eclipse and the Android extensions as described here:\r","\thttp://developer.android.com/tools/sdk/eclipse-adt.html\r","\r","Once you've copied the SDL android project and customized it, you can create an Eclipse project from it:\r"," * File -> New -> Other\r"," * Select the Android -> Android Project wizard and click Next\r"," * Enter the name you'd like your project to have\r"," * Select \"Create project from existing source\" and browse for your project directory\r"," * Make sure the Build Target is set to Android 2.0\r"," * Click Finish\r","\r","\r","================================================================================\r"," Using the emulator\r","================================================================================\r","\r","There are some good tips and tricks for getting the most out of the\r","emulator here: http://developer.android.com/tools/devices/emulator.html\r","\r","Especially useful is the info on setting up OpenGL ES 2.0 emulation.\r","\r","Notice that this software emulator is incredibly slow and needs a lot of disk space.\r","Using a real device works better.\r","\r","================================================================================\r"," Troubleshooting\r","================================================================================\r","\r","You can create and run an emulator from the Eclipse IDE:\r"," * Window -> Android SDK and AVD Manager\r","\r","You can see if adb can see any devices with the following command:\r","\tadb devices\r","\r","You can see the output of log messages on the default device with:\r","\tadb logcat\r","\r","You can push files to the device with:\r","\tadb push local_file remote_path_and_file\r","\r","You can push files to the SD Card at /sdcard, for example:\r","\tadb push moose.dat /sdcard/moose.dat\r","\r","You can see the files on the SD card with a shell command:\r","\tadb shell ls /sdcard/\r","\r","You can start a command shell on the default device with:\r","\tadb shell\r","\r","You can remove the library files of your project (and not the SDL lib files) with:\r","\tndk-build clean\r","\r","You can do a build with the following command:\r","\tndk-build\r","\r","You can see the complete command line that ndk-build is using by passing V=1 on the command line:\r","\tndk-build V=1\r","\r","If your application crashes in native code, you can use addr2line to convert the\r","addresses in the stack trace to lines in your code.\r","\r","For example, if your crash looks like this:\r","I/DEBUG ( 31): signal 11 (SIGSEGV), code 2 (SEGV_ACCERR), fault addr 400085d0\r","I/DEBUG ( 31): r0 00000000 r1 00001000 r2 00000003 r3 400085d4\r","I/DEBUG ( 31): r4 400085d0 r5 40008000 r6 afd41504 r7 436c6a7c\r","I/DEBUG ( 31): r8 436c6b30 r9 435c6fb0 10 435c6f9c fp 4168d82c\r","I/DEBUG ( 31): ip 8346aff0 sp 436c6a60 lr afd1c8ff pc afd1c902 cpsr 60000030\r","I/DEBUG ( 31): #00 pc 0001c902 /system/lib/libc.so\r","I/DEBUG ( 31): #01 pc 0001ccf6 /system/lib/libc.so\r","I/DEBUG ( 31): #02 pc 000014bc /data/data/org.libsdl.app/lib/libmain.so\r","I/DEBUG ( 31): #03 pc 00001506 /data/data/org.libsdl.app/lib/libmain.so\r","\r","You can see that there's a crash in the C library being called from the main code.\r","I run addr2line with the debug version of my code:\r","\tarm-eabi-addr2line -C -f -e obj/local/armeabi/libmain.so\r","and then paste in the number after \"pc\" in the call stack, from the line that I care about:\r","000014bc\r","\r","I get output from addr2line showing that it's in the quit function, in testspriteminimal.c, on line 23.\r","\r","You can add logging to your code to help show what's happening:\r","\r","#include \r","\r","\t__android_log_print(ANDROID_LOG_INFO, \"foo\", \"Something happened! x = %d\", x);\r","\r","If you need to build without optimization turned on, you can create a file called\r","\"Application.mk\" in the jni directory, with the following line in it:\r","APP_OPTIM := debug\r","\r","\r","================================================================================\r"," Memory debugging\r","================================================================================\r","\r","The best (and slowest) way to debug memory issues on Android is valgrind.\r","Valgrind has support for Android out of the box, just grab code using:\r","\tsvn co svn://svn.valgrind.org/valgrind/trunk valgrind\r","... and follow the instructions in the file README.android to build it.\r","\r","One thing I needed to do on Mac OS X was change the path to the toolchain,\r","and add ranlib to the environment variables:\r","export RANLIB=$NDKROOT/toolchains/arm-linux-androideabi-4.4.3/prebuilt/darwin-x86/bin/arm-linux-androideabi-ranlib\r","\r","Once valgrind is built, you can create a wrapper script to launch your\r","application with it, changing org.libsdl.app to your package identifier:\r","--- start_valgrind_app -------------------\r","#!/system/bin/sh\r","export TMPDIR=/data/data/org.libsdl.app\r","exec /data/local/Inst/bin/valgrind --log-file=/sdcard/valgrind.log --error-limit=no $*\r","------------------------------------------\r","\r","Then push it to the device:\r","\tadb push start_valgrind_app /data/local\r","\r","and make it executable:\r","\tadb shell chmod 755 /data/local/start_valgrind_app\r","\r","and tell Android to use the script to launch your application:\r","\tadb shell setprop wrap.org.libsdl.app \"logwrapper /data/local/start_valgrind_app\"\r","\r","If the setprop command says \"could not set property\", it's likely that\r","your package name is too long and you should make it shorter by changing\r","AndroidManifest.xml and the path to your class file in android-project/src\r","\r","You can then launch your application normally and waaaaaaaiiittt for it.\r","You can monitor the startup process with the logcat command above, and\r","when it's done (or even while it's running) you can grab the valgrind\r","output file:\r","\tadb pull /sdcard/valgrind.log\r","\r","When you're done instrumenting with valgrind, you can disable the wrapper:\r","\tadb shell setprop wrap.org.libsdl.app \"\"\r","\r","================================================================================\r"," Why is API level 10 the minimum required?\r","================================================================================\r","\r","API level 10 is the minimum required level at runtime (that is, on the device) \r","because SDL requires some functionality for running not\r","available on older devices. Since the incorporation of joystick support into SDL,\r","the minimum SDK required to *build* SDL is version 12. Devices running API levels\r","10-11 are still supported, only with the joystick functionality disabled.\r","\r","Support for native OpenGL ES and ES2 applications was introduced in the NDK for\r","API level 4 and 8. EGL was made a stable API in the NDK for API level 9, which\r","has since then been obsoleted, with the recommendation to developers to bump the\r","required API level to 10.\r","As of this writing, according to http://developer.android.com/about/dashboards/index.html\r","about 90% of the Android devices accessing Google Play support API level 10 or\r","higher (March 2013).\r","\r","================================================================================\r"," A note regarding the use of the \"dirty rectangles\" rendering technique\r","================================================================================\r","\r","If your app uses a variation of the \"dirty rectangles\" rendering technique,\r","where you only update a portion of the screen on each frame, you may notice a\r","variety of visual glitches on Android, that are not present on other platforms.\r","This is caused by SDL's use of EGL as the support system to handle OpenGL ES/ES2\r","contexts, in particular the use of the eglSwapBuffers function. As stated in the\r","documentation for the function \"The contents of ancillary buffers are always \r","undefined after calling eglSwapBuffers\".\r","Setting the EGL_SWAP_BEHAVIOR attribute of the surface to EGL_BUFFER_PRESERVED\r","is not possible for SDL as it requires EGL 1.4, available only on the API level\r","17+, so the only workaround available on this platform is to redraw the entire\r","screen each frame.\r","\r","Reference: http://www.khronos.org/registry/egl/specs/EGLTechNote0001.html\r","\r","================================================================================\r"," Known issues\r","================================================================================\r","\r","- The number of buttons reported for each joystick is hardcoded to be 36, which\r","is the current maximum number of buttons Android can report.\r","\r"],"stylingDirectives":[[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]],"colorizedLines":null,"csv":null,"csvError":null,"dependabotInfo":{"showConfigurationBanner":false,"configFilePath":null,"networkDependabotPath":"/libsdl-org/SDL/network/updates","dismissConfigurationNoticePath":"/settings/dismiss-notice/dependabot_configuration_notice","configurationNoticeDismissed":null},"displayName":"README-android.txt","displayUrl":"https://github.com/libsdl-org/SDL/blob/a838a56d45b237888810ca4c76d9345fe98f27f6/README-android.txt?raw=true","headerInfo":{"blobSize":"20 KB","deleteTooltip":"You must be signed in to make or propose changes","editTooltip":"You must be signed in to make or propose changes","ghDesktopPath":null,"isGitLfs":false,"onBranch":false,"shortPath":"3275a11","siteNavLoginPath":"/login?return_to=https%3A%2F%2Fgithub.com%2Flibsdl-org%2FSDL%2Fblob%2Fa838a56d45b237888810ca4c76d9345fe98f27f6%2FREADME-android.txt","isCSV":false,"isRichtext":false,"toc":null,"lineInfo":{"truncatedLoc":"438","truncatedSloc":"327"},"mode":"file"},"image":false,"isCodeownersFile":null,"isPlain":false,"isValidLegacyIssueTemplate":false,"issueTemplate":null,"discussionTemplate":null,"language":"Text","languageID":372,"large":false,"planSupportInfo":{"repoIsFork":null,"repoOwnedByCurrentUser":null,"requestFullPath":"/libsdl-org/SDL/blob/a838a56d45b237888810ca4c76d9345fe98f27f6/README-android.txt","showFreeOrgGatedFeatureMessage":null,"showPlanSupportBanner":null,"upgradeDataAttributes":null,"upgradePath":null},"publishBannersInfo":{"dismissActionNoticePath":"/settings/dismiss-notice/publish_action_from_dockerfile","releasePath":"/libsdl-org/SDL/releases/new?marketplace=true","showPublishActionBanner":false},"rawBlobUrl":"https://github.com/libsdl-org/SDL/raw/a838a56d45b237888810ca4c76d9345fe98f27f6/README-android.txt","renderImageOrRaw":false,"richText":null,"renderedFileInfo":null,"shortPath":null,"symbolsEnabled":true,"tabSize":8,"topBannersInfo":{"overridingGlobalFundingFile":false,"globalPreferredFundingPath":null,"showInvalidCitationWarning":false,"citationHelpUrl":"https://docs.github.com/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-citation-files","actionsOnboardingTip":null},"truncated":false,"viewable":true,"workflowRedirectUrl":null,"symbols":{"timed_out":false,"not_analyzed":true,"symbols":[]}},"copilotInfo":null,"copilotAccessAllowed":false,"csrf_tokens":{"/libsdl-org/SDL/branches":{"post":"mSwve0_U0exJFcivaLyOBW4nH1C1rSJSthfcDQGZf1kI1G466hCYya8Ql3he4HnIfAQcUd2vXiEMiIzZ0IFobA"},"/repos/preferences":{"post":"apIK-z3UJ9nx4phu12TPTsTgdaUAoo00Ae5UDwHcomNcGxWSAfX_dt7Jg8PSbb8c_oZoi3vI4h0QXntsc8EOhQ"}}},"title":"SDL/README-android.txt at a838a56d45b237888810ca4c76d9345fe98f27f6 ยท libsdl-org/SDL"}