diff --git a/assets/google-services-template.json b/assets/google-services-template.json new file mode 100644 index 000000000..153650764 --- /dev/null +++ b/assets/google-services-template.json @@ -0,0 +1,47 @@ +{ + "project_info": { + "project_number": "", + "firebase_url": "", + "project_id": "", + "storage_bucket": "" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:12345678901:android:1234567890123456", + "android_client_info": { + "package_name": "com.emobility" + } + }, + "oauth_client": [ + { + "client_id": "", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "", + "client_type": 3 + }, + { + "client_id": "", + "client_type": 2, + "ios_info": { + "bundle_id": "com.e-Mobility" + } + } + ] + } + } + } + ], + "configuration_version": "1" +} diff --git a/src/screens/chargers/list/Chargers.tsx b/src/screens/chargers/list/Chargers.tsx index e254be2ea..ae4f868f1 100644 --- a/src/screens/chargers/list/Chargers.tsx +++ b/src/screens/chargers/list/Chargers.tsx @@ -4,12 +4,12 @@ import React from 'react'; import { FlatList, Platform, RefreshControl } from 'react-native'; import { DrawerActions } from 'react-navigation-drawer'; +import I18nManager from '../../../I18n/I18nManager'; import ChargerComponent from '../../../components/charger/ChargerComponent'; import HeaderComponent from '../../../components/header/HeaderComponent'; import ListEmptyTextComponent from '../../../components/list/empty-text/ListEmptyTextComponent'; import ListFooterComponent from '../../../components/list/footer/ListFooterComponent'; import SimpleSearchComponent from '../../../components/search/simple/SimpleSearchComponent'; -import I18nManager from '../../../I18n/I18nManager'; import BaseProps from '../../../types/BaseProps'; import ChargingStation, { ChargePointStatus } from '../../../types/ChargingStation'; import { DataResult } from '../../../types/DataResult';