From ab82cdd6d187bec78cd36203a9ace39a4c816654 Mon Sep 17 00:00:00 2001 From: crueter Date: Sun, 26 Apr 2026 12:50:55 -0400 Subject: [PATCH] [android] Fix auto updater by using https scheme Seems like some phone vendors require https for URLs? Weird behavior, works on some phones but not others Signed-off-by: crueter --- src/android/app/src/main/jni/native.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/android/app/src/main/jni/native.cpp b/src/android/app/src/main/jni/native.cpp index 93a1337d80..b78be0cefa 100644 --- a/src/android/app/src/main/jni/native.cpp +++ b/src/android/app/src/main/jni/native.cpp @@ -1760,7 +1760,7 @@ JNIEXPORT jstring JNICALL Java_org_yuzu_yuzu_1emu_NativeLibrary_getUpdateApkUrl( const std::string apk_filename = fmt::format("Eden-Android-{}-{}.apk", artifact_str, variant); - const std::string url = fmt::format("{}/{}/{}", + const std::string url = fmt::format("https://{}/{}/{}", std::string{Common::g_build_auto_update_api}, version_str, apk_filename);