Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
tangimds committed Apr 14, 2021
1 parent 171042b commit 48b9842
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
multiDexEnabled true
versionCode 24
versionName "1.9.3"
versionCode 26
versionName "1.10.1"
}
splits {
abi {
Expand Down
8 changes: 4 additions & 4 deletions ios/monsuivipsy.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -671,12 +671,12 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 24;
CURRENT_PROJECT_VERSION = 26;
DEVELOPMENT_TEAM = 76GBKHVK25;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = monsuivipsy/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.9.3;
MARKETING_VERSION = 1.10.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand All @@ -696,11 +696,11 @@
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 24;
CURRENT_PROJECT_VERSION = 26;
DEVELOPMENT_TEAM = 76GBKHVK25;
INFOPLIST_FILE = monsuivipsy/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 1.9.3;
MARKETING_VERSION = 1.10.1;
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
Expand Down
4 changes: 2 additions & 2 deletions src/navigation/tabs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import {StyleSheet, SafeAreaView} from 'react-native';
import {StyleSheet, SafeAreaView, Platform} from 'react-native';
import {createMaterialTopTabNavigator} from '@react-navigation/material-top-tabs';
import Diary from '../diary/diary';
import Calendar from '../calendar/calendar';
Expand Down Expand Up @@ -90,7 +90,7 @@ const styles = StyleSheet.create({
fontSize: 16,
color: 'white',
textAlign: 'center',
paddingVertical: 17,
paddingVertical: Platform.OS === 'android' ? 5 : 17,
fontWeight: '700',
},
});
Expand Down

0 comments on commit 48b9842

Please sign in to comment.