Skip to content

Commit 1f1cec8

Browse files
committed
LFG-187: last fixes
1 parent cca94c2 commit 1f1cec8

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ android {
105105
applicationId "com.lftechnology.leapfroggers"
106106
minSdkVersion 16
107107
targetSdkVersion 27
108-
versionCode 11
108+
versionCode 12
109109
versionName "4.0"
110110
ndk {
111111
abiFilters "armeabi-v7a", "x86"

app/screens/searchContact/searchContact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ import ContactCell from './../contact/contactCell';
6868

6969
_renderTableView = () => {
7070
return (
71-
<View style={Platform.OS === 'android' ? style.listContainer : null}>
71+
<View style={Platform.OS === 'android' ? style.listContainer : style.listContaineriOS}>
7272
<ListView
7373
key={'listView'}
7474
style={ Platform.OS === 'android' ? style.tableAndroid : null }

app/screens/searchContact/styles.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ const style = StyleSheet.create({
9595
},
9696
listContainer: {
9797
height: getHeight() - 70 - 100,
98+
},
99+
listContaineriOS: {
100+
height: getHeight() - 70 - 80,
98101
}
99102
});
100103

ios/Leapfroggers.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
94669E0D1FC559FB00703528 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 94669E0C1FC559FB00703528 /* GoogleService-Info.plist */; };
5656
9473A0D01FE29EF000B26FCE /* GameKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9473A0CF1FE29EF000B26FCE /* GameKit.framework */; };
5757
9473A0D21FE29EFE00B26FCE /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9473A0D11FE29EFE00B26FCE /* StoreKit.framework */; };
58+
94A0CBE81FFE64F80065DBF9 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB61A68108700A75B9A /* Info.plist */; };
5859
ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
5960
E54D39F25735484C8A1209DD /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8ACC65178AB344D2A8E8F052 /* libz.tbd */; };
6061
/* End PBXBuildFile section */
@@ -1284,6 +1285,7 @@
12841285
945149E01FD6B75000D4FD5A /* GoogleSignIn.bundle in Resources */,
12851286
94669E0D1FC559FB00703528 /* GoogleService-Info.plist in Resources */,
12861287
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
1288+
94A0CBE81FFE64F80065DBF9 /* Info.plist in Resources */,
12871289
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
12881290
);
12891291
runOnlyForDeploymentPostprocessing = 0;

ios/Leapfroggers.xcodeproj/xcshareddata/xcschemes/Leapfroggers.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
</AdditionalOptions>
8282
</TestAction>
8383
<LaunchAction
84-
buildConfiguration = "Release"
84+
buildConfiguration = "Debug"
8585
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
8686
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
8787
language = ""

ios/Leapfroggers/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>1005</string>
47+
<string>1008</string>
4848
<key>LSRequiresIPhoneOS</key>
4949
<true/>
5050
<key>NSAppTransportSecurity</key>
@@ -66,7 +66,7 @@
6666
</dict>
6767
</dict>
6868
<key>NSContactsUsageDescription</key>
69-
<string></string>
69+
<string>This app requires contacts access to work.</string>
7070
<key>NSLocationWhenInUseUsageDescription</key>
7171
<string></string>
7272
<key>UILaunchStoryboardName</key>

0 commit comments

Comments
 (0)