chore: 플랫폼 설정 및 테스트 업데이트

- Android 광고 권한 추가
- macOS 플러그인 등록
- 테스트 mock 업데이트
This commit is contained in:
JiWoong Sul
2026-01-16 20:11:00 +09:00
parent 748160d543
commit 9f077d74a1
5 changed files with 33 additions and 4 deletions

View File

@@ -6,13 +6,17 @@ import FlutterMacOS
import Foundation
import audio_session
import in_app_purchase_storekit
import just_audio
import path_provider_foundation
import shared_preferences_foundation
import webview_flutter_wkwebview
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AudioSessionPlugin.register(with: registry.registrar(forPlugin: "AudioSessionPlugin"))
InAppPurchasePlugin.register(with: registry.registrar(forPlugin: "InAppPurchasePlugin"))
JustAudioPlugin.register(with: registry.registrar(forPlugin: "JustAudioPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
WebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "WebViewFlutterPlugin"))
}