[android] Fix key install and revert to old icon_bg
All checks were successful
eden-build / source (push) Successful in 6m52s
eden-build / linux (push) Successful in 29m5s
eden-build / windows (msvc) (push) Successful in 31m30s
eden-build / android (push) Successful in 34m32s

`312b3d4743`

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter 2025-07-13 01:14:09 -04:00
parent 5091759a47
commit 1cd51d6545
No known key found for this signature in database
GPG key ID: 425ACD2D4830EBC6
3 changed files with 740 additions and 939 deletions

View file

@ -349,6 +349,8 @@ class MainActivity : AppCompatActivity(), ThemeProvider {
val resultCode: Int = NativeLibrary.installKeys(result.toString(), extension);
if (resultCode == 0) {
// TODO(crueter): It may be worth it to switch some of these Toasts to snackbars,
// since most of it is foreground-only anyways.
Toast.makeText(
applicationContext, R.string.keys_install_success, Toast.LENGTH_SHORT
).show()

File diff suppressed because it is too large Load diff

View file

@ -46,7 +46,7 @@ FirmwareManager::InstallKeys(std::string location, std::string extension) {
}
jmethodID copyToStorage = Common::Android::GetCopyToStorage();
jstring jdest = Common::Android::ToJString(env, keys_dir.string());
jstring jdest = Common::Android::ToJString(env, keys_dir.string() + "/");
jboolean copyResult = env->CallStaticBooleanMethod(
native,