https://github.com/wordpress-mobile/AztecEditor-Android 1.6.4版本的aar如何下载”Assets" 列表中并没有
时间: 2023-06-27 12:04:43 浏览: 92
如果 `Assets` 列表中没有 AAR 文件,可以尝试以下步骤:
1. 点击 `Clone or download` 按钮,选择 `Download ZIP` 下载整个项目的源代码。
2. 解压缩下载的 ZIP 文件。
3. 在解压缩后的目录中找到 `AztecEditor/build/outputs/aar/` 目录,其中应该包含一个名为 `AztecEditor-1.6.4.aar` 的文件。
4. 将此文件复制到您的项目中,并在您的项目中添加它作为依赖项。
如果您仍然无法找到 AAR 文件,请尝试使用 Git 命令行工具获取项目并检查 `AztecEditor/build/outputs/aar/` 目录。使用以下命令克隆项目:
```
git clone https://github.com/wordpress-mobile/AztecEditor-Android.git
```
然后,使用以下命令切换到 1.6.4 版本的分支:
```
cd AztecEditor-Android
git checkout tags/v1.6.4
```
最后,检查 `AztecEditor/build/outputs/aar/` 目录以获取 AAR 文件。
阅读全文