Config iOS ads

This commit is contained in:
2025-06-19 11:18:08 +02:00
parent 86577076d4
commit 0713373e40
4 changed files with 44 additions and 9 deletions

View File

@@ -18,15 +18,15 @@ abstract class AppEnviroment {
case Enviroment.dev:
{
//================= Android Dev Urls =================
baseApiUrl = "http://10.0.2.2:8080";
baseFileUrl = "http://10.0.2.2:9000";
baseAiUrl = "http://10.0.2.2:11434";
bannerAdUnitId = 'ca-app-pub-3940256099942544/9214589741';
// baseApiUrl = "http://10.0.2.2:8080";
// baseFileUrl = "http://10.0.2.2:9000";
// baseAiUrl = "http://10.0.2.2:11434";
// bannerAdUnitId = 'ca-app-pub-3940256099942544/9214589741';
//================= Web & iOS Dev Urls =================
// baseApiUrl = "http://localhost:8080";
// baseFileUrl = "http://localhost:9000";
// baseAiUrl = "http://localhost:11434";
// bannerAdUnitId = 'ca-app-pub-3940256099942544/2435281174';
baseApiUrl = "http://localhost:8080";
baseFileUrl = "http://localhost:9000";
baseAiUrl = "http://localhost:11434";
bannerAdUnitId = 'ca-app-pub-3940256099942544/2435281174';
break;
}
case Enviroment.prod:
@@ -36,7 +36,7 @@ abstract class AppEnviroment {
baseAiUrl = "https://ai.mzansi-innovation-hub.co.za";
bannerAdUnitId = Platform.isAndroid
? 'ca-app-pub-4781880856775334/8868663088' // Android
: 'Inset-iOS-Unit-Id'; // iOS
: 'ca-app-pub-4781880856775334/6640324682'; // iOS
//fingerPrintPluginKey = 'h5X7a5j14iUZCobI1ZeX';
break;
}