curl -X POST -H 'Content-Type: application/json' --data @path/to/index.json "https://firestore.googleapis.com/v1/projects/[PROJECT_ID]/databases/[DATABASE_ID]/indexes?access_token=$(gcloud auth application-default print-access-token)"
其中,[PROJECT_ID]和[DATABASE_ID]应替换为Firestore应用程序的实际ID。
firebase firestore:indexes
如果已经安装了Firebase CLI并连接到Firestore,则可以在运行此命令时添加-d标志来指定索引的定义。
firebase firestore:indexes:create -d '{fields:[{fieldPath: "myField", order: "ASCENDING"}]}'
以上是创建Firestore索引的三种方法,不需要在Android Studio中单独创建索引。