Sreejith R 8965f11769 Included NativeAnimation module on iOS in the starter project
Summary:
Fixes #10638.

Added NativeAnimation library to the starter project iOS generator. Passing `useNativeDriver: true` to `Animated` config will enable the app to tap into the native code for animations.

**Test plan**

Init a RN project and animate an element. Enable native driver as follows:

```
Animated.timing(
      this.state.value,
      {
        toValue: 300,  // some value
        useNativeDriver: true
      }
    ).start();
```
Earlier, this used to crash.
Closes https://github.com/facebook/react-native/pull/10783

Differential Revision: D4159386

Pulled By: mkonicek

fbshipit-source-id: 993481a31b4446eab24ef4ee35ae1941d7a7aae9
2016-11-10 00:58:33 -08:00
..
2016-10-20 00:14:03 -07:00
2015-11-12 07:05:01 -08:00
2016-11-08 12:28:47 -08:00
2016-07-30 09:13:46 -07:00
2016-08-22 08:58:37 -07:00
2016-07-30 09:13:46 -07:00
2016-07-30 09:13:46 -07:00
2016-10-24 13:43:36 -07:00
2016-11-09 09:31:12 -08:00
2016-07-30 09:13:46 -07:00
2016-09-23 08:13:46 -07:00
2015-10-28 21:36:07 -04:00