allscore_app/lib/config/config.dart

13 lines
606 B
Dart
Raw Normal View History

class Config {
2025-01-18 09:28:24 +00:00
// 테스트 광고 단위 ID
static const String testAdUnitId = 'ca-app-pub-3940256099942544/6300978111';
2025-01-18 09:28:24 +00:00
// 실제 광고 단위 ID
2025-01-20 05:45:55 +00:00
static const String realAdUnitId = 'ca-app-pub-6461991944599918~9492697896';
// 테스트 광고 단위 ID
static const String adUnitId = 'ca-app-pub-6461991944599918~9492697896';
2025-01-22 10:51:36 +00:00
// static const String adUnitId = 'ca-app-pub-3940256099942544/6300978111';
2025-01-18 09:28:24 +00:00
// 서버 주소
static const String baseUrl = 'https://eldsoft.com:8097';
2025-01-20 05:45:55 +00:00
// 이미지 업로드 주소
static const String uploadImageUrl = '$baseUrl/user/update/profile/img';
}