From 5320f9b2c10d3e21f8f9a4461ca0b8988561a9ce Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 10 Dec 2012 19:15:46 +0100 Subject: [PATCH] (Android) Remove Phoenix-legacy - meancoot's Phoenix now default --- android/native/jni/main.c | 5 - android/phoenix-legacy/.classpath | 8 - android/phoenix-legacy/.project | 55 --- .../.settings/org.eclipse.jdt.core.prefs | 4 - android/phoenix-legacy/AndroidManifest.xml | 27 -- .../gen/com/retroarch/BuildConfig.java | 6 - .../phoenix-legacy/gen/com/retroarch/R.java | 48 --- android/phoenix-legacy/project.properties | 14 - .../res/drawable-hdpi/ic_action_load.png | Bin 725 -> 0 bytes .../res/drawable-hdpi/ic_action_main.png | Bin 774 -> 0 bytes .../res/drawable-hdpi/ic_action_open.png | Bin 578 -> 0 bytes .../res/drawable-hdpi/ic_action_save.png | Bin 614 -> 0 bytes .../res/drawable-hdpi/ic_action_settings.png | Bin 608 -> 0 bytes .../res/drawable-hdpi/ic_launcher.png | Bin 2520 -> 0 bytes .../res/drawable-ldpi/ic_action_load.png | Bin 406 -> 0 bytes .../res/drawable-ldpi/ic_action_main.png | Bin 415 -> 0 bytes .../res/drawable-ldpi/ic_action_open.png | Bin 281 -> 0 bytes .../res/drawable-ldpi/ic_action_save.png | Bin 306 -> 0 bytes .../res/drawable-ldpi/ic_action_settings.png | Bin 304 -> 0 bytes .../res/drawable-ldpi/ic_launcher.png | Bin 925 -> 0 bytes .../res/drawable-mdpi/ic_action_load.png | Bin 506 -> 0 bytes .../res/drawable-mdpi/ic_action_main.png | Bin 579 -> 0 bytes .../res/drawable-mdpi/ic_action_open.png | Bin 407 -> 0 bytes .../res/drawable-mdpi/ic_action_save.png | Bin 418 -> 0 bytes .../res/drawable-mdpi/ic_action_settings.png | Bin 395 -> 0 bytes .../res/drawable-mdpi/ic_launcher.png | Bin 1629 -> 0 bytes .../res/drawable-xhdpi/ic_action_load.png | Bin 725 -> 0 bytes .../res/drawable-xhdpi/ic_action_main.png | Bin 774 -> 0 bytes .../res/drawable-xhdpi/ic_action_open.png | Bin 578 -> 0 bytes .../res/drawable-xhdpi/ic_action_save.png | Bin 614 -> 0 bytes .../res/drawable-xhdpi/ic_action_settings.png | Bin 608 -> 0 bytes .../res/drawable-xhdpi/ic_launcher.png | Bin 2941 -> 0 bytes .../phoenix-legacy/res/layout/file_choose.xml | 24 -- .../phoenix-legacy/res/layout/file_view.xml | 20 - android/phoenix-legacy/res/layout/main.xml | 17 - .../phoenix-legacy/res/layout/rombrowser.xml | 12 - android/phoenix-legacy/res/menu/main_menu.xml | 9 - android/phoenix-legacy/res/raw/retroarch.cfg | 404 ------------------ android/phoenix-legacy/res/values/strings.xml | 7 - .../retroarch/fileio/FileArrayAdapter.java | 117 ----- .../src/com/retroarch/fileio/FileChooser.java | 249 ----------- .../src/com/retroarch/fileio/Option.java | 23 - .../src/com/retroarch/phoenix.java | 133 ------ 43 files changed, 1182 deletions(-) delete mode 100644 android/phoenix-legacy/.classpath delete mode 100644 android/phoenix-legacy/.project delete mode 100644 android/phoenix-legacy/.settings/org.eclipse.jdt.core.prefs delete mode 100644 android/phoenix-legacy/AndroidManifest.xml delete mode 100644 android/phoenix-legacy/gen/com/retroarch/BuildConfig.java delete mode 100644 android/phoenix-legacy/gen/com/retroarch/R.java delete mode 100644 android/phoenix-legacy/project.properties delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_action_load.png delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_action_main.png delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_action_open.png delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_action_save.png delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_action_settings.png delete mode 100644 android/phoenix-legacy/res/drawable-hdpi/ic_launcher.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_action_load.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_action_main.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_action_open.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_action_save.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_action_settings.png delete mode 100644 android/phoenix-legacy/res/drawable-ldpi/ic_launcher.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_action_load.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_action_main.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_action_open.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_action_save.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_action_settings.png delete mode 100644 android/phoenix-legacy/res/drawable-mdpi/ic_launcher.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_action_load.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_action_main.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_action_open.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_action_save.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_action_settings.png delete mode 100644 android/phoenix-legacy/res/drawable-xhdpi/ic_launcher.png delete mode 100644 android/phoenix-legacy/res/layout/file_choose.xml delete mode 100644 android/phoenix-legacy/res/layout/file_view.xml delete mode 100644 android/phoenix-legacy/res/layout/main.xml delete mode 100644 android/phoenix-legacy/res/layout/rombrowser.xml delete mode 100644 android/phoenix-legacy/res/menu/main_menu.xml delete mode 100644 android/phoenix-legacy/res/raw/retroarch.cfg delete mode 100644 android/phoenix-legacy/res/values/strings.xml delete mode 100644 android/phoenix-legacy/src/com/retroarch/fileio/FileArrayAdapter.java delete mode 100644 android/phoenix-legacy/src/com/retroarch/fileio/FileChooser.java delete mode 100644 android/phoenix-legacy/src/com/retroarch/fileio/Option.java delete mode 100644 android/phoenix-legacy/src/com/retroarch/phoenix.java diff --git a/android/native/jni/main.c b/android/native/jni/main.c index f83d1b543f..6328329b83 100644 --- a/android/native/jni/main.c +++ b/android/native/jni/main.c @@ -348,11 +348,6 @@ static void* android_app_entry(void* param) RARCH_LOG("Libretro path: [%s].\n", libretro_path); RARCH_LOG("Display Refresh rate: %.2fHz.\n", refreshrate); -#ifdef PHOENIX_LEGACY - /* ugly hack for now - hardcode libretro path to 'allowed' dir */ - snprintf(libretro_path, sizeof(libretro_path), "/data/data/com.retroarch/lib/libretro.so"); -#endif - int argc = 0; char *argv[MAX_ARGS] = {NULL}; diff --git a/android/phoenix-legacy/.classpath b/android/phoenix-legacy/.classpath deleted file mode 100644 index 3f9691c5dd..0000000000 --- a/android/phoenix-legacy/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/android/phoenix-legacy/.project b/android/phoenix-legacy/.project deleted file mode 100644 index e2ce45675d..0000000000 --- a/android/phoenix-legacy/.project +++ /dev/null @@ -1,55 +0,0 @@ - - - RetroArch - - - - - - org.eclipse.cdt.managedbuilder.core.genmakebuilder - full,incremental, - - - - - com.android.ide.eclipse.adt.ResourceManagerBuilder - - - - - com.android.ide.eclipse.adt.PreCompilerBuilder - - - - - org.eclipse.jdt.core.javabuilder - - - - - com.android.ide.eclipse.adt.ApkBuilder - - - - - org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder - full,incremental, - - - - - - com.android.ide.eclipse.adt.AndroidNature - org.eclipse.jdt.core.javanature - org.eclipse.cdt.core.cnature - org.eclipse.cdt.managedbuilder.core.managedBuildNature - org.eclipse.cdt.managedbuilder.core.ScannerConfigNature - - - - res/retroarch.cfg - 1 - PARENT-2-PROJECT_LOC/retroarch.cfg - - - diff --git a/android/phoenix-legacy/.settings/org.eclipse.jdt.core.prefs b/android/phoenix-legacy/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index f77b31c2d2..0000000000 --- a/android/phoenix-legacy/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 -org.eclipse.jdt.core.compiler.compliance=1.5 -org.eclipse.jdt.core.compiler.source=1.5 diff --git a/android/phoenix-legacy/AndroidManifest.xml b/android/phoenix-legacy/AndroidManifest.xml deleted file mode 100644 index cbb8bace7d..0000000000 --- a/android/phoenix-legacy/AndroidManifest.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/android/phoenix-legacy/gen/com/retroarch/BuildConfig.java b/android/phoenix-legacy/gen/com/retroarch/BuildConfig.java deleted file mode 100644 index f7b068bd97..0000000000 --- a/android/phoenix-legacy/gen/com/retroarch/BuildConfig.java +++ /dev/null @@ -1,6 +0,0 @@ -/** Automatically generated file. DO NOT MODIFY */ -package com.retroarch; - -public final class BuildConfig { - public final static boolean DEBUG = true; -} \ No newline at end of file diff --git a/android/phoenix-legacy/gen/com/retroarch/R.java b/android/phoenix-legacy/gen/com/retroarch/R.java deleted file mode 100644 index 0712b94a33..0000000000 --- a/android/phoenix-legacy/gen/com/retroarch/R.java +++ /dev/null @@ -1,48 +0,0 @@ -/* AUTO-GENERATED FILE. DO NOT MODIFY. - * - * This class was automatically generated by the - * aapt tool from the resource data it found. It - * should not be modified by hand. - */ - -package com.retroarch; - -public final class R { - public static final class attr { - } - public static final class drawable { - public static final int ic_action_load=0x7f020000; - public static final int ic_action_main=0x7f020001; - public static final int ic_action_open=0x7f020002; - public static final int ic_action_save=0x7f020003; - public static final int ic_action_settings=0x7f020004; - public static final int ic_launcher=0x7f020005; - } - public static final class id { - public static final int TextView01=0x7f070002; - public static final int TextView02=0x7f070003; - public static final int fileChooserSubmit=0x7f070000; - public static final int fileChooserView=0x7f070001; - public static final int libretro=0x7f070007; - public static final int main=0x7f070005; - public static final int open=0x7f070006; - public static final int settings=0x7f070008; - public static final int surfaceview=0x7f070004; - } - public static final class layout { - public static final int file_choose=0x7f030000; - public static final int file_view=0x7f030001; - public static final int main=0x7f030002; - public static final int rombrowser=0x7f030003; - } - public static final class menu { - public static final int main_menu=0x7f060000; - } - public static final class raw { - public static final int retroarch=0x7f040000; - } - public static final class string { - public static final int app_name=0x7f050001; - public static final int hello=0x7f050000; - } -} diff --git a/android/phoenix-legacy/project.properties b/android/phoenix-legacy/project.properties deleted file mode 100644 index 0840b4a059..0000000000 --- a/android/phoenix-legacy/project.properties +++ /dev/null @@ -1,14 +0,0 @@ -# This file is automatically generated by Android Tools. -# Do not modify this file -- YOUR CHANGES WILL BE ERASED! -# -# This file must be checked in Version Control Systems. -# -# To customize properties used by the Ant build system edit -# "ant.properties", and override values to adapt the script to your -# project structure. -# -# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): -#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt - -# Project target. -target=android-15 diff --git a/android/phoenix-legacy/res/drawable-hdpi/ic_action_load.png b/android/phoenix-legacy/res/drawable-hdpi/ic_action_load.png deleted file mode 100644 index 3ef03ab59afbe229e8f317ce94974bab52b8372e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 725 zcmV;`0xJE9P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyh` z0S!95t$tL_t(o!_AmYYZFlvhTk(LMbxOYw7L-2DhN{Wqjn?IintfimEgZ9 zs320;g4=GY*owLftu!WSD~i;wT?Kd2EJV?bwS{!?xS7ZplgyouWPD*ZckZ0?aL&2s z-npiT0tO_FNjfd*h@=CO3jXV#lGY@xN_r)!Y-T@{wg3ahfk(hE+_etO0A~S93+5zH zA-SFd$CH5Mfa^e=^i&5XfLv6V-M}2(QxPacfvM1al|rHXG|kgH6+5O6xIynV(GF$= z*vbH?4xDIkc#S?IX;M;7y;ok+WTQ`c{@^)DXA&4)mh>XQ_hbI^CtZ&dg!}=}=RdOv z?94V`27!$PFx#3|X6eo3WRR-c zX7;+>zLN(QdKjJg(7#x}i7oX2rW$OvE>PW!)H7$8ru5xPxzM+On~^UYTCBb_TEZeQ zlGYuO2V4N20-F&aHi0L=dDjaoivc$zY25KjuViN5qS*fpV%!oYo(e+x00000NkvXX Hu0mjfe&Im( diff --git a/android/phoenix-legacy/res/drawable-hdpi/ic_action_main.png b/android/phoenix-legacy/res/drawable-hdpi/ic_action_main.png deleted file mode 100644 index c659124b9e9d5a7ffe53923e1686fccf3bf34aca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 774 zcmV+h1Nr=kP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2iyh| z1swwfYJ_M200M?dL_t(o!|j+oYZOrwhR?ZkLsrxkHKU{wYZVb}L~K)t_!ClDiz3(w z{(z(x>_mTnWgwM>79v>0FEr6+{Ro@F4~RRv=Y1`l36o`K=gwrufaJik!_2w&JiO=J zbLWo8p8X?x-}!QR_+EEoqYa=9piQ#9^7h?S;~?x&&Fm!rn%VQgV6YXm+wBqn0gxnD zUcb3fHlN!m5IiVjG09buvj8j4TMH;j zk~xyA-us!MM=Bzssz(8Qj^h~)J=BQUy3@5&wzjr*u;1^0NMWQdOqMQE zP67C7W^rYO%fa7L%CW@k~ z&bdB-R!FTl=Y-_8E}UHt-``fe&WUsG7XU9Jk45Cr^uE>upL4ift;xB%p`kcVQqyD zZlGc7j(}=*jwCW{jQW9C}!X+R| zLM1;J(r^3g{!C(B{PN30TP|~hztKCGK7a{6d=>0f%_N=l{txOfg(xPa3VzJQy*no)H0>S z!_?1zCdnHNb`yGVgfcA_JIPE5e}T8~B~jaf84XM(Wd`J%+A}E+c0ETmRkX%!nT8c3H`=!B;Ew`Qlt>vio`o}9{yr1MQ9ucIWr$e;^RU$ zwlIT-c8lNw8DKZ~7=zN!(vWi%_)`L*U7Tu#yexsx zi}sK!B@mi!52=U`NugXz5t_@9vo3j&#ChRI*d1&nDr;&d*~huVi$^TA7#LOr3#l?q zp+WK0UAGwR(qC74BtKROIH;8SdcYL8DbN%H{f1a z$JyK>38@M$VOe}T=#^bO$F!n8Sf$7f<0h8GA13Pf-mE&_;t}Sx_ND;-0c-U}X-5cg QvH$=807*qoM6N<$f_2yT$^ZZW diff --git a/android/phoenix-legacy/res/drawable-hdpi/ic_action_save.png b/android/phoenix-legacy/res/drawable-hdpi/ic_action_save.png deleted file mode 100644 index dbc044c9d8097dbc098636cc3b6cd9fee512be0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 614 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 diff --git a/android/phoenix-legacy/res/drawable-ldpi/ic_action_main.png b/android/phoenix-legacy/res/drawable-ldpi/ic_action_main.png deleted file mode 100644 index 81b838512f2c7645ad90f81e74d11e606bc3a177..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 415 zcmeAS@N?(olHy`uVBq!ia0vp^LLkh+1|-AI^@Rf|#^NA%Cx&(BWL^R}Y)RhkE)4%c zaKYZ?lYt_f1s;*b3=De8Ak0{?)V>TT$X?><>&kwIO_)_y*`8&|0-!1Ko-U3d7N@UH z+~{}MK*aU^W+9bhUOhZM28+-AVNObO`@G{tHzuji~)QYV)$%UtI< z>-)dDWDkyqO-rV>egCHzA3s%LRh7EZ^RzT2CGX>`hoXc-WsfdiBeizbJW)oKa!D*&6JOGRjzv6V{%x!%3aCGZ1cp9D-3>@gajKq4xHKa=|kZ4uM21H z&ElwLXjs3_x+AT>vU*m@zSp}V|EM-^%Vig3cyr~e_x*dvEw`skoMri3#qK`i0o|DF zm@CZO=JTDz?RM?i$o|aib&$y~?=H9KW{si?u3EUlVXr=Y79%z(XiD2f*%ez9uu zPKWJx0GgPj)RB+@D{Z?SqeKqRqdfPvx&u9X6T_CUJ1}sq)dLO6m4^zHpWTP|A!>e3+hSa z4DnHjPvTzAAgIUMuz`>rf- zm`~(nN7(|$ZGV6YZ(B%4E0weeFEGFi%ebbvks6!v3-_`AIuugV_5c6?07*qoM6N<$ Ef(Si?2mk;8 diff --git a/android/phoenix-legacy/res/drawable-ldpi/ic_action_settings.png b/android/phoenix-legacy/res/drawable-ldpi/ic_action_settings.png deleted file mode 100644 index 7a3dc396bc416455323b0f957dd66babfd6d6831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 304 zcmV-00nh%4P)eFdP^ZgVE+65Ck!4vDw9DFd2+Cn{c32ZQ3;$L{Nj_1O==AKoQ{{ z!_MNex3lc-y=iB5zGrqnzE-P3(7`Pp(XCPwLmvF6UmL?To(<<6v!f!_G0fnl1WEIO zxlxfUHlIhjl4jOTKaadNK;SGzrtsDfImJW@tw{Rv+W;BQ{?sO}@Zl zc;2Xh4I`oWDf@|7$9DudMmsh)HwF7eSTPa`)^Hwqw~DWT97U0E_y7a!gmoJW*hUYZ zI4ng%;dQuifIG=#Uttf+m@EY{&^<1(izVrB)yyC7hT!APrx(Eh0000Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L02dMf02dMgXP?qi00007bV*G`2iyh_ z6b2&hWH|)@00SLKL_t(o!|hg0OB+!Xy>CV*6XT+iL~)@m+J#87h%Tfe)w&STm0%D- zL=dDuKwYQ>sVkwspsP^)2tgt)L{KrJqL}E)DpnfA5Jk{fkWS)MXHGYHQa_rQ#N`}# zn|trM_q_9X^M=TP0RsjM+yi@VApm(}W22XdsHUc7jxiQWQU7{rX{jYACx`0m>%TI_ zu3uDnI2;}%BAtlzwY9Y$sp^-Pm-l%6@$vDe=gtw5>`)8@0`2ST>pcL9VzJl(cQqUi zznYnusQ_Spf@k*md=-&M#LiDZQIzihidI)wdp0*W+X0AaJ92w_+eSnnB7J0JB%;tOifK45fMaD1OR6yf-1QnNs>@nT6#CY@Ao4V3V|{9XgFgGp->2ZzyB^) zQc?omDXY15f^stXCgtVjkst`9Y1*TlrfDQe(v!L8 zAekU`b93`#LesRQ1OLb4++;6AGC{k+U@#bq#R}@`>fXG>*M5F}{%1i!!7n1(&A7?Q z$%!M=+x2iA9v(Wfep~^VPESu)FE20i91h1@A|kKXtGHaQFRH4ND2l`w?LC{#rj(VHy=RQ6S=kIg0MLJNapB=R-Pzd*q~ZmG!2qv6J3I3L z=m#KVeeNqOD_y*CLqmhUu&{6tjYg|e@y^fBtLNtC4r*&_b91%+%W2`mL|8 zFD-{%F4yO)tE(=?*dM3U={5d|4Hz(BAWi%Qr5)3z#Ah0o00000NkvXXu0mjfyMv!$ diff --git a/android/phoenix-legacy/res/drawable-mdpi/ic_action_load.png b/android/phoenix-legacy/res/drawable-mdpi/ic_action_load.png deleted file mode 100644 index 659c27fc845848d3e2e3f31eebffe26defa95861..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 506 zcmVPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyh` z0S+k>K5Tmc00DYQL_t(Y$E}vnE(1{%#=mQ$*jn_@vMXMKtu&g7!~@X8j_@#*Ml8gN z1Z5$%o@r=KEaoB@>-EgeLv;Y7A07*qoM6N<$g5tK+l>h($ diff --git a/android/phoenix-legacy/res/drawable-mdpi/ic_action_main.png b/android/phoenix-legacy/res/drawable-mdpi/ic_action_main.png deleted file mode 100644 index 65b55533316244fcc194c3322f7968c21963afc6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 579 zcmV-J0=)f+P)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2iyh| z1s(!eK<7OG00F~EL_t(Y$K{qWYZXBhh3~ytAIL)s3xyPt+R9F`v=S>TE5SmT=nsg|-oj=h`pA0^l9_X^MRs(u%N z5IBHaBJxf|F1x#^>I0Iiv)SxhmKOg=AcSyNRd>@|Rnz0`@pznN{$9w#`rt9fhi10x zP4wluJI~}ffEOf>lgEq3;dJ_JFg(Wih9sH~%0+MhPVxtU`-^scp5#^^7(fD+L`d>p z7yJ^*ouQVrMe+>+Sa)~J8i=bTKa`UDpr;2MU^sb|4&Y^iUm*FuNqj|eqsM|&P(_jX zeExMZnXHlgOwwZr&rMaQ5qRzHPtEMHh*(zZlB!cxfAv7qY^Tme;#5{5aCP7PrvI$y@?uohj^98~dz*>Q)wmyyVLHr*-E5|-kx1>XEz7s7p> z!eS(_oRNPJ53D6zP)&HnZ5ed~jd72usw-B7t9DWhurkccn-hu*u#sArRpApy#of@# zYec4TC^#X7Hyo(;d<3Cgoa0LP>-Ed$Gwh^@zX1`|iOjF+qsRaN002ovPDHLkV1fy= BxKscD diff --git a/android/phoenix-legacy/res/drawable-mdpi/ic_action_save.png b/android/phoenix-legacy/res/drawable-mdpi/ic_action_save.png deleted file mode 100644 index 45c25de467d46708d318dd03fc7d22d40de9883c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 418 zcmV;T0bTxyP)yBeVr#5zyu2ES|Kx7nJM z_JY_jRXW2Q7I9q>zrq6Mah_oGgV>d2{l#42jLIfgSSZBj@vnk&7sS>t>kaFrN?XJw zE{gChwt@Ew&Qr>Oct~pvji19)MKTEZlL+P}KWgABHE^;NUDPaqmnxGCK5Y26AH zp$IL`rl5qbPIV~7k3-(!ak)z_cbD&W?|7f@EbxHx@JAWtHT{U+R5asRgl;k1_mL zE<9{r37h)nH^8s-{;K=oAU`mj3lGRn>||Z6VG{?T^e?{S6W-u)ZafrxP2BAbj`Sw$ pHJ*+HrWCZp6urj+9+d(Uxd%VG)(dF-S2O?s002ovPDHLkV1mwvtC0Wz diff --git a/android/phoenix-legacy/res/drawable-mdpi/ic_launcher.png b/android/phoenix-legacy/res/drawable-mdpi/ic_launcher.png deleted file mode 100644 index 84f2bca8305277a0b00b759e1c6b8fdddbc3f0ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1629 zcmV-j2BP_iP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L02dMf02dMgXP?qi00007bV*G`2iyh` z12i;N6$-Tg00rGiL_t(&-tAdUXjE4e{_gvmiJ2s3ny67kteMnbn2l2CLK7;8ly0i+ zE>O^gbkRjgDcFsaE<$&fHqg2$bX92YD+$t0pM9~=npo^$R!_x#;C0ZJ&Lgc3?90>TLs$uC2p&{xl&KZl|yaJ${u zyLWH95aNSk4?yy8EEc;FiA2gINrGV*@caFPs;VB5WjVesR)#{M6aZSOwY8Nb-zipi zB9Z8|>#nV>CCN4?@{$v#-riot{%ve*3;>eF8W4>})AnyKUc3N+_npWq7FP-Y?p$mM zkvrV3UAq>nYXIQ!c=F`e3XjKAphMF%0QkmoHW`5S|Ix&}Jr2FeWRk&PkbQl992*;> zuIrC1A(XVcSyfdd9*;AXN->>I8zg;B53TF^l~gK4UDtX3{CV1SZ{50;BtJ9H)|5yj zc>n%=_V)Jj>C>kq`E{PcWHR{&0K=lhIC$_NNq%7}iJv-kihjSJ_4W06n+YKZfWyPX zVTVck(XnI4D1@05Sj=hOznb<;&G3&zqMnUFto1_H6b*005KUQRSPNnaPGM0ATy}?HnH;e+=L# z02RPOcCD|kFSkb)iU}09lrG08{4DWPg8u2!PKP%XDZ!#=hTy z0|x|v&xH^(c84`IG!!Usxm+t7;Pd$)g!s|o`fih7zHs3}LA+nTetkE|KeJw22EK4O zKiclzy$b+8lYDGe#@~eytwIQrG=vbc)eB~lTdpLN>98kKQ&STyhacOyb0;-TqucE+ zNV+U}y^;_>)sd3kx?(9lr1)jJyvbMN0&RYhlKr(zh! zinaOUii(OQV{3J--CC8b-|wdt`}gl(vjJ;<%LpL~8q8{B^InvawB~SIv*fd9&!Fo%bX~{j=;*3s zvt2t|)mG8P*DnXM?-zTGc1l8s92JuTxe!`0(-*;7WGt7qE)`3%bmQ0Ncd+&1vIa<% zm6d#53@CUDk@QYZPCg9;0*pi=Y;SL0Q(SKp?bxxy7#JAfy?gg~=gu9HJhQBYb8~aQ zzDfp|k2lG28O>xef4@p0Ge18M0Gk{eplO3^!KsPx#24YJ`L;(K){{a7>y{D4^000SaNLh0L01FcU01FcV0GgZ_00007bV*G`2iyh` z0S!95t$tL_t(o!_AmYYZFlvhTk(LMbxOYw7L-2DhN{Wqjn?IintfimEgZ9 zs320;g4=GY*owLftu!WSD~i;wT?Kd2EJV?bwS{!?xS7ZplgyouWPD*ZckZ0?aL&2s z-npiT0tO_FNjfd*h@=CO3jXV#lGY@xN_r)!Y-T@{wg3ahfk(hE+_etO0A~S93+5zH zA-SFd$CH5Mfa^e=^i&5XfLv6V-M}2(QxPacfvM1al|rHXG|kgH6+5O6xIynV(GF$= z*vbH?4xDIkc#S?IX;M;7y;ok+WTQ`c{@^)DXA&4)mh>XQ_hbI^CtZ&dg!}=}=RdOv z?94V`27!$PFx#3|X6eo3WRR-c zX7;+>zLN(QdKjJg(7#x}i7oX2rW$OvE>PW!)H7$8ru5xPxzM+On~^UYTCBb_TEZeQ zlGYuO2V4N20-F&aHi0L=dDjaoivc$zY25KjuViN5qS*fpV%!oYo(e+x00000NkvXX Hu0mjfe&Im( diff --git a/android/phoenix-legacy/res/drawable-xhdpi/ic_action_main.png b/android/phoenix-legacy/res/drawable-xhdpi/ic_action_main.png deleted file mode 100644 index e5090aa3d9809549f586af28b45dab3ee5223ef6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 774 zcmV+h1Nr=kP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L04^f{04^f|c%?sf00007bV*G`2iyh| z1s*7a`!4GM00M?dL_t(o!|j+oYZOrwhR?ZkLsrxkHKU{wYZVb}L~K)t_!ClDiz3(w z{(z(x>_mTnWgwM>79vqpoWen8yWJ@0GbOqeV?J9j2Kq%a4T9cIqG=ixo) zo;!C$_U(VQ51p@9hwpVaH`@T(0NNzmEAQSNWbRnLnERrR8(b^x>s-206I0XUT;$%d*PO>b!m6_Z>eISa7zytROm zB$*?*=DnX8dZZ#Es(Kv2mpGo`&_kU#keS`^-Y==Dli~oXszOp5RmjX1RP|wAjVh*E zKEzk3nP()ghzRSzh=>dZuu|wiWuB|*rQN`g6z6nR)t#-Kvi0@#!~K5$V+td6VX}0Q zat6RJGm9%LWM;=yb%UhSkmOfa>~s`GpMw-KvkR*FT|}ZLVA6i|3BX(_5P*3Rc_kuI z-C7CB;6GO`0k}P`c<-4R%?#-tl>G<&GBdNWek10;KWbS&$PG#WEQUa2!ShxI1c1F> zZvj9L08$a2kc={A?&O?*05}Ms6$&(LAwbK^%O?OF%KP@V{>*z3ktm850h~0mb5Rss zch2(3U?$lk3u`NM za03lncLh|lBac&DYrPMV92q=YWs^)-5YVL6DeX^tai|=p(4GJ_dQjX4YUF#sn4&IR zWt~oEV1~ye-KdqNs>1SD!l7fUZWB#SPygKiW>m-i0yuz~L-oAh4*&oF07*qoM6N<$ Ef;o;%eEjwCW{jQW9C}!X+R| zLM1;J(r^3g{!C(B{PN30TP|~hztKCGK7a{6d=>0f%_N=l{txOfg(xPa3VzJQy*no)H0>S z!_?1zCdnHNb`yGVgfcA_JIPE5e}T8~B~jaf84XM(Wd`J%+A}E+c0ETmRkX%!nT8c3H`=!B;Ew`Qlt>vio`o}9{yr1MQ9ucIWr$e;^RU$ zwlIT-c8lNw8DKZ~7=zN!(vWi%_)`L*U7Tu#yexsx zi}sK!B@mi!52=U`NugXz5t_@9vo3j&#ChRI*d1&nDr;&d*~huVi$^TA7#LOr3#l?q zp+WK0UAGwR(qC74BtKROIH;8SdcYL8DbN%H{f1a z$JyK>38@M$VOe}T=#^bO$F!n8Sf$7f<0h8GA13Pf-mE&_;t}Sx_ND;-0c-U}X-5cg QvH$=807*qoM6N<$f_2yT$^ZZW diff --git a/android/phoenix-legacy/res/drawable-xhdpi/ic_action_save.png b/android/phoenix-legacy/res/drawable-xhdpi/ic_action_save.png deleted file mode 100644 index dbc044c9d8097dbc098636cc3b6cd9fee512be0d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 614 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 Vo0}$k%!9cxfPfomzq#iS^ - - - - - - - - - diff --git a/android/phoenix-legacy/res/layout/file_view.xml b/android/phoenix-legacy/res/layout/file_view.xml deleted file mode 100644 index ff99ca0b62..0000000000 --- a/android/phoenix-legacy/res/layout/file_view.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/android/phoenix-legacy/res/layout/main.xml b/android/phoenix-legacy/res/layout/main.xml deleted file mode 100644 index c51a388d09..0000000000 --- a/android/phoenix-legacy/res/layout/main.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - diff --git a/android/phoenix-legacy/res/layout/rombrowser.xml b/android/phoenix-legacy/res/layout/rombrowser.xml deleted file mode 100644 index 1555563624..0000000000 --- a/android/phoenix-legacy/res/layout/rombrowser.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/android/phoenix-legacy/res/menu/main_menu.xml b/android/phoenix-legacy/res/menu/main_menu.xml deleted file mode 100644 index 05e808b581..0000000000 --- a/android/phoenix-legacy/res/menu/main_menu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/android/phoenix-legacy/res/raw/retroarch.cfg b/android/phoenix-legacy/res/raw/retroarch.cfg deleted file mode 100644 index a63fa08c89..0000000000 --- a/android/phoenix-legacy/res/raw/retroarch.cfg +++ /dev/null @@ -1,404 +0,0 @@ -## Skeleton config file for RetroArch - -# Save all save files (*.srm) to this directory. This includes related files like .bsv, .rtc, .psrm, etc ... -# This will be overridden by explicit command line options. -# savefile_directory = - -# Save all save states (*.state) to this directory. -# This will be overridden by explicit command line options. -# savestate_directory = - -# Automatically saves a savestate at the end of RetroArch's lifetime. -# The path is $SRAM_PATH.auto. -# RetroArch will automatically load any savestate with this path on startup. -# savestate_auto_save = false - -# Load libretro from a dynamic location for dynamically built RetroArch. -# This option is mandatory. -# libretro_path = "/path/to/libretro.so" - -# Environment variables internally in RetroArch. -# Implementations can tap into this user-specificed information to enable functionality -# that is deemed too obscure to expose directly. -# Some variables might be "standardized" at a later time if needed. -# The string is formatted as key value pairs delimited by a semicolon ';'. -# Any white space between the delimiter ';' and the '=' is significant. -# I.e.: "key1=value1;key2=value2;..." -# environment_variables = - -# Sets the "system" directory. -# Implementations can query for this directory to load BIOSes, system-specific configs, etc. -# system_directory = - -#### Video - -# Video driver to use. "gl", "xvideo", "sdl" or "ext" (external API driver) -# video_driver = "gl" - -# Path to external video driver using the RetroArch driver API. -# video_external_driver = - -# Windowed xscale and yscale -# (Real x res: base_size * xscale * aspect_ratio, real y res: base_size * yscale) -# video_xscale = 3.0 -# video_yscale = 3.0 - -# Fullscreen resolution. Resolution of 0 uses the resolution of the desktop. -# video_fullscreen_x = 0 -# video_fullscreen_y = 0 - -# Start in fullscreen. Can be changed at runtime. -# video_fullscreen = false - -# If fullscreen, prefer using a windowed fullscreen mode. -# video_windowed_fullscreen = false - -# Forcibly disable composition. Only works in Windows Vista/7 for now. -# video_disable_composition = false - -# Video vsync. -# video_vsync = true - -# Smoothens picture with bilinear filtering. Should be disabled if using pixel shaders. -# video_smooth = true - -# Forces rendering area to stay equal to game aspect ratio or as defined in video_aspect_ratio. -# video_force_aspect = true - -# A floating point value for video aspect ratio (width / height). -# If this is not set, aspect ratio is assumed to be automatic. -# Behavior then is defined by video_aspect_ratio_auto. -# video_aspect_ratio = - -# If this is true and video_aspect_ratio is not set, -# aspect ratio is decided by libretro implementation. -# If this is false, 1:1 PAR will always be assumed if video_aspect_ratio is not set. -# video_aspect_ratio_auto = false - -# Forces cropping of overscanned frames. Crops away top 7 scanlines and 8 bottom scanlines. (15/15 for interlaced frames). -# video_crop_overscan = false - -# Path to Cg shader. -# video_cg_shader = "/path/to/cg/shader.cg" - -# Path to bSNES XML shader (GLSL only). If both Cg shader path and XML shader path are defined, -# Cg shader will take priority unless overridden in video_shader_type. -# video_bsnes_shader = "/path/to/bsnes/xml/shader.shader" - -# Which shader type to use. Valid values are "cg", "bsnes", "none" and "auto" -# video_shader_type = auto - -# Defines a directory where XML shaders are kept. -# video_shader_dir = - -# Render to texture first. Useful when doing multi-pass shaders or control the output of shaders better. -# video_render_to_texture = false - -# Defines the video scale of render-to-texture. -# The output FBO size is scaled by these amounts against the input size (typically 256 * 224 for SNES). -# video_fbo_scale_x = 2.0 -# video_fbo_scale_y = 2.0 - -# Define shader to use for second pass (needs render-to-texture). -# video_second_pass_shader = "/path/to/second/shader.{cg,shader}" - -# Defines if bilinear filtering is used during second pass (needs render-to-texture). -# video_second_pass_smooth = true - -# CPU-based filter. Path to a bSNES CPU filter (*.filter) -# video_filter = - -# Path to a TTF font used for rendering messages. This path must be defined to enable fonts. -# Do note that the _full_ path of the font is necessary! -# video_font_path = - -# Size of the TTF font rendered. -# video_font_size = 48 - -# Attempt to scale the font to fit better for multiple window sizes. -# video_font_scale = true - -# Enable usage of OSD messages. -# video_font_enable = true - -# Offset for where messages will be placed on screen. Values are in range 0.0 to 1.0 for both x and y values. -# [0.0, 0.0] maps to the lower left corner of the screen. -# video_message_pos_x = 0.05 -# video_message_pos_y = 0.05 - -# Color for message. The value is treated as a hexadecimal value. -# It is a regular RGB hex number, i.e. red is "ff0000". -# video_message_color = ffffff - -# Video refresh rate of your monitor. -# Used to calculate a suitable audio input rate. -# video_refresh_rate = 59.95 - -# Allows libretro cores to set rotation modes. -# Setting this to false will honor, but ignore this request. -# This is useful for vertically oriented games where one manually rotates the monitor. -# video_allow_rotate = true - -#### Audio - -# Enable audio. -# audio_enable = true - -# Audio output samplerate. -# audio_out_rate = 48000 - -# When altering audio_in_rate on-the-fly, define by how much each time. -# audio_rate_step = 0.25 - -# Audio driver backend. Depending on configuration possible candidates are: alsa, pulse, oss, jack, rsound, roar, openal, sdl, xaudio and ext (external driver). -# audio_driver = - -# Path to external audio driver using the RetroArch audio driver API. -# audio_external_driver = - -# Override the default audio device the audio_driver uses. This is driver dependant. E.g. ALSA wants a PCM device, OSS wants a path (e.g. /dev/dsp), Jack wants portnames (e.g. system:playback1,system:playback_2), and so on ... -# audio_device = - -# External DSP plugin that processes audio before it's sent to the driver. -# audio_dsp_plugin = - -# Will sync (block) on audio. Recommended. -# audio_sync = true - -# Desired audio latency in milliseconds. Might not be honored if driver can't provide given latency. -# audio_latency = 64 - -# Enable experimental audio rate control. -# audio_rate_control = false - -# Controls audio rate control delta. Defines how much input rate can be adjusted dynamically. -# Input rate = in_rate * (1.0 +/- audio_rate_control_delta) -# audio_rate_control_delta = 0.005 - -#### Input - -# Input driver. Depending on video driver, it might force a different input driver. -# input_driver = sdl - -# Defines axis threshold. Possible values are [0.0, 1.0] -# input_axis_threshold = 0.5 - -# Keyboard input. Will recognize normal keypresses and special keys like "left", "right", and so on. -# Keyboard input, Joypad and Joyaxis will all obey the "nul" bind, which disables the bind completely, -# rather than relying on a default. -# input_player1_a = x -# input_player1_b = z -# input_player1_y = a -# input_player1_x = s -# input_player1_start = enter -# input_player1_select = rshift -# input_player1_l = q -# input_player1_r = w -# input_player1_left = left -# input_player1_right = right -# input_player1_up = up -# input_player1_down = down -# input_player1_l2 = -# input_player1_r2 = -# input_player1_l3 = -# input_player1_r3 = - -# Two analog sticks (DualShock-esque). -# Bound as usual, however, if a real analog axis is bound, -# it can be read as a true analog. -# Positive X axis is right, Positive Y axis is down. -# input_player1_l_x_plus = -# input_player1_l_x_minus = -# input_player1_l_y_plus = -# input_player1_l_y_minus = -# input_player1_r_x_plus = -# input_player1_r_x_minus = -# input_player1_r_y_plus = -# input_player1_r_y_minus = - -# If desired, it is possible to override which joypads are being used for player 1 through 5. First joypad available is 0. -# input_player1_joypad_index = 0 -# input_player2_joypad_index = 1 -# input_player3_joypad_index = 2 -# input_player4_joypad_index = 3 -# input_player5_joypad_index = 4 -# Player 6-8 is not directly expected by libretro API, but we'll futureproof it. -# input_player6_joypad_index = 5 -# input_player7_joypad_index = 6 -# input_player8_joypad_index = 7 - -# Joypad buttons. -# Figure these out by using RetroArch-Phoenix or retroarch-joyconfig. -# You can use joypad hats with hnxx, where n is the hat, and xx is a string representing direction. -# E.g. "h0up" -# input_player1_a_btn = -# input_player1_b_btn = -# input_player1_y_btn = -# input_player1_x_btn = -# input_player1_start_btn = -# input_player1_select_btn = -# input_player1_l_btn = -# input_player1_r_btn = -# input_player1_left_btn = -# input_player1_right_btn = -# input_player1_up_btn = -# input_player1_down_btn = -# input_player1_l2_btn = -# input_player1_r2_btn = -# input_player1_l3_btn = -# input_player1_r3_btn = - -# Axis for RetroArch D-Pad. -# Needs to be either '+' or '-' in the first character signaling either positive or negative direction of the axis, then the axis number. -# Do note that every other input option has the corresponding _btn and _axis binds as well; they are omitted here for clarity. -# input_player1_left_axis = -# input_player1_right_axis = -# input_player1_up_axis = -# input_player1_down_axis = - -# Holding the turbo while pressing another button will let the button enter a turbo mode -# where the button state is modulated with a periodic signal. -# The modulation stops when the button itself (not turbo button) is released. -# input_player1_turbo = - -# Describes the period and how long of that period a turbo-enabled button should behave. -# Numbers are described in frames. -# input_turbo_period = 6 -# input_turbo_duty_cycle = 3 - -# This goes all the way to player 8 (*_player2_*, *_player3_*, etc), but omitted for clarity. -# All input binds have corresponding binds for keyboard (none), joykeys (_btn) and joyaxes (_axis) as well. - -# Toggles fullscreen. -# input_toggle_fullscreen = f - -# Saves state. -# input_save_state = f2 -# Loads state. -# input_load_state = f4 - -# State slots. With slot set to 0, save state name is *.state (or whatever defined on commandline). -# When slot is != 0, path will be $path%d, where %d is slot number. -# input_state_slot_increase = f7 -# input_state_slot_decrease = f6 - -# Toggles between fast-forwarding and normal speed. -# input_toggle_fast_forward = space - -# Hold for fast-forward. Releasing button disables fast-forward. -# input_hold_fast_forward = l - -# Key to exit emulator cleanly. -# Killing it in any hard way (SIGTERM, SIGKILL, etc, will terminate emulator without saving RAM, etc.) -# input_exit_emulator = escape - -# Decrease/increase input sample rate on the fly. Amount to decrease/increase is defined by audio_rate_step. -# input_rate_step_up = kp_plus -# input_rate_step_down = kp_minus - -# Applies next and previous XML/Cg shader in directory. -# input_shader_next = m -# input_shader_prev = n - -# Hold button down to rewind. Rewinding must be enabled. -# input_rewind = r - -# Toggle between recording and not. -# input_movie_record_toggle = o - -# Toggle between paused and non-paused state -# input_pause_toggle = p - -# Frame advance when game is paused -# input_frame_advance = k - -# Reset the emulated SNES. -# input_reset = h - -# Configures DSP plugin -# input_dsp_config = c - -# Cheats. -# input_cheat_index_plus = y -# input_cheat_index_minus = t -# input_cheat_toggle = u - -# Mute/unmute audio -# input_audio_mute = f9 - -# Take screenshot -# input_screenshot = f8 - -# Netplay flip players. -# input_netplay_flip_players = i - -# Hold for slowmotion. -# input_slowmotion = e - -#### Misc - -# Enable rewinding. This will take a performance hit when playing, so it is disabled by default. -# Do note that rewinding will only work properly when using bSNES libretro core atm. -# rewind_enable = false - -# Rewinding buffer size in megabytes. Bigger rewinding buffer means you can rewind longer. -# The buffer should be approx. 20MB per minute of buffer time. -# rewind_buffer_size = 20 - -# Rewind granularity. When rewinding defined number of frames, you can rewind several frames at a time, increasing the rewinding speed. -# rewind_granularity = 1 - -# Pause gameplay when window focus is lost. -# pause_nonactive = true - -# Autosaves the non-volatile SRAM at a regular interval. This is disabled by default unless set otherwise. -# The interval is measured in seconds. A value of 0 disables autosave. -# autosave_interval = - -# When being client over netplay, use keybinds for player 1. -# netplay_client_swap_input = false - -# Path to XML cheat database (as used by bSNES). -# cheat_database_path = - -# Path to XML cheat config, a file which keeps track of which -# cheat settings are used for individual games. -# If the file does not exist, it will be created. -# cheat_settings_path = - -# Directory to dump screenshots to. -# screenshot_directory = - -# Records video assuming video is hi-res. -# video_hires_record = false - -# Enables lossless RGB H.264 recording if possible (if not, FFV1 is used). -# video_h264_record = true - -# Records video after CPU video filter. -# video_post_filter_record = false - -# Records output of GPU shaded material if available. -# video_gpu_record = false - -# Screenshots output of GPU shaded material if available. -# video_gpu_screenshot = true - -# Block SRAM from being overwritten when loading save states. -# Might potentially lead to buggy games. -# block_sram_overwrite = false - -# When saving a savestate, save state index is automatically increased before -# it is saved. -# Also, when loading a ROM, the index will be set to the highest existing index. -# There is no upper bound on the index. -# savestate_auto_index = false - -# Slowmotion ratio. When slowmotion, game will slow down by factor. -# slowmotion_ratio = 3.0 - -# Enable stdin/network command interface. -# network_cmd_enable = false -# network_cmd_port = 55355 -# stdin_cmd_enable = false - diff --git a/android/phoenix-legacy/res/values/strings.xml b/android/phoenix-legacy/res/values/strings.xml deleted file mode 100644 index 1e2ffa990e..0000000000 --- a/android/phoenix-legacy/res/values/strings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - Hello World, MainActivity! - RetroArch - - \ No newline at end of file diff --git a/android/phoenix-legacy/src/com/retroarch/fileio/FileArrayAdapter.java b/android/phoenix-legacy/src/com/retroarch/fileio/FileArrayAdapter.java deleted file mode 100644 index c6ee07cd6b..0000000000 --- a/android/phoenix-legacy/src/com/retroarch/fileio/FileArrayAdapter.java +++ /dev/null @@ -1,117 +0,0 @@ -package com.retroarch.fileio; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.HashMap; -import java.util.List; -import java.util.Set; - -import com.retroarch.R; - -import android.content.Context; -import android.view.LayoutInflater; -import android.view.View; -import android.view.ViewGroup; -import android.widget.ArrayAdapter; -import android.widget.SectionIndexer; -import android.widget.TextView; - -public class FileArrayAdapter extends ArrayAdapter