ソースを参照

Fixed exception if getManifestEnvironmentVariables() is called without a current SDL activity

Sam Lantinga 4 年 前
コミット
d0947c1483

+ 4 - 0
android-project/app/src/main/java/org/libsdl/app/SDLActivity.java

@@ -1088,6 +1088,10 @@ public class SDLActivity extends Activity implements View.OnSystemUiVisibilityCh
      */
     public static boolean getManifestEnvironmentVariables() {
         try {
+            if (getContext() == null) {
+                return false;
+            }
+
             ApplicationInfo applicationInfo = getContext().getPackageManager().getApplicationInfo(getContext().getPackageName(), PackageManager.GET_META_DATA);
             Bundle bundle = applicationInfo.metaData;
             if (bundle == null) {