Giter Club home page Giter Club logo

react-native-contacts's Introduction

react-native-contacts

To contribute read CONTRIBUTING.md.

Ask questions on stackoverflow not the issue tracker.

Usage

getAll is a database intensive process, and can take a long time to complete depending on the size of the contacts list. Because of this, it is recommended you access the getAll method before it is needed, and cache the results for future use.

import Contacts from 'react-native-contacts';

Contacts.getAll().then(contacts => {
  // contacts returned
})

See the full API for more methods.

Android permissions

On android you must request permissions beforehand

import { PermissionsAndroid } from 'react-native';
import Contacts from 'react-native-contacts';

PermissionsAndroid.request(PermissionsAndroid.PERMISSIONS.READ_CONTACTS, {
        title: 'Contacts',
        message: 'This app would like to view your contacts.',
        buttonPositive: 'Please accept bare mortal',
    })
        .then((res) => {
            console.log('Permission: ', res);
            Contacts.getAll()
                .then((contacts) => {
                    // work with contacts
                    console.log(contacts);
                })
                .catch((e) => {
                    console.log(e);
                });
        })
        .catch((error) => {
            console.error('Permission error: ', error);
        });

Installation

Please read this entire section.

npm

npm install react-native-contacts --save

yarn

yarn add react-native-contacts

You no longer need to include the pod line in the PodFile since V7.0.0+, we now support autolinking!

If you were previously using manually linking follow these steps to upgrade

react-native unlink react-native-contacts
npm install latest version of react-native-contacts
You're good to go!

react native version 60 and above

If you are using react native version 0.60 or above you do not have to link this library.

ios

Starting with 0.60 on iOS you have to do the following:

  • Add the following line inside ios/Podfile
target 'app' do
  ...
  pod 'react-native-contacts', :path => '../node_modules/react-native-contacts' <-- add me
  ...
end
  • Run pod install in folder ios

react native below 60

iOS

Using the same instructions as https://facebook.github.io/react-native/docs/linking-libraries-ios.html

  1. open in xcode open ios/yourProject.xcodeproj/
  2. drag ./node_modules/react-native-contacts/ios/RCTContacts.xcodeproj to Libraries in your project view.
  3. In the XCode project navigator, select your project, select the Build Phases tab drag Libraries > RCTContacts.xcodeproj > Products > libRCTContacts.a into the Link Binary With Libraries section. Video to clarify Adding Camera Roll to an ios project in React Native.

Run the app via the Run button in xcode or react-native run-ios in the terminal.

Android

For react native versions 0.60 and above you have to use Android X. Android X support was added to react-native-contacts in version 5.x+. If you are using rn 0.59 and below install rnc versions 4.x instead.

  1. In android/settings.gradle
...
include ':react-native-contacts'
project(':react-native-contacts').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-contacts/android')
  1. In android/app/build.gradle
...
dependencies {
    ...
    implementation project(':react-native-contacts')
}
  1. register module
//  MainApplication.java
import com.rt2zz.reactnativecontacts.ReactNativeContacts; // <--- import

public class MainApplication extends Application implements ReactApplication {
  ......

  @Override
  protected List<ReactPackage> getPackages() {
    return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new ReactNativeContacts()); // <------ add this
  }
  ......
}

Permissions

API 23+

Android requires allowing permissions with https://facebook.github.io/react-native/docs/permissionsandroid.html The READ_CONTACTS permission must be added to your main application's AndroidManifest.xml. If your app creates contacts add WRITE_CONTACTS permission to AndroidManifest.xml and request the permission at runtime.

...
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
...
API 22 and below

Add READ_PROFILE and/or WRITE_PROFILE permissions to AndroidManifest.xml

...
<uses-permission android:name="android.permission.READ_PROFILE" />
...

ProGuard

If you use Proguard, the snippet below on proguard-rules.pro Without it, your apk release version could failed

-keep class com.rt2zz.reactnativecontacts.** {*;}
-keepclassmembers class com.rt2zz.reactnativecontacts.** {*;}

All RN versions

ios

