react-native-media-kit icon indicating copy to clipboard operation
react-native-media-kit copied to clipboard

Failing to compile on Android RN 0.32

Open abbasfreestyle opened this issue 7 years ago • 7 comments

Unfortunately i can't seem to get passed the compiling phase with this:

:react-native-media-kit:compileLint
:react-native-media-kit:copyReleaseLint UP-TO-DATE
:react-native-media-kit:preBuild UP-TO-DATE
:react-native-media-kit:preReleaseBuild UP-TO-DATE
:react-native-media-kit:checkReleaseManifest
:react-native-media-kit:preDebugAndroidTestBuild UP-TO-DATE
:react-native-media-kit:preDebugBuild UP-TO-DATE
:react-native-media-kit:preDebugUnitTestBuild UP-TO-DATE
:react-native-media-kit:preReleaseUnitTestBuild UP-TO-DATE
:react-native-media-kit:prepareComAndroidSupportAppcompatV72301Library UP-TO-DATE
:react-native-media-kit:prepareComAndroidSupportRecyclerviewV72301Library UP-TO-DATE
:react-native-media-kit:prepareComAndroidSupportSupportV42321Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoDrawee0110Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoFbcore0110Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoFresco0110Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoImagepipeline0110Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoImagepipelineBase0110Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookFrescoImagepipelineOkhttp30110LibraryUP-TO-DATE
:react-native-media-kit:prepareComFacebookReactReactNative0320Library UP-TO-DATE
:react-native-media-kit:prepareComFacebookSoloaderSoloader010Library UP-TO-DATE
:react-native-media-kit:prepareComGoogleAndroidExoplayerExoplayerR156Library UP-TO-DATE
:react-native-media-kit:prepareOrgWebkitAndroidJscR174650Library UP-TO-DATE
:react-native-media-kit:prepareReleaseDependencies
:react-native-media-kit:compileReleaseAidl UP-TO-DATE
:react-native-media-kit:compileReleaseRenderscript UP-TO-DATE
:react-native-media-kit:generateReleaseBuildConfig UP-TO-DATE
:react-native-media-kit:generateReleaseAssets UP-TO-DATE
:react-native-media-kit:mergeReleaseAssets UP-TO-DATE
:react-native-media-kit:generateReleaseResValues UP-TO-DATE
:react-native-media-kit:generateReleaseResources UP-TO-DATE
:react-native-media-kit:mergeReleaseResources UP-TO-DATE
:react-native-media-kit:processReleaseManifest UP-TO-DATE
:react-native-media-kit:processReleaseResources UP-TO-DATE
:react-native-media-kit:generateReleaseSources UP-TO-DATE
:react-native-media-kit:processReleaseJavaRes UP-TO-DATE
:react-native-media-kit:compileReleaseJavaWithJavac
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:95: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:111: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:127: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:143: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:159: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:175: error: no suitable constructor found for Event(int,long)
                .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                               ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
/Users/mycomp/Apps/reactApp/node_modules/react-native-media-kit/android/src/main/java/com/greatdroid/reactnative/media/player/ReactMediaPlayerViewManager.java:193: error: no suitable constructor found for Event(int,long)
                  .dispatchEvent(new Event(view.getId(), SystemClock.uptimeMillis()) {
                                 ^
    constructor Event.Event() is not applicable
      (actual and formal argument lists differ in length)
    constructor Event.Event(int) is not applicable
      (actual and formal argument lists differ in length)
7 errors
:react-native-media-kit:compileReleaseJavaWithJavac FAILED

FAILURE: Build failed with an exception.

What seems to be the problem?

Many thanks

abbasfreestyle avatar Aug 30 '16 15:08 abbasfreestyle