I just downloaded the new LWUIT 1.5 and when I compiled my project then I saw in the output trace these lines:
Note: Some input files use or override a depre
according to comments in older SO question, "-Xlint in NetBeans is set under project properties, run or compile options" - see details here: Compiling issue in NetBeans
There is also a thread at Netbeans forums. They say,
Go to the Compiling section of the Project Properties. These is a check box labeled "Report use of deprecated API". Checking that will turn on -Xlint.
I tried multiple solutions for this some of those are given below
Add below code in Android/app/build.gradle file
configurations {
compile.exclude group: 'com.google.zxing'
}
Add android:usesCleartextTraffic="true"
to file path android/app/src/main/AndroidManifest.xml
it should look like this:
<application
android:name="io.flutter.app.FlutterApplication"
android:label="app_name"
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true">