无法在我的应用程序中集成缩放 [英] Not able to integrate zoom in my application

查看:33
本文介绍了无法在我的应用程序中集成缩放的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在我的应用程序中集成缩放功能.为此,我点击了这个链接 [https://marketplace.zoom.us/docs/sdk/native-sdks/android/getting-started/prerequisites]

I am trying to integrate zoom in my application. For that, I followed this link [https://marketplace.zoom.us/docs/sdk/native-sdks/android/getting-started/prerequisites]

我创建了一个新的 android 项目,其中我从 zoom SDK 导入了 .aar 文件并导入了依赖项,但是当我尝试在我的主应用程序中运行它时,我收到了这个错误.

I've created a new android project where I've imported the .aar files from zoom SDK as well as imported the dependencies but when I try to run this in my main application I get this error.

error: cannot find symbol
        JoinMeetingOptions opts = ZoomMeetingUISettingHelper.getJoinMeetingOptions();
                                  ^
  symbol:   variable ZoomMeetingUISettingHelper
  location: class MainActivity

依赖

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation project(path: ':commonlib')
    implementation project(path: ':mobilertc')
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation 'androidx.multidex:multidex:2.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.0.0-rc01'

}

主活动


import androidx.appcompat.app.AppCompatActivity;


import android.content.Intent;
import android.os.Bundle;

import us.zoom.sdk.JoinMeetingOptions;
import us.zoom.sdk.JoinMeetingParams;
import us.zoom.sdk.ZoomSDK;
import us.zoom.sdk.ZoomSDKInitializeListener;


public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ZoomSDK sdk = ZoomSDK.getInstance();
MeetingService meetingService = sdk.getMeetingService();

        sdk.initialize(this, App_Key, App_Secret, ZoomSDKInitializeListener);

        JoinMeetingOptions opts = ZoomMeetingUISettingHelper.getJoinMeetingOptions();
        JoinMeetingParams params = new JoinMeetingParams();
        params.displayName = displayName;
        params.meetingNo = meetingNo;
        params.password = meetingPassword;
        meetingService.joinMeetingWithParams(context, params, opts);
    }
}

推荐答案

您必须同时导入 commonlib.aarmobilertc.aar .在你的gradle里面粘贴这两个实施项目(:commonlib")实施项目(:mobilertc")

You have to import both commonlib.aar and mobilertc.aar . And inside your gradle paste this two implementation project(":commonlib") implementation project(":mobilertc")

这篇关于无法在我的应用程序中集成缩放的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