diff --git a/android/app/build.gradle b/android/app/build.gradle
index c371fe578..bce51841c 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -143,7 +143,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode versionMajor * 10000 + versionMinor * 100 + versionPatch
- versionName "3.0.17"
+ versionName "3.0.18"
resValue "string", "build_config_package", "app.esteem.mobile.android"
multiDexEnabled true
// react-native-image-crop-picker
diff --git a/ios/Ecency-tvOS/Info.plist b/ios/Ecency-tvOS/Info.plist
index d1277b534..c6b937801 100644
--- a/ios/Ecency-tvOS/Info.plist
+++ b/ios/Ecency-tvOS/Info.plist
@@ -15,11 +15,11 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 3.0.17
+ 3.0.18
CFBundleSignature
????
CFBundleVersion
- 2796
+ 2797
LSRequiresIPhoneOS
NSAppTransportSecurity
diff --git a/ios/Ecency-tvOSTests/Info.plist b/ios/Ecency-tvOSTests/Info.plist
index 3349a24eb..a500a2b9e 100644
--- a/ios/Ecency-tvOSTests/Info.plist
+++ b/ios/Ecency-tvOSTests/Info.plist
@@ -15,10 +15,10 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 3.0.17
+ 3.0.18
CFBundleSignature
????
CFBundleVersion
- 2796
+ 2797
diff --git a/ios/Ecency.xcodeproj/project.pbxproj b/ios/Ecency.xcodeproj/project.pbxproj
index 770d6f986..8c130ecfd 100644
--- a/ios/Ecency.xcodeproj/project.pbxproj
+++ b/ios/Ecency.xcodeproj/project.pbxproj
@@ -1112,7 +1112,7 @@
CODE_SIGN_IDENTITY = "iPhone Distribution";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
- CURRENT_PROJECT_VERSION = 2796;
+ CURRENT_PROJECT_VERSION = 2797;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 75B6RXTKGT;
HEADER_SEARCH_PATHS = (
@@ -1188,7 +1188,7 @@
CODE_SIGN_ENTITLEMENTS = Ecency/Ecency.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
- CURRENT_PROJECT_VERSION = 2796;
+ CURRENT_PROJECT_VERSION = 2797;
DEAD_CODE_STRIPPING = NO;
DEVELOPMENT_TEAM = 75B6RXTKGT;
HEADER_SEARCH_PATHS = (
diff --git a/ios/Ecency/Info.plist b/ios/Ecency/Info.plist
index 1a5140f3b..a0c96b883 100644
--- a/ios/Ecency/Info.plist
+++ b/ios/Ecency/Info.plist
@@ -19,7 +19,7 @@
CFBundlePackageType
APPL
CFBundleShortVersionString
- 3.0.17
+ 3.0.18
CFBundleSignature
????
CFBundleURLTypes
diff --git a/ios/EcencyTests/Info.plist b/ios/EcencyTests/Info.plist
index 5141d5165..89a2fd3e9 100644
--- a/ios/EcencyTests/Info.plist
+++ b/ios/EcencyTests/Info.plist
@@ -15,10 +15,10 @@
CFBundlePackageType
BNDL
CFBundleShortVersionString
- 3.0.17
+ 3.0.18
CFBundleSignature
????
CFBundleVersion
- 2796
+ 2797
diff --git a/ios/eshare/Info.plist b/ios/eshare/Info.plist
index 2691c538b..b4d338b19 100644
--- a/ios/eshare/Info.plist
+++ b/ios/eshare/Info.plist
@@ -17,9 +17,9 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 3.0.17
+ 3.0.18
CFBundleVersion
- 2796
+ 2797
NSExtension
NSExtensionAttributes
diff --git a/package.json b/package.json
index 924168e39..3858e1285 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "ecency",
- "version": "3.0.17",
+ "version": "3.0.18",
"displayName": "Ecency",
"private": true,
"rnpm": {
diff --git a/src/redux/store/store.js b/src/redux/store/store.js
index 4c387f633..b05b44d48 100644
--- a/src/redux/store/store.js
+++ b/src/redux/store/store.js
@@ -22,7 +22,7 @@ const persistedReducer = persistReducer(persistConfig, reducer);
const middleware = [thunk];
if (process.env.NODE_ENV === 'development') {
- // middleware.push(logger);
+ middleware.push(logger);
}
const store = createStore(persistedReducer, applyMiddleware(...middleware));