本文主要是介绍WebRTC导入Android Studio,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在《WebRTC之Android编译》
一文中我们已经成功编译了Android版WebRTC,并且通过分析对比拿到了对应的jar包和so库。
在WebRTC的src/example
目录下有很多的关于WebRTC的demo,那么如何将这些demo导入到Android Studio中进行分析呢?本文来为你揭晓…
同样我们参照官方的教程试下:https://webrtc.github.io/webrtc-org/native-code/android/
注意,以下命令都是在WebRTC源码目录的src
目录下执行
编译AppRTCMobile
1、编译
# 配置输出目录和cpu架构 将产物输出到out/StudioDebug目录
gn gen out/StudioDebug --args='target_os="android" target_cpu="arm"'# 编译
ninja -C out/StudioDebug AppRTCMobile
2、生成Android Studio工程所需的gradle文件
# 注意这是一条命令,不是三条
build/android/gradle/generate_gradle.py --output-directory $PWD/out/StudioDebug \
--target "//examples:AppRTCMobile" --use-gradle-process-resources \
--split-projects --canary
导入Android Studio
编译完成后我们需要导入的项目目录在/out/StudioDebug/gradle
。
导入之后发现报错:
Execution failed for task ':examples.AppRTCMobile:mergeDebugResources'.
> Could not resolve all files for configuration ':examples.AppRTCMobile:_internal_aapt2_binary'.> Cannot resolve external dependency com.android.tools.build:aapt2:4.1.3-6503028 because no repositories are defined.Required by:project :examples.AppRTCMobilePossible solution:- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
从报错信息中我们看到应该是依赖仓库没配置好,我们修改下build.gradle
文件,
在项目的根目录的后增加如下配置:
allprojects {repositories {google()jcenter()}
}
完整的build.gradle
文件如下:
// Generated by //build/android/generate_gradle.pybuildscript {repositories {google()jcenter()
// Workaround for http://b/144885480.maven() {url "http://dl.bintray.com/kotlin/kotlin-eap"}}dependencies {classpath 'com.android.tools.build:gradle:3.5.1'}
}allprojects {repositories {google()jcenter()}
}
然后就可以运行了,可以舒适地用Android Studio调试example代码了。。。
运行截图:
关注我,一起进步,人生不止coding!!!
这篇关于WebRTC导入Android Studio的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!