2026-04-22 09:52:55 +08:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
|
|
public class BrigdeIOS
|
|
|
|
|
{
|
2026-04-22 11:13:16 +08:00
|
|
|
|
2026-04-22 09:52:55 +08:00
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void DakaiACT();
|
|
|
|
|
[DllImport("__Internal")]
|
2026-04-22 11:13:16 +08:00
|
|
|
public static extern void ShezhiACT(bool though);
|
2026-04-22 09:52:55 +08:00
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void copyText(string text);
|
2026-04-22 11:13:16 +08:00
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void SaveVideoWithCustomDate(string videoPath);
|
|
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void SaveImageWithCustomDate(string imagePath);
|
|
|
|
|
[DllImport("__Internal")]
|
|
|
|
|
public static extern void TrackProduct(string eventName, string dictionaryJson);
|
2026-04-22 09:52:55 +08:00
|
|
|
}
|