Flutter Add-to-app example with Kivy
Adding a Flutter app to a Kivy app using Flutter’s add-to-app feature.
The idea of this repository is to demonstrate data-exchange between the two platforms using Flutter’s Platform Channels.
https://www.youtube.com/watch?v=VyPgORlWEn0
This repository is a simpler version of what is in the video, therefore it does not have the YouTube player example.
buildozer android debug
.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a/templates/build.tmpl.gradle
with the one in this repositoryCHANGE_ME
to the absolute path of ‘repo’ in this repository/home/User/KivyFlutterExperiment/flutter_side/repo
.buildozer/android/platform/build-armeabi-v7a/dists/myapp__armeabi-v7a/templates/AndroidManifest.tmpl.xml
<activity
android:name="io.flutter.embedding.android.FlutterActivity"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize"
></activity>