We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfbe4d8 commit 6279dd8Copy full SHA for 6279dd8
Assets/AndroidIl2cppPatchDemo/Editor/AndroidBuilder.cs
@@ -184,9 +184,9 @@ public static bool PatchAndroidProject()
184
@"import android.view.WindowManager;
185
import io.github.noodle1983.Boostrap;");
186
187
- allJavaText = allJavaText.Replace("mUnityPlayer = new UnityPlayer(this,this);",
+ allJavaText = allJavaText.Replace("mUnityPlayer = new UnityPlayer(this, this);",
188
@"Boostrap.InitNativeLibBeforeUnityPlay(getApplication().getApplicationContext().getFilesDir().getPath());
189
- mUnityPlayer = new UnityPlayer(this,this);");
+ mUnityPlayer = new UnityPlayer(this, this);");
190
File.WriteAllText(javaEntranceFile, allJavaText);
191
192
// generate removal test file
0 commit comments