Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 플러터
- 영원회귀
- Redis
- 사이드프로젝트
- 부업
- git pull
- 토이프로젝트
- nestjs
- 광고플랫폼
- 메모장앱
- 캐치마인드
- 코딩공부
- 카카오톡공유하기
- 개인앱
- 스케치퀴즈
- 라인광고플랫폼
- 구글검색광고
- 룩백
- 카카오톡
- Kotlin
- funnel
- 이터널리턴
- git
- 펀널
- 블랙서바이벌
- 스케치데브
- 페이스북광고
- nodejs
- submodules
- 개발자를_위한 #PPT팁
Archives
- Today
- Total
가을기 Workspace
ios 15.1에서 app_tracking_transparency 관련 reject 먹을때 본문
ios/Runner/AppDelegate.swift 파일에 아래 코드 추가
/// your import
import AppTrackingTransparency // add this
@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {
override func application(
_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
/// your code here
}
override func applicationDidBecomeActive(_ application: UIApplication) { // add this function
if #available(iOS 14, *) {
ATTrackingManager.requestTrackingAuthorization(completionHandler: { status in
switch status {
case .authorized:
// Tracking authorization dialog was shown
// and we are authorized
print("Authorized")
case .denied:
// Tracking authorization dialog was
// shown and permission is denied
print("Denied")
case .notDetermined:
// Tracking authorization dialog has not been shown
print("Not Determined")
case .restricted:
print("Restricted")
@unknown default:
print("Unknown")
}
})
} else {
//you got permission to track, iOS 14 is not yet installed
}
}
}
'개발 > 개인앱' 카테고리의 다른 글
앱 개발 시 도움이 되는 서비스 (0) | 2021.12.18 |
---|---|
웹 서비스 구현에 유용한 무료 제작툴 모음 (0) | 2021.12.15 |
[플러터] ios 앱 출시하기 (2) | 2021.12.04 |
[플러터] iOS에서 Admob 수익 극대화하기 (SkAdnetwork) (0) | 2021.11.20 |
[플러터] Google Maps 구현 (0) | 2021.10.23 |
Comments