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 {
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
Original file line number Diff line number Diff line change 1+ # Wed Nov 02 18:54:07 PHT 2016
12distributionBase =GRADLE_USER_HOME
23distributionPath =wrapper/dists
34zipStoreBase =GRADLE_USER_HOME
45zipStorePath =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 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" ,
Original file line number Diff line number Diff line change 11/* eslint-disable global-require */
2+ /* eslint-disable no-undef */
23import { createStore , applyMiddleware } from 'redux' ;
34import rootReducer from '../reducers/rootReducer' ;
45import thunk from 'redux-thunk' ;
56
67let 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
You can’t perform that action at this time.
0 commit comments