allscore_app/lib/config/config.dart
2025-01-22 19:51:36 +09:00

13 lines
606 B
Dart

class Config {
// 테스트 광고 단위 ID
static const String testAdUnitId = 'ca-app-pub-3940256099942544/6300978111';
// 실제 광고 단위 ID
static const String realAdUnitId = 'ca-app-pub-6461991944599918~9492697896';
// 테스트 광고 단위 ID
static const String adUnitId = 'ca-app-pub-6461991944599918~9492697896';
// static const String adUnitId = 'ca-app-pub-3940256099942544/6300978111';
// 서버 주소
static const String baseUrl = 'https://eldsoft.com:8097';
// 이미지 업로드 주소
static const String uploadImageUrl = '$baseUrl/user/update/profile/img';
}