flutter-woocommerce-app/LabelStoreMax/lib/labelconfig.dart
2019-11-12 13:39:22 +00:00

48 lines
1.2 KiB
Dart

//
// LabelCore
// Label StoreMAX
//
// Created by Anthony Gordon.
// Copyright © 2019 WooSignal. All rights reserved.
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/*
Developer Notes
SUPPORT EMAIL - support@woosignal.com
VERSION - 1.0
https://woosignal.com
*/
/*<! ------ CONFIG ------!>*/
const app_name = "MyApp";
const app_key = "your app key";
const app_logo_url = "https://woosignal.com/images/120x120_woosignal.png";
const app_terms_url = "https://yourdomain.com/terms";
const app_privacy_url = "https://yourdomain.com/privacy";
/*<! ------ STRIPE (OPTIONAL) ------!>*/
const app_stripe_account = "your StripeAccount key"; // Your StripeAccount key from WooSignal
const app_stripe_live_mode = false; // SET true for live payments
/*<! ------ APP CURRENCY ------!>*/
const app_currency_symbol = "\£";
const app_currency_iso = "gbp";
const app_locales_supported = ['en'];
const paymentMethods = ["Stripe"];
/*<! ------ DEBUGGER ENABLED ------!>*/
const app_debug = true;