我正在尝试创建一个连接到 firestore 来存储和检索数据的 flutter 应用程序。从 flutter cloud_firestore 插件文档中,我可以看到我需要一些值来配置它。
final FirebaseApp app = await FirebaseApp.configure(
name: 'test',
options: const FirebaseOptions(
googleAppID: '1:79601577497:ios:5f2bcc6ba8cecddd',
gcmSenderID: '79601577497',
apiKey: 'AIzaSyArgmRGfB5kiQT6CunAOmKRVKEsxKmy6YI-G72PVU',
projectID: 'flutter-firestore',
),
);
Run Code Online (Sandbox Code Playgroud)
我知道如何获取 gcmSenderID、apiKey 和 projectID,但我无法理解如何获取 googleAppID。
请告知 Final Firestore firestore = new Firestore(app: app);