Advertisement
Guest User

Untitled

a guest
Nov 20th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.23 KB | None | 0 0
  1. class NativeLoggerModule : BaseJavaModule() {
  2.  
  3.      override fun getName(): String {
  4.            return "NativeLogger"
  5.      }
  6.  
  7.      @ReactMethod
  8.      fun logTheObject() {
  9.            Log.d(name, β€œMethod called”)
  10.      }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement