react-native/local-cli/generator-ios/templates
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
..
app replace old ATS key name to new one. 2016-10-09 12:13:37 -07:00
tests increased timeout for ios e2e test and fixed --js e2e after ios e2e 2016-04-14 04:30:00 -07:00
xcodeproj Included NativeAnimation module on iOS in the starter project 2016-11-10 00:58:33 -08:00