2024-05-28 21:25:51 +00:00
|
|
|
import 'package:mnemo_cards/flags.dart';
|
2024-05-22 20:48:44 +00:00
|
|
|
|
|
|
|
|
import '../../main.dart';
|
|
|
|
|
|
|
|
|
|
mixin Api {
|
|
|
|
|
String get path =>
|
2024-05-28 21:25:51 +00:00
|
|
|
!ADMIN_BUILD || (globalSharedPreferences.getBool('env') ?? true)
|
2024-05-22 20:48:44 +00:00
|
|
|
//prod
|
|
|
|
|
? 'https://89.19.210.178:8080' //FirebaseRepository.appConfig.path
|
|
|
|
|
: androidDeviceInfo!.isPhysicalDevice
|
|
|
|
|
//device to localhost
|
|
|
|
|
? 'https://192.168.31.158:8080'
|
|
|
|
|
: //emulator to localhost
|
|
|
|
|
'https://10.0.2.2:8080';
|
|
|
|
|
}
|