gpt4 book ai didi

android - 我可以在 Mac 上的 Android Studio 中构建 Linphone 吗?

转载 作者:太空狗 更新时间:2023-10-29 16:15:45 26 4
gpt4 key购买 nike

我认为我们可以构建它。但是我在 Android Studio 上构建它时遇到错误。首先,我下载了 Android Studio 和 NDK。然后将Android Studio和NDK的PATH添加到PATH Variable中。当我运行时

./check_tools.sh

我得到输出

Could not find automake. Please install it.
Could not find autoconf. Please install it.
Could not find pkg-config. Please install it.
Could not find ant. Please install it.
Could not find yasm. Please install it.
Could not find wget. Please install it.
Could not find libtoolize. Please install libtool.
Invalid version of nasm: your version does not support elf32 output format. If you have installed nasm, please check that your PATH env variable is set correctly.
Failed to detect required tools, aborting.

但我怀疑我是否需要在 Android Studio 上使用这些工具。当我运行项目时出现错误

java.lang.UnsatisfiedLinkError: Couldn't load linphone-armeabi-v7a: findLibrary returned null.

谁能告诉我解决方案。

最佳答案

是的,你可以做到这一点遵循此博客中的分步指南

How to build culinphone on Android Studio using Mac OS X?

http://culinphone.wordpress.com

这是一步一步的指南。在 Mac OS X 上安装 Linphone SDK如何在 Mac 上的 Android Studio 中构建 Linphone?分步指南:-

所需知识:-安卓工具安卓工作室关于 mac-terminal(shell) 的一点点

软件要求:-带有这些工具的 Mac OS-X(你肯定需要这些工具来构建 linphone):-

coreutils, automake, autoconf, libtool, intltool, wget, pkgconfig ,cmake, gmake, yasm, grep, doxygen, ImageMagick, optipng, antlr3

第 1 步:-关于这些有用的工具,您可以使用此命令安装这些工具

$sudo port install coreutils automake autoconf libtool intltool wget pkgconfig cmake gmake yasm grep doxygen ImageMagick optipng antlr3

第 2 步:-
查看这些 Instructions how to upgrade nasm

第 3 步:-然后通过键入安装ant

brew update     #update if already installed
brew install ant

如果你还没有安装 brew,只需在下面输入命令

它是一个中等大小的下载,下载需要 5 分钟

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

只需按照涉及安装各种组件的过程进行操作即可。如果您已经安装了 brew,请执行以下命令确保它是最新的:

brew update

安装后,您只需输入:

brew install ant  

第 4 步:-现在是时候安装 libtool 了。要安装 libtool,请运行下面给出的命令

 curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar -xzf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure && make && sudo make install

第 5 步:-如果您还没有安装这些程序,请下载并安装下载 Android Studio & SDK下载 Android NDK

第 6 步:-运行命令下载LInphone Android的git仓库

$ sudo git clone git://git.linphone.org/linphone-android.git –recursive

现在一切都配置完美

第 7 步:-打开 terminalcd 进入 linphone-android

现在,当您进入终端上的目录时,然后检查您在 Mac 上运行的 SDK 和 NDK 的路径

$ echo $PATH

如果您看到带有 SDK 和 NDK 位置的路径,那么可以跳过下面的部分,如果没有,那么您需要在执行 make 和 make install 脚本之前设置 PATH

设置路径使用:-

$export PATH=/Users/<yourusername>/android-sdks/platform-tools/:/Users//android-sdks/tools/:/Users//Documents/ndk/:/nobackup/local/prog/nasm/bin/:$PATH

就像export PATH=(你的SDK平台工具文件夹的路径):(你的SDK工具文件夹的路径):(你的NDK文件夹的路径):$PATH

这将设置路径并再次确认运行

$ echo $PATH

现在如果路径已经设置好了,你可以简单地运行

$ make

现在将您的设备连接到您的 Mac 并查看 eclipse 是否检测到它。设备连接后运行:

$ make install

现在如果一切都OK:-

构建完成后,您现在可以将其导入 Android Studio。

打开安卓工作室

导入项目(Eclipse、ADT、Gradle等)>选择linphone-android>确定

关于android - 我可以在 Mac 上的 Android Studio 中构建 Linphone 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28127294/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com