diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-09-26 01:20:17 -0400 |
---|---|---|
committer | Charles Lombardo <clombardo169@gmail.com> | 2023-09-26 18:56:19 -0400 |
commit | a29e26200f8cac773e008719201831edfb83eaee (patch) | |
tree | 003a78cf31a4e13d388605b7e31e9c8e3ac8502a | |
parent | 75180bdc9d32bcff42e67ed73c40a0dc507e9aff (diff) |
android: Remove ability to install xci files
-rw-r--r-- | src/android/app/src/main/jni/native.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp index 71ef2833d..7ae349e8e 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -139,10 +139,6 @@ public: if (nsp->IsExtractedType()) { return InstallError; } - } else if (file_extension == "xci") { - jconst xci = - std::make_shared<FileSys::XCI>(m_vfs->OpenFile(filename, FileSys::Mode::Read)); - nsp = xci->GetSecurePartitionNSP(); } else { return ErrorFilenameExtension; } |