Skip to content

Commit

Permalink
LFG-187: last fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kusalshrestha committed Jan 5, 2018
1 parent cca94c2 commit 1f1cec8
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ android {
applicationId "com.lftechnology.leapfroggers"
minSdkVersion 16
targetSdkVersion 27
versionCode 11
versionCode 12
versionName "4.0"
ndk {
abiFilters "armeabi-v7a", "x86"
Expand Down
2 changes: 1 addition & 1 deletion app/screens/searchContact/searchContact.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ import ContactCell from './../contact/contactCell';

_renderTableView = () => {
return (
<View style={Platform.OS === 'android' ? style.listContainer : null}>
<View style={Platform.OS === 'android' ? style.listContainer : style.listContaineriOS}>
<ListView
key={'listView'}
style={ Platform.OS === 'android' ? style.tableAndroid : null }
Expand Down
3 changes: 3 additions & 0 deletions app/screens/searchContact/styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ const style = StyleSheet.create({
},
listContainer: {
height: getHeight() - 70 - 100,
},
listContaineriOS: {
height: getHeight() - 70 - 80,
}
});

Expand Down
2 changes: 2 additions & 0 deletions ios/Leapfroggers.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
94669E0D1FC559FB00703528 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 94669E0C1FC559FB00703528 /* GoogleService-Info.plist */; };
9473A0D01FE29EF000B26FCE /* GameKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9473A0CF1FE29EF000B26FCE /* GameKit.framework */; };
9473A0D21FE29EFE00B26FCE /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9473A0D11FE29EFE00B26FCE /* StoreKit.framework */; };
94A0CBE81FFE64F80065DBF9 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB61A68108700A75B9A /* Info.plist */; };
ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
E54D39F25735484C8A1209DD /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8ACC65178AB344D2A8E8F052 /* libz.tbd */; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -1284,6 +1285,7 @@
945149E01FD6B75000D4FD5A /* GoogleSignIn.bundle in Resources */,
94669E0D1FC559FB00703528 /* GoogleService-Info.plist in Resources */,
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
94A0CBE81FFE64F80065DBF9 /* Info.plist in Resources */,
13B07FBD1A68108700A75B9A /* LaunchScreen.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Release"
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
language = ""
Expand Down
4 changes: 2 additions & 2 deletions ios/Leapfroggers/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>1005</string>
<string>1008</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand All @@ -66,7 +66,7 @@
</dict>
</dict>
<key>NSContactsUsageDescription</key>
<string></string>
<string>This app requires contacts access to work.</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string></string>
<key>UILaunchStoryboardName</key>
Expand Down

0 comments on commit 1f1cec8

Please sign in to comment.