You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: flutter_embed_unity/CHANGELOG.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,9 @@
1
+
## 1.2.1
2
+
3
+
22 July 2024
4
+
5
+
* Updated README to note issue [#21](https://github.com/learntoflutter/flutter_embed_unity/issues/21): AR not supported when using Flutter 3.22 on Android API 32 or less (thanks [@timbotimbo](https://github.com/timbotimbo))
Copy file name to clipboardExpand all lines: flutter_embed_unity/README.md
+26-2Lines changed: 26 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -90,9 +90,15 @@ Due to various issues in Flutter support for native platform views, only certain
90
90
91
91
This is being tracked in [#12](https://github.com/learntoflutter/flutter_embed_unity/issues/12) and [#14](https://github.com/learntoflutter/flutter_embed_unity/issues/14) (many thanks to [@timbotimbo](https://github.com/timbotimbo))
92
92
93
-
## Android 22+, iOS 12.0+
94
93
95
-
Unity 2022.3 LTS [only supports Android 5.1 “Lollipop” (API level 22) and above](https://docs.unity3d.com/Manual/android-requirements-and-compatibility.html) and [iOS 12 and above](https://docs.unity3d.com/Manual/ios-requirements-and-compatibility.html) so your app must also observe these limitations.
94
+
## AR not supported on Flutter 3.22 with Android API 32 (version 12 / Snow Cone) or earlier
95
+
96
+
Due to [Issue #21](https://github.com/learntoflutter/flutter_embed_unity/issues/21), AR will crash when using Flutter 3.22 on Android API 32 or earlier (thanks [@timbotimbo](https://github.com/timbotimbo))
Unity 2022.3 LTS [only supports Android API 22 and above](https://docs.unity3d.com/Manual/android-requirements-and-compatibility.html) and [iOS 12 and above](https://docs.unity3d.com/Manual/ios-requirements-and-compatibility.html) so your app must also observe these limitations.
96
102
97
103
In `<your flutter app>/android/app/build.gradle` check your `minSdkVersion` is at least 22:
98
104
@@ -637,6 +643,24 @@ This build error can arise when using Firebase packages in your Unity project. T
637
643
For further info see [#8](https://github.com/learntoflutter/flutter_embed_unity/issues/8)
Since Flutter 3.22, Unity will crash on certain Android versions when ARFoundation is activated. This only happens on Android <13. See [#21](https://github.com/learntoflutter/flutter_embed_unity/issues/21)
Copy file name to clipboardExpand all lines: flutter_embed_unity/pubspec.yaml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
name: flutter_embed_unity
2
2
description: Harness the power of Unity 3D in your Flutter app by embedding Unity as a widget. Useful for adding 3D, gaming or augmented reality (AR) to your app.
0 commit comments