This file contains hidden or 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 from "react"; | |
import PropTypes from "prop-types"; | |
import { bindActionCreators } from "redux"; | |
import { connect } from "react-redux"; | |
import glamorous from "glamorous"; | |
import { Button } from "../../../../common/components"; | |
import { Card, CardText } from "react-toolbox/lib/card"; | |
import { getCurrentUser } from "../../../../redux-modules/current-user"; | |
import { withLoading } from "../../../../redux-modules/loading-overlay"; | |
import PreferencesActions from "../../actions/customers/preferences"; |
This file contains hidden or 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 PropTypes from "prop-types"; | |
import React from "react"; | |
import Switch from "../ThemedSwitch"; | |
import { | |
genericObjectSort, | |
SortProperty, | |
SORT_DIRECTION | |
} from "../../../../common/utils/object-sort"; | |
import styles from "./SwitchList.css"; |
This file contains hidden or 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, { PureComponent } from "react"; | |
import { | |
FlatList, | |
StyleSheet, | |
AppState, | |
Platform, | |
Dimensions, | |
View, | |
Alert | |
} from "react-native"; |
This file contains hidden or 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
// !$*UTF8*$! | |
{ | |
archiveVersion = 1; | |
classes = { | |
}; | |
objectVersion = 46; | |
objects = { | |
/* Begin PBXBuildFile section */ | |
00E356F31AD99517003FC87E /* NFIBEngageTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 00E356F21AD99517003FC87E /* NFIBEngageTests.m */; }; | |
13B07FBC1A68108700A75B9A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.m */; }; |
This file contains hidden or 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 {Alert} from 'react-native'; | |
import logger from 'logger'; | |
import * as types from 'auth/constants'; | |
import * as endpoints from 'endpoints'; | |
import * as cache from 'utils/cache'; | |
import {AUTH_STATUS} from 'enums/authStatus'; | |
import * as requester from 'services/Requester'; | |
import {clearSurveys} from 'surveys-ballots/actions'; | |
import {clearEvents} from 'events/actions'; | |
import * as repsActions from 'representatives/actions'; |
This file contains hidden or 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
{"lastUpload":"2019-10-13T03:18:30.028Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
{ | |
"name": "NFIBEngage", | |
"version": "0.0.1", | |
"lockfileVersion": 1, | |
"requires": true, | |
"dependencies": { | |
"@babel/code-frame": { | |
"version": "7.5.5", | |
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz", | |
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==", |
This file contains hidden or 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
package com.nfib.engage; | |
import android.app.Application; | |
import android.util.Log; | |
import com.facebook.react.PackageList; | |
import com.facebook.hermes.reactexecutor.HermesExecutorFactory; | |
import com.facebook.react.bridge.JavaScriptExecutorFactory; | |
import com.facebook.react.ReactApplication; | |
import com.learnium.RNDeviceInfo.RNDeviceInfo; |
This file contains hidden or 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 node | |
const replace = require("replace-in-file"); | |
const path = require("path"); | |
const argv = require("yargs") | |
.env("APPCENTER") | |
.option("k", { | |
alias: "key" | |
}) | |
.option("p", { | |
alias: "platform" |
This file contains hidden or 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 fs from "fs-extra"; | |
import eachSeries from "async/eachSeries"; | |
import { exec } from "child_process"; | |
import { androidDirectory } from "../../app.json"; | |
import { resolveFromRoot, distDir, createLogger } from "../build"; | |
const logger = createLogger("android"); | |
const APK_PATTERN = /release\.apk$/i; |