在WebRTC Android编译(基于Ubuntu云主机环境)一文中我们已经成功编译了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.AppRTCMobile
Possible 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.py
buildscript {
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!!!
本文来自作者投稿,版权归原作者所有。如需转载,请注明出处:https://www.nxrte.com/jishu/webrtc/7390.html