diff options
| author | 2024-02-05 06:07:29 -0500 | |
|---|---|---|
| committer | 2024-02-08 13:45:26 -0500 | |
| commit | e7c4c8b993ce27a50b7a56f90247056048d20f7d (patch) | |
| tree | b87c275f4ea92092f7c8b6cdcb0f50d32819490f /src/common/android/applets/software_keyboard.h | |
| parent | Merge pull request #12892 from liamwhite/serialization-stuff (diff) | |
| download | yuzu-e7c4c8b993ce27a50b7a56f90247056048d20f7d.tar.gz yuzu-e7c4c8b993ce27a50b7a56f90247056048d20f7d.tar.xz yuzu-e7c4c8b993ce27a50b7a56f90247056048d20f7d.zip | |
android: Move JNI setup and helpers to common
Diffstat (limited to '')
| -rw-r--r-- | src/common/android/applets/software_keyboard.h (renamed from src/android/app/src/main/jni/applets/software_keyboard.h) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/android/app/src/main/jni/applets/software_keyboard.h b/src/common/android/applets/software_keyboard.h index 2affc01f6..9fd09d27c 100644 --- a/src/android/app/src/main/jni/applets/software_keyboard.h +++ b/src/common/android/applets/software_keyboard.h | |||
| @@ -7,7 +7,7 @@ | |||
| 7 | 7 | ||
| 8 | #include "core/frontend/applets/software_keyboard.h" | 8 | #include "core/frontend/applets/software_keyboard.h" |
| 9 | 9 | ||
| 10 | namespace SoftwareKeyboard { | 10 | namespace Common::Android::SoftwareKeyboard { |
| 11 | 11 | ||
| 12 | class AndroidKeyboard final : public Core::Frontend::SoftwareKeyboardApplet { | 12 | class AndroidKeyboard final : public Core::Frontend::SoftwareKeyboardApplet { |
| 13 | public: | 13 | public: |
| @@ -66,7 +66,7 @@ void InitJNI(JNIEnv* env); | |||
| 66 | // Should be called in JNI_Unload | 66 | // Should be called in JNI_Unload |
| 67 | void CleanupJNI(JNIEnv* env); | 67 | void CleanupJNI(JNIEnv* env); |
| 68 | 68 | ||
| 69 | } // namespace SoftwareKeyboard | 69 | } // namespace Common::Android::SoftwareKeyboard |
| 70 | 70 | ||
| 71 | // Native function calls | 71 | // Native function calls |
| 72 | extern "C" { | 72 | extern "C" { |