gpt4 book ai didi

android - 如何在ubuntu服务器上安装android SDK

转载 作者:行者123 更新时间:2023-12-02 11:15:18 24 4
gpt4 key购买 nike

我在 ubuntu 服务器中有一个 React Native 项目,我想构建一个用于生产的 Android 应用程序。为此,我首先必须生成 Gradle Wrapper 文件,因此我在 android 目录

中运行此命令
gradle wrapper --gradle-version <my-gradle-version>

运行此命令后出现此错误

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':app'.
> SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

我知道如何使用 local.properties 文件中的 sdk.dir 或使用 ANDROID_HOME 环境变量定义 SDK 位置。

但是我的问题是没有安装 SDK

My question is in react native which sdk I need to build an android app for production and how to install it in ubuntu server

最佳答案

试试这个:

下载最新的android sdk

cd/选择

wget http://dl.google.com/android/android-sdk_r24.4.1-linux.tgz

tar -xvf android-sdk*-linux.tgz

cd android-sdk-linux/tools

./android update sdk --no-ui --filter platform,platform-tools

设置路径

echo 'export PATH=$PATH:/opt/android-sdk-linux/platform-tools' >> /etc/profile.d/android.sh

echo 'export ANDROID_TOOLS=/opt/android-sdk-linux' >> /etc/profile.d/android.sh
source /etc/profile.d/android.sh

添加 i386 支持

dpkg --add-architecture i386

apt-get update

apt-get install -y libc6:i386 libstdc++6:i386 zlib1g:i386

安装 SDK

cd /opt/android-sdk-linux/tools

./android list sdk --all

./android update sdk --no-ui --all

关于android - 如何在ubuntu服务器上安装android SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51743028/

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