We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24da07a commit 651f6d0Copy full SHA for 651f6d0
1 file changed
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
return true;
192
}
0 commit comments