Add kit specific "permission" keys to your Xcode Info.plist file, in order to make requestPermission work. Otherwise your app crashes when requesting the specific permission. Open Info.plist. Add key Privacy - Contacts Usage Description with your kit specific permission. The value for the key is optional in development. If you submit to the App Store the value must explain why you need this permission.

screen shot 2016-09-21 at 13 13 21

Accessing note filed on iOS 13 (optional)

If you'd like to read/write the contact's notes, call the iosEnableNotesUsage(true) method before accessing the contact infos. Also, a com.apple.developer.contacts.notes entitlement must be added to the project. Before submitting your app to the AppStore, the permission for using the entitlement has to be granted as well. You can find a more detailed explanation here.

API

  • getAll: Promise<Contact[]> - returns all contacts as an array of objects
  • getAllWithoutPhotos - same as getAll on Android, but on iOS it will not return uris for contact photos (because there's a significant overhead in creating the images)
  • getContactById(contactId): Promise - returns contact with defined contactId (or null if it doesn't exist)
  • getCount(): Promise - returns the number of contacts
  • getPhotoForId(contactId): Promise - returns a URI (or null) for a contacts photo
  • addContact(contact): Promise - adds a contact to the AddressBook.
  • openContactForm(contact) - create a new contact and display in contactsUI.
  • openExistingContact(contact) - open existing contact (edit mode), where contact is an object with a valid recordID
  • viewExistingContact(contact) - open existing contact (view mode), where contact is an object with a valid recordID
  • editExistingContact(contact): Promise - add numbers to the contact, where the contact is an object with a valid recordID and an array of phoneNumbers
  • updateContact(contact): Promise - where contact is an object with a valid recordID
  • deleteContact(contact) - where contact is an object with a valid recordID
  • getContactsMatchingString(string): Promise<Contact[]> - where string is any string to match a name (first, middle, family) to
  • getContactsByPhoneNumber(string): Promise<Contact[]> - where string is a phone number to match to.
  • getContactsByEmailAddress(string): Promise<Contact[]> - where string is an email address to match to.
  • checkPermission(): Promise - checks permission to access Contacts ios only
  • requestPermission(): Promise - request permission to access Contacts ios only
  • writePhotoToPath() - writes the contact photo to a given path android only

Example Contact Record

{
  recordID: '6b2237ee0df85980',
  backTitle: '',
  company: '',
  emailAddresses: [{
    label: 'work',
    email: '[email protected]',
  }],
  familyName: 'Jung',
  givenName: 'Carl',
  middleName: '',
  jobTitle: '',
  phoneNumbers: [{
    label: 'mobile',
    number: '(555) 555-5555',
  }],
  hasThumbnail: true,
  thumbnailPath: 'content://com.android.contacts/display_photo/3',
  postalAddresses: [{
    label: 'home',
    formattedAddress: '',
    street: '123 Fake Street',
    pobox: '',
    neighborhood: '',
    city: 'Sample City',
    region: 'CA',
    state: 'CA',
    postCode: '90210',
    country: 'USA',
  }],
  prefix: 'MR',
  suffix: '',
  department: '',
  birthday: {'year': 1988, 'month': 1, 'day': 1 },
  imAddresses: [
    { username: '0123456789', service: 'ICQ'},
    { username: 'johndoe123', service: 'Facebook'}
  ],
  isStarred: false,
}

Android only

  • on Android versions below 8 the entire display name is passed in the givenName field. middleName and familyName will be "".
  • isStarred field
  • writePhotoToPath() - writes the contact photo to a given path

iOS only

checkPermission(): Promise - checks permission to access Contacts requestPermission(): Promise - request permission to access Contacts

Adding Contacts

Currently all fields from the contact record except for thumbnailPath are supported for writing

var newPerson = {
  emailAddresses: [{
    label: "work",
    email: "[email protected]",
  }],
  familyName: "Nietzsche",
  givenName: "Friedrich",
}

Contacts.addContact(newPerson)

Open Contact Form

Currently all fields from the contact record except for thumbnailPath are supported for writing

var newPerson = {
  emailAddresses: [{
    label: "work",
    email: "[email protected]",
  }],
  displayName: "Friedrich Nietzsche"
}

Contacts.openContactForm(newPerson).then(contact => {
  // contact has been saved
})

You may want to edit the contact before saving it into your phone book. So using openContactForm allow you to prompt default phone create contacts UI and the new to-be-added contact will be display on the contacts UI view. Click save or cancel button will exit the contacts UI view.

Updating Contacts

Example

Contacts.getAll().then(contacts => {
  // update the first record
  let someRecord = contacts[0]
  someRecord.emailAddresses.push({
    label: "junk",
    email: "[email protected]",
  })
  Contacts.updateContact(someRecord).then(() => {
    // record updated
  })
})

Update reference contacts by their recordID (as returned by the OS in getContacts). Apple does not guarantee the recordID will not change, e.g. it may be reassigned during a phone migration. Consequently you should always grab a fresh contact list with getContacts before performing update operations.

Add numbers to an existing contact

Example

var newPerson = { 
  recordID: '6b2237ee0df85980',
  phoneNumbers: [{
    label: 'mobile',
    number: '(555) 555-5555',
  }, ...
  ]
}

Contacts.editExistingContact(newPerson).then(contact => {
    //contact updated
});

Add one or more phone numbers to an existing contact. On Android the edited page will be opened. On iOS the already edited contact will be opened with the possibility of further modification.

Bugs

There are issues with updating contacts on Android:

  1. custom labels get overwritten to "Other",
  2. postal address update code doesn't exist. (it exists for addContact) See #332 (comment) for current discussions.

Delete Contacts

You can delete a record using only it's recordID

Contacts.deleteContact({recordID: 1}).then(recordId => {
  // contact deleted
})

Or by passing the full contact object with a recordID field.

Contacts.deleteContact(contact).then((recordId) => {
  // contact deleted
})

Displaying Thumbnails

The thumbnailPath is the direct URI for the temp location of the contact's cropped thumbnail image.

<Image source={{uri: contact.thumbnailPath}} />

Permissions Methods (optional)

checkPermission - checks permission to access Contacts.
requestPermission - request permission to access Contacts.

Usage as follows:

Contacts.checkPermission().then(permission => {
  // Contacts.PERMISSION_AUTHORIZED || Contacts.PERMISSION_UNDEFINED || Contacts.PERMISSION_DENIED
  if (permission === 'undefined') {
    Contacts.requestPermission().then(permission => {
      // ...
    })
  }
  if (permission === 'authorized') {
    // yay!
  }
  if (permission === 'denied') {
    // x.x
  }
})

These methods are only useful on iOS. For Android you'll have to use https://facebook.github.io/react-native/docs/permissionsandroid.html

These methods do not re-request permission if permission has already been granted or denied. This is a limitation in iOS, the best you can do is prompt the user with instructions for how to enable contacts from the phone settings page Settings > [app name] > contacts.

Example

You can find an example app/showcase here

react-native-contacts example

Maintainers

If your business needs premium react native support please reach out to the maintainer.

harrymoreno.com

Harry Moreno

LICENSE

MIT License

react-native-contacts's People

Contributors

alexfigtree avatar behotsiii avatar bertrandgressier avatar chriswait avatar chuganzy avatar dbhowell avatar dependabot[bot] avatar garethmccall avatar hatemalimam avatar hsubox76 avatar jonnyboy85 avatar m-k avatar marchuck avatar mateosilguero avatar mfbx9da4 avatar mikehardy avatar morenoh149 avatar npomfret avatar owjsub avatar oximer avatar pitbot avatar rcidt avatar rt2zz avatar sandromachado avatar stefan-ctrl avatar svnscha avatar theory-of-soul avatar vaxxis avatar xyuka avatar ymatsushita2019 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-native-contacts's Issues

Keep AddressBook framework for project that need to be < iOS 9 compliant

Hello,

Thanks for the work made so far. I used the react-native-addressbook package and switched on react-native-contacts.

I took a look to the Readme file and I saw that you want to migrate to the new Contacts Framework
This framework is IOS9+ compliant, but a lot of projects need to stay iOS7/iOS8 compliant.

Do you plan to keep a version of this package compliant for < iOS9 version?

Best,
Jean

rename recordID to id

also we should consider how id handling is different in android vs iOS (in ios record id's are somewhat transient)

Search crashes after more than a few text changes. Exception if loaded as bundle.

I've modeled the "Movies" example for my implementation, and am using a modified version of it's search functionality. In addition to the example code, I've added a function that will filter contacts by the search query text, as well as a function that sorts by givenName (first name) alphabetically.

When loading js code from URL, if I type more than a few letters into the search, or delete and add, the app will crash and XCode will lose connection. This happens every time.

If loading js as a bundle, when I type and then hit the delete key the app will throw an exception.

Communications error: <OS_xpc_error: <error: 0x19bbe0af0> { count = 1, contents =
"XPCErrorDescription" => <string: 0x19bbe0e50> { length = 22, contents = "Connection interrupted" }
}>

error on android 4.2.2 API 17

when I try to use the Contacts.getAll method
I receive the following error:

Could not invoke Contacts.getAll
invoke
BaseJavaModule.java: 262
call
NativeModuleRegistry.java 158

has anyone faced this issue or smothering similar?

Add checkPermission for Android

Can you add checkPermission for Android, and to the status table in the readme? I couldn't tell whether it's supported on Android. From reading further on it looks like it is iOS only, not entirely sure though so I thought I'd ask.

Android: phoneNumbers array is Empty

It is given me full array of contacts but all of them have the phoneNumbers array empty, either storing them on the Device or google account.
Using android 5.0.2

Contributing setup

I can't get this to work with a local package installation to try and develop new features. Can you explain how you get it setup for local development, please?

AddressBook is not defined

Hey I just started using this and when I try to request permission it throws an error about AddressBook not being defined.

In the AddressBook.requestPermission line.

How can I include AddressBook? I can't seem to find it in the docs

How about just open the address book?

I was looking forward to be able to open the address book (supporting API level 18) and select a contact. Seems like it is something that we cannot do with this module right?

Rerequest permissions (iOS)

Is there any way to have the app rerequest the user for access to the contacts? If not I can document that behavior.

Getting Error When Fetching Contacts.

I'm slightly new to React native and Objective C, but I recently tried to use this package in an app I'm working on and keep getting this error when calling the getAll function:

Exception thrown while invoking getAll on target RCTContacts with params (
7
): *** setObjectForKey: object cannot be nil (key: thumbnailPath)

Initially I assumed it was related to not using the new Contacts API, so I tried rewriting the getAll function using it, but ran into some problems. Any idea on how I can fix the above? This is the code I'm using in my index.ios.js:

Contacts.getAll(function(error, contacts) {
if(error && error.type === 'permissionDenied'){
console.log(err);
} else {
console.log(contacts);
}

null object reference

repeatedly calling getContacts in an app sometimes causes the following error

  attempt to invoke interface method 'boolean android.database.Cursor.moveToNext()' on a null object reference

screen shot 2015-12-15 at 8 01 10 pm

Change versioning to semver

Could you consider changing your versioning system to semver?

The latest update from 0.2.7 to 0.2.8 includes breaking changes and it broke an app I'm developing.

Get WhatsApp contact

Hi, I know it is a silly question. But I'm curious how to know if a contact has WhatsApp account? Thanks

fix README.md typo

./node_modules/react-native-contacts/RCTContacts.xcodeproj =>
./node_modules/react-native-contacts/ios/RCTContacts.xcodeproj

Instant permissionDenied

I'm getting the permissionDenied when doing getAll on iOS, works great on Andriod.

Error message:
{ type: 'permissionDenied' }

This is the code:

Contacts.getAll((err, contacts) => {
      if(err && err.type === 'permissionDenied'){
        dispatch(receiveContactsError())
      } else {
        dispatch(receiveContacts(contacts))
     }
})

Is this an know issue?

iOS performance

It currently takes around 3 seconds on a iPhone 6s simulator to collect 93 contacts from the phone. I know people who have several thousand contacts on their devices, (typically they synced their company address book to the phone). Its not as uncommon as you might expect.

It's taking a very long time, and making their phone very hot to just cycle through them all. And then it just crashes - I assume with a memory problem but I'm not getting any crash reports.

Is there anything that can be done? I'll take a look my self but I'm no iOS developer.

unable to open database file (code 14)

I'm running master off github for this project. I get the following error when testing on my actual android device
screenshot_20151216-003447
and here is an extensive logcat output with many complaints about cursor finalized without prior close() is there a open cursor somewhere in https://github.com/rt2zz/react-native-contacts/blob/master/android/src/main/java/com/rt2zz/reactnativecontacts/ContactsManager.java#L32 ?

I'll note the cur and eCur cursors never get .close() run on them.

What is a 'contact'?

I've got a feature branch that is working on my phone.
Problem is on android I'm using ContactsContract.CommonDataKinds.Contactables which is a sort of pseudo join table between phone and email types.

As of now the function synchronously returns all "contacts" on the phone. A contact being objects that are "contactable". On my personal phone this returns a mix of contacts you'd find in the addressbook (phonebook) and emails I've sent from my gmail.

I could easily limit the result set to only contacts that have a phone number, like so. Thoughts @rt2zz @niftylettuce.

App crash on contact setting toggled

When simulating ios and manually toggling the permission to contacts the app crashes. Not sure if this is going to cause issues in a deployed app. Please advise.
screen shot 2015-11-03 at 11 22 38 am
screen shot 2015-11-03 at 11 22 46 am

update readme MainActivity.java

My MainActivity.java has the following:

public class MainActivity extends ReactActivity {

    /**
     * Returns the name of the main component registered from JavaScript.
     * This is used to schedule rendering of the component.
     */
    @Override
    protected String getMainComponentName() {
        return "App Name Goes Here";
    }

    /**
     * Returns whether dev mode should be enabled.
     * This enables e.g. the dev menu.
     */
    @Override
    protected boolean getUseDeveloperSupport() {
        return BuildConfig.DEBUG;
    }

   /**
   * A list of packages used by the app. If the app uses additional views
   * or modules besides the default ones, add more packages here.
   */
    @Override
    protected List<ReactPackage> getPackages() {
      return Arrays.<ReactPackage>asList(
        new MainReactPackage()
      );
    }
}

The README just says add the code to MainActivity.java, but it doesn't say where. What part of the file does it go in?

Adding RX support

Hello,

I'm using this package on a project but I added RxJS support to the methods of this package to be able to return an observer object instead of passing completionBlock in parameter.

Would you be interested by a pull request to integrate this features in your package or should I create my own package react-native-contacts-rx to add the support of RxJS?

Best,
Jean

Unable to open database file (code 14)

screenshot_2016-03-10-19-07-30

Not sure if this is an issue accorded to this module. But this error occurs everytime i use getAll - Contacts. Any ideas?

Stacktrace:

ContactsManager.java line 46
com.rt2zz.reactnativecontacts.ContactsManager.getAll

Fatal Exception: android.database.sqlite.SQLiteException: unable to open database file (code 14)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:181)
at android.database.DatabaseUtils.readExceptionFromParcel(DatabaseUtils.java:137)
at android.content.ContentProviderProxy.query(ContentProviderNative.java:421)
at android.content.ContentResolver.query(ContentResolver.java:505)
at android.content.ContentResolver.query(ContentResolver.java:440)
at com.rt2zz.reactnativecontacts.ContactsManager.getAll(ContactsManager.java:46)
at java.lang.reflect.Method.invoke(Method.java)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.facebook.react.bridge.BaseJavaModule$JavaMethod.invoke(BaseJavaModule.java:249)
at com.facebook.react.bridge.NativeModuleRegistry$ModuleDefinition.call(NativeModuleRegistry.java:158)
at com.facebook.react.bridge.NativeModuleRegistry.call(NativeModuleRegistry.java:58)
at com.facebook.react.bridge.CatalystInstanceImpl$NativeModulesReactCallback.call(CatalystInstanceImpl.java:428)
at com.facebook.react.bridge.queue.NativeRunnableDeprecated.run(NativeRunnableDeprecated.java)
at android.os.Handler.handleCallback(Handler.java:739)
at android.os.Handler.dispatchMessage(Handler.java:95)
at com.facebook.react.bridge.queue.MessageQueueThreadHandler.dispatchMessage(MessageQueueThreadHandler.java:31)
at android.os.Looper.loop(Looper.java:211)
at com.facebook.react.bridge.queue.MessageQueueThreadImpl$3.run(MessageQueueThreadImpl.java:184)
at java.lang.Thread.run(Thread.java:818)

Use await to get contacts

I've been looking through the code but can't figure out a good way to use await with Contacts.getAll. I want to be able to do something similar to what React Native uses for AsyncStorage (https://facebook.github.io/react-native/docs/asyncstorage.html#content)

E.g. code like this

  var contacts = await Contacts.getAll((err, contacts) => {
    if(err && err.type === 'permissionDenied') {
      console.log("Permission denied contacts");
      return [];
    } else {
      return contacts;
    }
  });

  for (var i = 0; i < contacts.length; i++) {
    var contact = contacts[i];
    // do stuff here
  }

Do you have any ideas on how to do this or would it require some changes to the project code? I think it isn't supported currently.

Don't Migrate to Contacts!

Or at least if you do, maintain the AddressBook implementation for iOS 7 and iOS 8 support. Thanks for your good work!

familyName and givenName get added together

When adding a new contact on Android, the familyName field and givenName field get concatenated. The result is that familyName is empty, and givenName contains the concatenation.

Displaying image from thumbnailPath

Hello,

I've been trying without any success to display the thumbnail of the contact in an Image. It seems the isStatic prop that used to fix this in prior versions is no longer supported. I
ve prefixed file:// and file:/ (since the first char of the returned path is /). I'm not getting any errors, just not seeing an image. Also setting the height and width in the source object and style.

Here's an example path:
/var/mobile/Containers/Data/Application/0C02FA52-38D9-485A-BA06-E9544673CB21/tmp/thumbimage_7bZzp

Thanks for any suggestions!

'ME' contact missing??

I've just noticed that the contact representing 'ME' (or 'My Local Profile') isn't being returned in android in my app. Is this contact some sort of 'special' one that isn't stored with the others?

"RCTBridgeModule.h" file not found

Created a new app, followed getting started guide from readme (adding linked libraries etc) and keep getting the above message. Any ideas?

Trying to build the project using a local version of this package.

Refactoring and details added to contacts fetched in iOS

Hello,

The code is ready on the branch moreInfosFromUser of my fork: https://github.com/JeanLebrument/react-native-contacts/tree/feature/moreInfosFromUser

I created a category APContact+EasyMapping to map APContact that I included in the project: https://github.com/JeanLebrument/APContact-EasyMapping

However, I have some breaking changes with the current JSON provided by your library.

The representation of APContact in NSDictionary is strictly identical to the model. (For the thumbnail, I serialized the UIImage in Base 64 String).

I could modify the JSON outputted by the iOS Native Module in the Javascript to modify its representation to keep the actual one of your package but here are my observations:

  • With APAddressBook I can't retrieve the URL of the image but I can get the the UIImage then serialize it in Base 64. I can use the Base 64 representation of the image in the Image component.
  • I like the representation proposed by APAddressBook. I think its cleaner especially with the growing amount of data fetched for each user. What do you think?

Error: Naming collision detected

Packager gives this error:

 Error: Naming collision detected: 
/Users/wiremaze/wm/dev/WMMyCityApp2/node_modules/react-native/Libraries/vendor/react/platformImplementations/universal/worker/UniversalWorkerNodeHandle.js 
collides with 
/Users/wiremaze/wm/dev/WMMyCityApp2/node_modules/react-native-contacts/test/node_modules/react-native/Libraries/vendor/react/platformImplementations/universal/worker/UniversalWorkerNodeHandle.js

I had to remove the react-native-contacts/test folder, as a number of files colides.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.