allscore_app/lib/config/config.dart

121 lines
6.5 KiB
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-02-07 16:36:36 +00:00
// 실제 광고 단위 ID - android
2025-02-11 08:37:14 +00:00
// static const String realAdUnitId = 'ca-app-pub-6461991944599918/5107596297';
2025-02-07 16:36:36 +00:00
// 실제 광고 단위 ID - ios
2025-02-11 08:37:14 +00:00
// static const String realAdUnitId = 'ca-app-pub-6461991944599918/9704216771';
2025-01-20 05:45:55 +00:00
// 테스트 광고 단위 ID
static const String adUnitId = 'ca-app-pub-3940256099942544/6300978111'; // 테스트
2025-02-11 08:37:14 +00:00
// static const String adUnitId = 'ca-app-pub-6461991944599918/5107596297'; // android
// static const String adUnitId = 'ca-app-pub-6461991944599918/9704216771'; // ios
2025-01-18 09:28:24 +00:00
// 서버 주소
static const String baseUrl = 'https://d2zcnlqji5t7mh.cloudfront.net';
2025-01-20 05:45:55 +00:00
// 이미지 업로드 주소
static const String uploadImageUrl = '$baseUrl/user/update/profile/img';
// 이용약관
static const String termsOfService = '''
AllScore (hereinafter referred to as the "Company") places great importance on users personal information and complies with the Personal Information Protection Act and other relevant laws. The Company provides the following information regarding the collection and use of personal information. Please read this policy carefully before providing your consent.
1. Personal Information We Collect
Required Items: ID, Password, Nickname (not your real name), Email Address
Optional Items: Affiliation, Self-introduction
2. Purpose of Collecting and Using Personal Information
- Member Management
- Identifying and authenticating members
- Preventing fraudulent or unauthorized use
- Handling inquiries related to service use
- Service Provision
- Basic services such as creating and joining game rooms
- Additional services such as providing statistics and rankings
- Customer Support and Announcements
- Delivering important notices related to the service
- Handling user inquiries and complaints
3. Retention and Use Period of Personal Information
- Upon Membership Withdrawal: All personal information collected is destroyed immediately upon withdrawal.
- Retention in Accordance with Relevant Laws: If certain information must be retained under laws such as the Act on the Consumer Protection in Electronic Commerce, etc., it will be kept for the period specified by those laws.
- Records of contracts or subscription withdrawals: 5 years
- Records of payment and supply of goods: 5 years
- Records of customer complaints or dispute resolution: 3 years
4. Procedure and Method for Destroying Personal Information
- Destruction Procedure
- The information is destroyed without delay after a member requests withdrawal or once the purpose of collection and use has been fulfilled.
- Destruction Method
- Electronic Files: Permanently deleted using methods that prevent any recovery or restoration
- Paper Documents: Shredded or incinerated
5. User Rights and How to Exercise Them
- Users may request to view, correct, delete, or suspend the processing of their personal information at any time.
- If you wish to withdraw your membership, you may do so via the "Membership Withdrawal" feature within the service or by contacting customer support.
6. Right to Refuse Consent and Possible Disadvantages
- Users have the right to refuse consent to the collection and use of personal information.
- However, if you refuse to consent to the required items, you may be restricted from using certain services.
7. Personal Information Protection Officer
Contact: eldyeojh@gmail.com
8. Measures to Ensure the Security of Personal Information
The Company takes technical and administrative measures to protect personal information, including:
- Encryption of personal information
- Countermeasures against hacking and similar threats
- Installation and operation of access control systems
''';
}
// 아래는 이용약관 한글
/*
'''올스코어(이하 "회사"라 합니다)는 이용자의 개인정보를 중요시하며, 「개인정보 보호법」 등 관련 법령을 준수하고 있습니다. 회사는 개인정보 수집 및 이용에 관한 사항을 아래와 같이 안내드리오니, 내용을 충분히 숙지하신 후 동의하여 주시기 바랍니다.
1.
: (ID), (PW), ( ),
: ,
2.
3.
: .
: .
: 5
: 5
: 3
4.
.
:
:
5.
, , , .
, "회원 탈퇴" .
6.
.
.
7.
: eldyeojh@gmail.com
8.
, .
''',
*/