Skip to content

Commit dcae635

Browse files
author
June Domingo
committed
Merge branch 'release/1.0.1'
2 parents 5cae376 + f41771b commit dcae635

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.3.1'
8+
classpath 'com.android.tools.build:gradle:2.2.2'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Wed Nov 02 18:54:07 PHT 2016
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "movieapp",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"private": true,
55
"scripts": {
66
"start": "node node_modules/react-native/local-cli/cli.js start",

src/store/configureStore.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
/* eslint-disable global-require */
2+
/* eslint-disable no-undef */
23
import { createStore, applyMiddleware } from 'redux';
34
import rootReducer from '../reducers/rootReducer';
45
import thunk from 'redux-thunk';
56

67
let middleware = [thunk];
78

8-
if (process.env.NODE_ENV !== 'production') {
9+
if (__DEV__) {
910
const reduxImmutableStateInvariant = require('redux-immutable-state-invariant')();
1011
const createLogger = require('redux-logger');
1112

0 commit comments

Comments
 (0)