作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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
最佳答案
试试这个:
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
dpkg --add-architecture i386
apt-get update
apt-get install -y libc6:i386 libstdc++6:i386 zlib1g:i386
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/
我是一名优秀的程序员,十分优秀!