This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/***************************************************************************************** | |
* Accesses a variable inside of .env file and cache for later usage; throws an error if its not found. | |
* | |
* caching the values to improve the performance. | |
* | |
* Usage: | |
* | |
* import accessEnv from "helpers/accessEnv"; | |
* | |
* const redirectionHost = accessEnv("MAJOR_VERSION", 1); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
... | |
<key>CFBundleShortVersionString</key> | |
<string>$(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_VERSION)</string> | |
<key>CFBundleVersion</key> | |
<string>$(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_VERSION)</string> | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Make a copy of .env.dist | |
echo "Updating version name in .env" | |
echo " - Version Name : $MAJOR_VERSION.$MINOR_VERSION.$PATCH_VERSION-$PRE_RELEASE" | |
cd ${APPCENTER_SOURCE_DIRECTORY} | |
cp .env.dist .env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apply plugin: "com.android.application" | |
apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle" | |
.... | |
android { | |
... | |
defaultConfig { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Application versioning semantic values | |
MAJOR_VERSION=1 | |
MINOR_VERSION=0 | |
PATCH_VERSION=0 | |
# For Release Flavors (Ex: alpha, beta). Empty the assigned value for a stable release. | |
PRE_RELEASE=ALPHA0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
////////////////////////////////////////////////////////////// Array utilities | |
type Length<T extends any[]> = T["length"]; | |
type Head<T extends any[]> = T[0]; | |
type Tail<T extends any[]> = ((...xs: T) => any) extends ((_x: any, ...xs: infer R) => any) ? R : []; | |
type AllTrue<Ts extends any[]> = { | |
0: true, | |
1: false, | |
2: AllTrue<Tail<Ts>> | |
}[Length<Ts> extends 0 ? 0 : Head<Ts> extends false ? 1 : 2] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
presets: ["module:metro-react-native-babel-preset"], | |
plugins: [ | |
[ | |
"module-resolver", | |
{ | |
root: ["./src"], | |
alias: { | |
navigation: "./src/components/navigation", | |
themes: "./src/assets/theme", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Loading spinner component | |
*/ | |
import React, { FC } from "react"; | |
import { ActivityIndicator, View } from "react-native"; | |
import useStyles from "./Indicators.style"; | |
import { useThemeContext } from "themes"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { StyleSheet } from "react-native"; | |
import { Theme } from "themes"; | |
const styles = (theme: Theme) => | |
StyleSheet.create({ | |
spinnerContainer: { | |
flex: 1, | |
alignItems: "center", | |
justifyContent: "center", | |
color: theme.colors?.primary, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "react-native-gesture-handler"; | |
import React, { FC } from "react"; | |
import { ReloadInstructions } from "react-native/Libraries/NewAppScreen"; | |
import { ThemeProvider } from "react-native-elements"; | |
import theme from "themes"; | |
const App: FC = () => { | |
return ( | |
<ThemeProvider theme={theme}> |
NewerOlder