Hi!
I am trying to use the model_viewer_plus package in a custom widget but I am facing some issues.
For this package to work, the app has to be configured with the following code:
<application
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
- android:label="example">
+ android:label="example"
+ android:usesCleartextTraffic="true">
<activity
android:name=".MainActivity"
Also, the minSdkVersion has to be changed to 21:
defaultConfig {
...
minSdkVersion 21
...
}
How can I do that on FlutterFlow?
Thanks!!