⚙️App Config

Here we will edit some configurations

Xcode Project Configuration :

  • Open The project using Android Studio or VS.

  • Open lib/Constants/Constants.dart File

in Constants.dart File you can configure the app.

  • Replace API URL :

const String apiURI = "https://YOURDOMAIN/API/saveo.php?url=";
  • Replace AdMob Interstitial Ad ID for iOS and Android :

const String iOSID = 'ca-app-pub-3940256099942544/4411468910';
const String AndroidID = 'ca-app-pub-3940256099942544/1033173712';
  • App configuration :

const Color appColor = Color(0xff484173);
const String appName = "Saveo";
const String appVersion = '1.0.0';
const String webSite = "https://www.google.com";
const String appstoreUrl= "https://www.google.com";
const String playStoreUrl = "https://www.google.com";
const String email = "https://www.google.com";
const String facebookUrl = "https://www.google.com";

Last updated

Was this helpful?