File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:1.3.1 '
8
+ classpath ' com.android.tools.build:gradle:2.2.2 '
9
9
10
10
// NOTE: Do not place your application dependencies here; they belong
11
11
// in the individual module build.gradle files
Original file line number Diff line number Diff line change
1
+ # Wed Nov 02 18:54:07 PHT 2016
1
2
distributionBase =GRADLE_USER_HOME
2
3
distributionPath =wrapper/dists
3
4
zipStoreBase =GRADLE_USER_HOME
4
5
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " movieapp" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"private" : true ,
5
5
"scripts" : {
6
6
"start" : " node node_modules/react-native/local-cli/cli.js start" ,
Original file line number Diff line number Diff line change 1
1
/* eslint-disable global-require */
2
+ /* eslint-disable no-undef */
2
3
import { createStore , applyMiddleware } from 'redux' ;
3
4
import rootReducer from '../reducers/rootReducer' ;
4
5
import thunk from 'redux-thunk' ;
5
6
6
7
let middleware = [ thunk ] ;
7
8
8
- if ( process . env . NODE_ENV !== 'production' ) {
9
+ if ( __DEV__ ) {
9
10
const reduxImmutableStateInvariant = require ( 'redux-immutable-state-invariant' ) ( ) ;
10
11
const createLogger = require ( 'redux-logger' ) ;
11
12
You can’t perform that action at this time.
0 commit comments