abbiio / react-native-walkme-sdk

2 stars 2 forks source link

WalkMe SDK and androidx #12

Closed christopher-snow closed 1 year ago

christopher-snow commented 1 year ago

We are currently seeing the following error propagate through our build pipeline:

/**/node_modules/react-native-walkme-sdk/android/src/main/java/com/walkme/RNWalkMeSdkModule.java:4: error: package android.support.annotation does not exist
import android.support.annotation.Nullable;
                                 ^
/**/node_modules/react-native-walkme-sdk/android/src/main/java/com/walkme/RNWalkMeSdkModule.java:136: error: cannot find symbol
                         @Nullable WritableMap params) {
                          ^
  symbol:   class Nullable
  location: class RNWalkMeSdkModule
Note: /**/node_modules/react-native-walkme-sdk/android/src/main/java/com/walkme/RNWalkMeSdkModule.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.

Would it be a heavy lift to port from android.support.annotation.Nullable to android.annotation.Nullable ?