We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0198c20 commit 5e2dcd2Copy full SHA for 5e2dcd2
docs/index.md
@@ -570,6 +570,36 @@ public class VideoOsAdapter extends VideoPlusAdapter {
570
571
```
572
573
+## Acr 灵听小程序
574
+
575
+```
576
+ // 需在对应module 的gradle中额外引用
577
+ provided "com.videoli:venvy_acr:1.0.0"
578
579
+ // 在VideoOsAdapter中实现对应插件
580
+ // 灵听小程序插件
581
+ @Override
582
+ public Class<? extends IACRCloud> buildACRCloud() {
583
+ return VenvyACRCloud.class;
584
+ }
585
586
+ //录制回调监听
587
588
+ public IPlatformRecordInterface buildRecordInterface() {
589
+ return new IPlatformRecordInterface() {
590
591
+ public void startRecord() {
592
593
594
595
596
+ public void endRecord(final RecordCallback loginCallback) {
597
598
599
+ };
600
601
602
603
604
605
## 其他
0 commit comments