Some input files use or override a deprecated API

前端 未结 2 400
北海茫月
北海茫月 2021-01-08 00:30

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         


        
相关标签:
2条回答
  • 2021-01-08 01:22

    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.

    0 讨论(0)
  • 2021-01-08 01:22

    I tried multiple solutions for this some of those are given below

    1. Add below code in Android/app/build.gradle file

      configurations {
       compile.exclude group: 'com.google.zxing'
      }
      
    2. 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">
      
    0 讨论(0)
提交回复
热议问题