react-native-sound
Version:
React Native module for playing sound clips on iOS and Android
38 lines (32 loc) • 2.39 kB
text/xml
<issues format="4" by="lint 24.3.4">
<issue
id="InvalidPackage"
severity="Error"
message="Invalid package reference in library; not included in Android: `java.nio.file`. Referenced from `okio.Okio`."
category="Correctness"
priority="6"
summary="Package not included in Android"
explanation="This check scans through libraries looking for calls to APIs that are not included in Android.
When you create Android projects, the classpath is set up such that you can only access classes in the API packages that are included in Android. However, if you add other projects to your libs/ folder, there is no guarantee that those .jar files were built with an Android specific classpath, and in particular, they could be accessing unsupported APIs such as java.applet.
This check scans through library jars and looks for references to API packages that are not included in Android and flags these. This is only an error if your code calls one of the library classes which wind up referencing the unsupported package.">
<location
file="/Users/z/.gradle/caches/modules-2/files-2.1/com.squareup.okio/okio/1.5.0/bb7d4d96e780e8ef4f275c7d8dd3ef2883ddf99a/okio-1.5.0.jar"/>
</issue>
<issue
id="GradleDynamicVersion"
severity="Warning"
message="Avoid using + in version numbers; can lead to unpredictable and unrepeatable builds (com.facebook.react:react-native:0.11.+)"
category="Correctness"
priority="4"
summary="Gradle Dynamic Version"
explanation="Using `+` in dependencies lets you automatically pick up the latest available version rather than a specific, named version. However, this is not recommended; your builds are not repeatable; you may have tested with a slightly different version than what the build server used. (Using a dynamic version as the major version number is more problematic than using it in the minor version position.)"
errorLine1=" compile 'com.facebook.react:react-native:0.11.+'"
errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"
quickfix="studio">
<location
file="/Users/z/Projects/RNSoundDemo/node_modules/react-native-sound/android/build.gradle"
line="19"
column="3"/>
</issue>
</issues>