Checkpoint commit. 80% IQAIR Module done.

This commit is contained in:
Harley Catubag 2022-06-28 17:26:47 +08:00
parent 449a381540
commit 5defcd2bb1
18 changed files with 224 additions and 81 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -5,7 +5,6 @@ export class index extends Component {
render() { render() {
return ( return (
<View> <View>
<Text>index</Text>
</View> </View>
) )
} }

View File

@ -10,6 +10,8 @@ import {
returnIcon, returnIcon,
returnStatus returnStatus
} from '../../../utils/IQAIRhelper'; } from '../../../utils/IQAIRhelper';
import { useNavigation } from '@react-navigation/native';
import CustomHeader from '../../../components/header.js';
import CustomSafeArea from '../../../components/safeArea.component'; import CustomSafeArea from '../../../components/safeArea.component';
import Elements from '../../../components/elements.js'; import Elements from '../../../components/elements.js';
import Theme from '../../../components/theme.style.js'; import Theme from '../../../components/theme.style.js';
@ -54,6 +56,8 @@ const status = [
] ]
const Guide = () => { const Guide = () => {
const navigation = useNavigation();
const renderItem = ({item, index}) => { const renderItem = ({item, index}) => {
return ( return (
<Elements.shadowView> <Elements.shadowView>
@ -72,6 +76,8 @@ const Guide = () => {
return ( return (
<CustomSafeArea> <CustomSafeArea>
<CustomHeader back={true} onBackPress={() => navigation.goBack()} title="IQAIR Guide" menu={false} navigation={navigation} />
<FlatList <FlatList
data={status} data={status}
renderItem={renderItem} renderItem={renderItem}

View File

@ -4,13 +4,17 @@ import {
StyleSheet, StyleSheet,
AppState AppState
} from 'react-native'; } from 'react-native';
import { useNavigation } from '@react-navigation/native';
import IQAIRDetails from './IQAIRDetails'; import IQAIRDetails from './IQAIRDetails';
import Map from './Map'; import CustomHeader from '../../../../components/header.js';
import RNLocation from 'react-native-location'; import RNLocation from 'react-native-location';
import REQUEST from '../../../../components/api'; import REQUEST from '../../../../components/api';
import DB from '../../../../components/storage'; import DB from '../../../../components/storage';
import Map from './Map';
const MapContainer = () => { const MapContainer = () => {
const navigation = useNavigation();
const [permissionLocation, setPermissionLocation] = useState(false); const [permissionLocation, setPermissionLocation] = useState(false);
const [selected, setSelected] = useState(undefined); const [selected, setSelected] = useState(undefined);
const [stations, setStations] = useState([]); const [stations, setStations] = useState([]);
@ -100,6 +104,7 @@ const MapContainer = () => {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<CustomHeader back={true} onBackPress={() => navigation.goBack()} title="IQAIR Location" menu={false} navigation={navigation} />
<Map <Map
region={region} region={region}
getRef={getRef} getRef={getRef}

View File

@ -3,6 +3,7 @@ import { createStackNavigator } from '@react-navigation/stack';
import Lists from './list'; import Lists from './list';
import Search from './search'; import Search from './search';
import Details from '../details';
const Stack = createStackNavigator(); const Stack = createStackNavigator();
@ -15,6 +16,7 @@ const index = () => {
<Stack.Navigator initialRouteName="List" > <Stack.Navigator initialRouteName="List" >
<Stack.Screen name="List" key="List" component={Lists} options={navOptions} /> <Stack.Screen name="List" key="List" component={Lists} options={navOptions} />
<Stack.Screen name="Search" key="Search" component={Search} options={navOptions} /> <Stack.Screen name="Search" key="Search" component={Search} options={navOptions} />
<Stack.Screen name="Details" key="Details" component={Details} options={navOptions} />
</Stack.Navigator> </Stack.Navigator>
) )
} }

View File

@ -0,0 +1,44 @@
import React from 'react'
import {
View,
Text,
StyleSheet,
Image
} from 'react-native'
import { useSelector } from 'react-redux';
import Theme from '../../../../components/theme.style.js';
const Empty = () => {
const app_theme = useSelector(state => state.appThemeReducer.theme);
return (
<View style={styles.container}>
<View style={styles.emptyContainer}>
<Image style={styles.emptyImage} source={require("../../../../assets/iqair-empty-stations.png")}/>
<Text style={styles.emptyText(app_theme)}>No Station Yet</Text>
</View>
</View>
)
}
export default Empty
const styles = StyleSheet.create({
container: {
flex: 1,
},
emptyContainer: {
paddingHorizontal: 30,
alignItems: 'center'
},
emptyImage: {
width: '100%',
resizeMode: 'contain'
},
emptyText: (theme) => {
return {
color: theme?.theme.dark ? theme.theme.colors.text : Theme.colors.searchGray,
marginTop: -(Theme.screen.w * .15)
}
}
})

View File

@ -6,12 +6,14 @@ import {
View View
} from 'react-native' } from 'react-native'
import Theme from '../../../../components/theme.style.js'; import Theme from '../../../../components/theme.style.js';
import Empty from './Empty.js';
import ListItem from './ListItem.js'; import ListItem from './ListItem.js';
const List = (props) => { const List = (props) => {
const renderItem = (value, data) => { const renderItem = (value, data) => {
return <ListItem return <ListItem
init={props.init}
value={value} value={value}
data={data} data={data}
/> />
@ -23,6 +25,8 @@ const List = (props) => {
<FlatList <FlatList
data={props.data} data={props.data}
renderItem={(item) => renderItem(item, props.data)} renderItem={(item) => renderItem(item, props.data)}
contentContainerStyle={props.data?.length === 0 && { flex: 1 }}
ListEmptyComponent={Empty}
/> />
</View> </View>
) )

View File

@ -12,12 +12,24 @@ import {
returnIcon, returnIcon,
returnStatusId returnStatusId
} from '../../../../utils/IQAIRhelper'; } from '../../../../utils/IQAIRhelper';
import {
useDispatch,
useSelector
} from 'react-redux';
import { useNavigation } from '@react-navigation/native';
import { openModal } from '../../../../redux/actions/AlertActions';
import DB from '../../../../components/storage';
import API from '../../../../components/api/iqair'; import API from '../../../../components/api/iqair';
import Theme from '../../../../components/theme.style.js'; import Theme from '../../../../components/theme.style.js';
import Elements from '../../../../components/elements.js'; import Elements from '../../../../components/elements.js';
import Icon from '../../../../components/icons.js'; import Icon from '../../../../components/icons.js';
const ListItem = (props) => { const ListItem = (props) => {
const dispatch = useDispatch();
const navigation = useNavigation();
const app_theme = useSelector(state => state.appThemeReducer.theme);
const {value, data} = props; const {value, data} = props;
const {item, index} = value; const {item, index} = value;
@ -26,7 +38,7 @@ const ListItem = (props) => {
const [ID, setID] = useState(0); const [ID, setID] = useState(0);
useEffect(() => { useEffect(() => {
init(); // init();
}, []); }, []);
const init = () => { const init = () => {
@ -51,16 +63,48 @@ const ListItem = (props) => {
}, 1000) }, 1000)
} }
const onDelete = () => {
dispatch(openModal({
open: true,
title: "Warning",
body: "Are you sure you want to delete this staion?",
yesCB: deleteStation,
theme: app_theme
}))
}
const deleteStation = async () => {
const stations = await DB.get('iqair');
if(stations) {
const newArray = [...JSON.parse(stations)];
const parsedArray = newArray.filter(station => station.station_uuid !== item.station_uuid);
await DB.set('iqair', JSON.stringify(parsedArray), () => {
props.init();
dispatch(openModal({
open: true,
title: "Success",
body: "Saved station is deleted",
yesCB: deleteStation,
theme: app_theme
}))
}, () => {});
}
}
const onPressDetails = () => {
navigation.navigate("Details")
}
return ( return (
<Elements.shadowView> <Elements.shadowView>
<View style={styles.renderItem(index, data)}> <TouchableOpacity onPress={onPressDetails} style={styles.renderItem(index, data, app_theme)}>
<View style={styles.firstRow}> <View style={styles.firstRow}>
<Icon.Ionicons name="location" size={25} color={Theme.colors.primary} /> <Icon.Ionicons name="location" size={25} color={Theme.colors.primary} />
<View style={styles.infoContainer}> <View style={styles.infoContainer}>
<Text style={styles.nameText}>{item.name}</Text> <Text style={[styles.nameText, styles.darkColor(app_theme)]}>{item.name}</Text>
<Text style={styles.addressText}>{item.address}</Text> <Text style={[styles.addressText, styles.darkColor(app_theme)]}>{item.address}</Text>
</View> </View>
<TouchableOpacity> <TouchableOpacity onPress={onDelete}>
<Icon.Ionicons name="trash" size={22} color={Theme.colors.primary} /> <Icon.Ionicons name="trash" size={22} color={Theme.colors.primary} />
</TouchableOpacity> </TouchableOpacity>
</View> </View>
@ -77,11 +121,11 @@ const ListItem = (props) => {
</Elements.shadowView> </Elements.shadowView>
</View> </View>
<View style={styles.airlevelContainer(ID)}> <View style={styles.airlevelContainer(ID)}>
<Text style={styles.airlevelTitle}>{IQAir?.pollution.aqius} *</Text> <Text style={[styles.airlevelTitle, styles.darkColor(app_theme)]}>{IQAir?.pollution.aqius} *</Text>
<Text style={styles.airlevelIndicator}>US AQI</Text> <Text style={[styles.airlevelIndicator, styles.darkColor(app_theme)]}>US AQI</Text>
</View> </View>
<View style={styles.statusContainer(ID)}> <View style={styles.statusContainer(ID)}>
<Text style={styles.statusText} numberOfLines={2} adjustsFontSizeToFit >{returnStatus(ID).title}</Text> <Text style={[styles.statusText, styles.darkColor(app_theme)]} numberOfLines={2} adjustsFontSizeToFit >{returnStatus(ID).title}</Text>
</View> </View>
</> </>
} }
@ -95,21 +139,21 @@ const ListItem = (props) => {
<> <>
<View style={styles.water}> <View style={styles.water}>
<Image style={styles.waterIcon} source={require("../../../../assets/iqairwater.png")}/> <Image style={styles.waterIcon} source={require("../../../../assets/iqairwater.png")}/>
<Text style={styles.infoText}>{IQAir?.weather.hu}%</Text> <Text style={[styles.infoText, styles.darkColor(app_theme)]}>{IQAir?.weather.hu}%</Text>
</View> </View>
<View style={styles.wind}> <View style={styles.wind}>
<Image style={styles.airIcon} source={require("../../../../assets/iqairwind.png")}/> <Image style={styles.airIcon} source={require("../../../../assets/iqairwind.png")}/>
<Text style={styles.infoText}>{(IQAir?.weather.ws * 3.6).toFixed(2)} km/h</Text> <Text style={[styles.infoText, styles.darkColor(app_theme)]}>{(IQAir?.weather.ws * 3.6).toFixed(2)} km/h</Text>
</View> </View>
<View style={styles.cloud}> <View style={styles.cloud}>
<Image style={styles.cloudIcon} source={require("../../../../assets/iqaircloud.png")}/> <Image style={styles.cloudIcon} source={require("../../../../assets/iqaircloud.png")}/>
<Text style={styles.infoText}>{IQAir?.weather.tp}°</Text> <Text style={[styles.infoText, styles.darkColor(app_theme)]}>{IQAir?.weather.tp}°</Text>
</View> </View>
</> </>
} }
</View> </View>
</View> </TouchableOpacity>
</Elements.shadowView> </Elements.shadowView>
) )
@ -118,9 +162,9 @@ const ListItem = (props) => {
export default ListItem export default ListItem
const styles = StyleSheet.create({ const styles = StyleSheet.create({
renderItem: (index, data) => { renderItem: (index, data, appTheme) => {
return { return {
backgroundColor: 'white', backgroundColor: appTheme?.theme.dark ? appTheme?.theme.colors.border : Theme.colors.white,
borderRadius: 5, borderRadius: 5,
marginHorizontal: 18, marginHorizontal: 18,
paddingHorizontal: 15, paddingHorizontal: 15,
@ -131,7 +175,7 @@ const styles = StyleSheet.create({
}, },
firstRow: { firstRow: {
flexDirection: 'row', flexDirection: 'row',
flex: 1 height: 50,
}, },
infoContainer: { infoContainer: {
flex: 1, flex: 1,
@ -149,18 +193,18 @@ const styles = StyleSheet.create({
secondRow: { secondRow: {
flexDirection: 'row', flexDirection: 'row',
height: 70, height: 70,
flex: 1,
marginTop: 10
}, },
iconContainer: { iconContainer: {
flex: .25, flex: .25,
backgroundColor: Theme.colors.whitesmoke, backgroundColor: Theme.colors.whitesmoke,
alignItems: 'center', alignItems: 'center',
justifyContent: 'center' justifyContent: 'center',
borderTopLeftRadius: 5,
borderBottomLeftRadius: 5
}, },
iconShadow: { iconShadow: {
alignItems: 'center', alignItems: 'center',
justifyContent: 'center' justifyContent: 'center',
}, },
icon: { icon: {
height: '75%', height: '75%',
@ -201,7 +245,6 @@ const styles = StyleSheet.create({
}, },
thirdRow: { thirdRow: {
flexDirection: 'row', flexDirection: 'row',
flex: 1,
height: 20, height: 20,
alignItems: 'center', alignItems: 'center',
marginTop: 14, marginTop: 14,
@ -254,5 +297,12 @@ const styles = StyleSheet.create({
infoText: { infoText: {
fontSize: 10, fontSize: 10,
color: Theme.colors.searchText color: Theme.colors.searchText
},
darkColor: (appTheme) => {
if(appTheme?.theme.dark) {
return {
color: Theme.colors.white
}
}
} }
}) })

View File

@ -1,9 +1,12 @@
import React, { useEffect, useState } from 'react' import React, { useEffect, useState } from 'react'
import { import {
View, View,
StyleSheet StyleSheet,
Text,
TouchableOpacity
} from 'react-native' } from 'react-native'
import { useNavigation } from '@react-navigation/native'; import { useNavigation } from '@react-navigation/native';
import Theme from '../../../../components/theme.style.js';
import List from './List.js'; import List from './List.js';
import Search from '../search/Search.js'; import Search from '../search/Search.js';
import SearchResult from '../search/SearchResult'; import SearchResult from '../search/SearchResult';
@ -51,7 +54,11 @@ const Lists = (props) => {
<Search onPress={onPress} /> <Search onPress={onPress} />
{ result.length === 0 && { result.length === 0 &&
<List data={savedLocations}/> } <List data={savedLocations} init={init} /> }
<TouchableOpacity onPress={onPress} style={styles.addLocationButton}>
<Text style={styles.addLocationText}>ADD UNIOIL STATION</Text>
</TouchableOpacity>
</View> </View>
</CustomSafeArea> </CustomSafeArea>
) )
@ -63,5 +70,18 @@ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
paddingTop: 20, paddingTop: 20,
},
addLocationButton: {
backgroundColor: Theme.colors.primary,
width: Theme.screen.w - 80,
alignSelf: 'center',
marginBottom: 20,
alignItems: 'center',
paddingVertical: 10,
borderRadius: 5
},
addLocationText: {
color: Theme.colors.white,
fontSize: 15
} }
}) })

View File

@ -54,20 +54,21 @@ const Search = (props) => {
const onPressSearch = () => { const onPressSearch = () => {
if(cityDropDown.length !== 0) { if(cityDropDown.length !== 0) {
setSearchValue("");
setCityDropDown([]); setCityDropDown([]);
} else { } else {
search(); search();
} }
} }
const search = async () => { const search = async (item) => {
setLoading(true); setLoading(true);
let SESSION = await DB.session() let SESSION = await DB.session()
REQUEST("gas_stations_city", "get", { REQUEST("gas_stations_city", "get", {
Authorization: SESSION.token Authorization: SESSION.token
}, { }, {
noID: true, noID: true,
value: selectedCity.city_uuid value: item ? item.city_uuid : selectedCity.city_uuid
}, {}, (res) => { }, {}, (res) => {
if(res.data.length > 0){ if(res.data.length > 0){
setSearchValue(""); setSearchValue("");
@ -85,11 +86,12 @@ const Search = (props) => {
setSearchValue(item.name); setSearchValue(item.name);
setSelectedCity(item); setSelectedCity(item);
setCityDropDown([]); setCityDropDown([]);
search(item);
} }
return ( return (
<TouchableOpacity onPress={onPress} style={[styles.searchItemButton]}> <TouchableOpacity onPress={onPress} style={styles.searchItemButton}>
<Text style={styles.searchItemText}>{item.name}</Text> <Text style={styles.searchItemText(app_theme)}>{item.name}</Text>
</TouchableOpacity> </TouchableOpacity>
) )
} }
@ -137,7 +139,7 @@ const Search = (props) => {
{ {
cityDropDown.length > 0 && cityDropDown.length > 0 &&
<View style={styles.dropDown}> <View style={styles.dropDown(app_theme)}>
<FlatList <FlatList
data={cityDropDown} data={cityDropDown}
renderItem={renderItem} renderItem={renderItem}
@ -171,22 +173,24 @@ const styles = StyleSheet.create({
return { return {
flex: 1, flex: 1,
fontSize: 15, fontSize: 15,
color: apptheme.theme.dark ? 'white' : 'black' color: apptheme.theme.dark ? Theme.colors.white : Theme.colors.black
} }
}, },
dropDown: { dropDown: (apptheme) => {
return {
position: 'absolute', position: 'absolute',
height: 400, height: 400,
left: 0, left: 0,
right: 0, right: 0,
bottom: -405, bottom: -405,
backgroundColor: 'white', backgroundColor: apptheme?.theme.dark ? apptheme?.theme.colors.border : Theme.colors.white,
shadowColor: '#000', shadowColor: '#000',
shadowOffset: { width: 0, height: .8}, shadowOffset: { width: 0, height: .8},
shadowOpacity: .4, shadowOpacity: .4,
shadowRadius: 1, shadowRadius: 1,
elevation: 3, elevation: 3,
paddingHorizontal: 5, paddingHorizontal: 5
}
}, },
searchItemButton: { searchItemButton: {
paddingVertical: 20, paddingVertical: 20,
@ -194,8 +198,10 @@ const styles = StyleSheet.create({
borderBottomWidth: 1, borderBottomWidth: 1,
borderColor: Theme.colors.searchGray borderColor: Theme.colors.searchGray
}, },
searchItemText: { searchItemText: (appTheme) => {
color: Theme.colors.darkerGray return {
color: appTheme?.theme.dark ? appTheme?.theme.colors.text : Theme.colors.darkerGray
}
}, },
buttonText: { buttonText: {
flex: 1, flex: 1,

View File

@ -6,11 +6,13 @@ import {
Text, Text,
TouchableOpacity TouchableOpacity
} from 'react-native'; } from 'react-native';
import { useSelector } from 'react-redux';
import Icon from '../../../../components/icons.js'; import Icon from '../../../../components/icons.js';
import Theme from '../../../../components/theme.style.js'; import Theme from '../../../../components/theme.style.js';
import DB from '../../../../components/storage'; import DB from '../../../../components/storage';
const SearchResult = (props) => { const SearchResult = (props) => {
const app_theme = useSelector(state => state.appThemeReducer.theme);
const [savedLocations, setSavedLocations] = useState([]); const [savedLocations, setSavedLocations] = useState([]);
useEffect(() => { useEffect(() => {
@ -57,11 +59,11 @@ const SearchResult = (props) => {
} }
return( return(
<View style={styles.item}> <View style={styles.item(app_theme)}>
<Icon.Ionicons name="location" size={20} color={Theme.colors.primary} /> <Icon.Ionicons name="location" size={20} color={Theme.colors.primary} />
<View style={styles.itemInfo}> <View style={styles.itemInfo}>
<Text style={styles.itemName} numberOfLines={1} adjustsFontSizeToFit>{value.name}</Text> <Text style={styles.itemName(app_theme)} numberOfLines={1} adjustsFontSizeToFit>{value.name}</Text>
<Text style={styles.itemsAddress}>{value.address}</Text> <Text style={styles.itemsAddress(app_theme)}>{value.address}</Text>
</View> </View>
<View style={styles.addLocationContainer}> <View style={styles.addLocationContainer}>
{renderAddButton()} {renderAddButton()}
@ -94,9 +96,10 @@ const styles = StyleSheet.create({
addLocationContainer: { addLocationContainer: {
justifyContent: 'center', justifyContent: 'center',
}, },
item: { item: (appTheme) => {
return {
marginHorizontal: 18, marginHorizontal: 18,
backgroundColor: "white", backgroundColor: appTheme?.theme.dark ? appTheme?.theme.colors.border : Theme.colors.white,
paddingVertical: 10, paddingVertical: 10,
paddingHorizontal: 17, paddingHorizontal: 17,
shadowColor: '#000', shadowColor: '#000',
@ -106,23 +109,28 @@ const styles = StyleSheet.create({
shadowRadius: 3, shadowRadius: 3,
elevation: 3, elevation: 3,
flexDirection: 'row' flexDirection: 'row'
}
}, },
itemInfo: { itemInfo: {
marginLeft: 10, marginLeft: 10,
paddingRight: 10, paddingRight: 10,
flex: 1 flex: 1
}, },
itemName: { itemName: (appTheme) => {
return {
fontSize: 14, fontSize: 14,
color: Theme.colors.searchText color: appTheme?.theme.dark ? Theme.colors.white : Theme.colors.searchText
}
}, },
itemsAddress: { itemsAddress: (appTheme) => {
return {
fontSize: 9, fontSize: 9,
color: Theme.colors.searchText color: appTheme?.theme.dark ? Theme.colors.white : Theme.colors.searchText
}
}, },
scrollView: { scrollView: {
marginVertical: 20, marginVertical: 20,
flex: 1 flex: 1,
} }
}) })

View File

@ -277,11 +277,6 @@ class Home extends React.PureComponent {
this.displayBanner = false this.displayBanner = false
}) })
} }
// let timeout = setTimeout(() => {
// this.getNotifications()
// clearTimeout(timeout)
// }, 3000);
} }
getNotifications = async () => { getNotifications = async () => {

View File

@ -38,11 +38,13 @@ const Tracker = (navigation) => {
tracks.push(data) tracks.push(data)
await DB.set("tracker", JSON.stringify(tracks), function(){ await DB.set("tracker", JSON.stringify(tracks), function(){
const taskToShow = `Fuel Efficiency tracker added`
navigation.route.params?.reload(); navigation.route.params?.reload();
navigation.openModal({ navigation.openModal({
open: true, open: true,
title: "Tracker", title: "Tracker",
body: "Fuel Efficiency tracker ${task}", body: taskToShow,
yesCB: () => navigation.navigation.goBack(), yesCB: () => navigation.navigation.goBack(),
yesButtonOnly: true, yesButtonOnly: true,
theme: navigation.app_theme theme: navigation.app_theme

View File

@ -71,11 +71,13 @@ const Tracker = (navigation) => {
} }
const onDone = (task) => { const onDone = (task) => {
const taskToShow = `Fuel Efficiency tracker ${task}`
navigation.route.params?.reload(); navigation.route.params?.reload();
navigation.openModal({ navigation.openModal({
open: true, open: true,
title: "Tracker", title: "Tracker",
body: "Fuel Efficiency tracker ${task}", body: taskToShow,
yesCB: () => navigation.navigation.goBack(), yesCB: () => navigation.navigation.goBack(),
yesButtonOnly: true, yesButtonOnly: true,
theme: navigation.app_theme theme: navigation.app_theme

View File

@ -1063,7 +1063,7 @@
CODE_SIGN_ENTITLEMENTS = "RNUnioilLoyaltyApp/Unioil Loyalty App.entitlements"; CODE_SIGN_ENTITLEMENTS = "RNUnioilLoyaltyApp/Unioil Loyalty App.entitlements";
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6; CURRENT_PROJECT_VERSION = 0;
DEVELOPMENT_TEAM = J29MB7XX75; DEVELOPMENT_TEAM = J29MB7XX75;
ENABLE_BITCODE = NO; ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
@ -1211,7 +1211,7 @@
"\"${PODS_ROOT}/CocoaLibEvent/lib\"", "\"${PODS_ROOT}/CocoaLibEvent/lib\"",
"\"${PODS_ROOT}/OpenSSL-Universal/ios/lib\"", "\"${PODS_ROOT}/OpenSSL-Universal/ios/lib\"",
); );
MARKETING_VERSION = 1.6.3; MARKETING_VERSION = 1.6.5;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = ( OTHER_LDFLAGS = (
"$(inherited)", "$(inherited)",
@ -1238,7 +1238,7 @@
CODE_SIGN_ENTITLEMENTS = "RNUnioilLoyaltyApp/Unioil Loyalty App.entitlements"; CODE_SIGN_ENTITLEMENTS = "RNUnioilLoyaltyApp/Unioil Loyalty App.entitlements";
CODE_SIGN_IDENTITY = "Apple Development"; CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic; CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 6; CURRENT_PROJECT_VERSION = 0;
DEVELOPMENT_TEAM = J29MB7XX75; DEVELOPMENT_TEAM = J29MB7XX75;
FRAMEWORK_SEARCH_PATHS = ( FRAMEWORK_SEARCH_PATHS = (
"$(inherited)", "$(inherited)",
@ -1309,7 +1309,7 @@
"\"${PODS_ROOT}/CocoaLibEvent/lib\"", "\"${PODS_ROOT}/CocoaLibEvent/lib\"",
"\"${PODS_ROOT}/OpenSSL-Universal/ios/lib\"", "\"${PODS_ROOT}/OpenSSL-Universal/ios/lib\"",
); );
MARKETING_VERSION = 1.6.3; MARKETING_VERSION = 1.6.5;
ONLY_ACTIVE_ARCH = NO; ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = ( OTHER_LDFLAGS = (
"$(inherited)", "$(inherited)",