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
* Remove producer install tasks because v2023.1.1.beta gradle plugin handles installation through the compiler plugin.
* Removed unused function.
* Add mavenLocal to gradle files for easier integration testing.
Add lookup function to get klutter BOM from root/klutter.yaml also for easier integration testing and project generation using kommand.
* Move findKlutterBomVersion to task.
* If version is quoted, then remove them in findKlutterBomVersion.
* Add missing @controller annotation in platform example code.
Update MyApp example code to use the 2023.1.1 klutter code.
Bump Kotlin to 1.8.20 for Android apps.
* Update readme.
* Bump gradle-wrapper to 7.2.
Add extra FAQ.
* Add FlutterEngine.xcframework to the root/ios podspec file.
Copy FlutterEngine.xcframework to ios/Klutter, not ios/Klutter/FlutterEngine.xcframework.
* Set path to root in generated android build.gradle.
Add embedded dependencies in android build.gradle.
* KlutterAdaptee is deprecated. Use Event instead.
* Remove ios init task because it should only be run when developer platform is an Intel Mac. This can be configured through Gradle build file.
* Add change information to CHANGELOG.
* Latest flutter-engine-kmp xcframework.
* Remove FlutterEngine XCFramework and get the dependencies for both iOS and Android through the platform module.
* Add flutter-engine to iosMain sourceSet dependencies.
* Remove flutter-engine-android from producer android build.gradle because it is included through embedded dependency.
* Make klutter_plugin_loader.gradle.kts smarter to use $root variable in a local path.
* Release 0.3.0.
* Update FAQ.
Copy file name to clipboardExpand all lines: README.md
+6-1
Original file line number
Diff line number
Diff line change
@@ -202,4 +202,9 @@ If not then do ./gradlew clean build -p "platform" from the root folder.
202
202
203
203
If there's an error message saying unable to find plugin or similar then run pod update
204
204
(or for Mac M1 users you might have to do: arch -x86_64 pod install) in the root/example/ios
205
-
folder.
205
+
folder.
206
+
207
+
If there's an error message saying something similiar to '...example/ios/Pods/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh: Permission denied'
208
+
then try one of:
209
+
- delete the Podfile.lock and run pod install in root/example/ios folder.
210
+
- run pod deintegrate and then pod install in root/example/ios folder.
0 commit comments