12 lines
313 B
Dart
12 lines
313 B
Dart
// Author: fengshengxiong
|
|
// Date: 2024/6/26
|
|
// Description: facebook管理
|
|
|
|
import 'package:facebook_app_events/facebook_app_events.dart';
|
|
|
|
class FacebookManager {
|
|
static void init() {
|
|
FacebookAppEvents().setAdvertiserTracking(enabled: true);
|
|
FacebookAppEvents().setAutoLogAppEventsEnabled(true);
|
|
}
|
|
} |