将androidx源代码添加到Android Studio项目中进行调试

问题描述 投票:1回答:1

我想将androidx源代码添加到我的Android Studio项目中,而不是使用提供的库(implementation 'androidx.core:core-ktx:1.1.0')。使用提供的库,我只能查看源代码(仅在调试期间读取),但出于测试目的,我需要对其进行修改。

那么如何将androidx源代码添加到Android Studio中以便可以对其进行编辑?

android-source androidx
1个回答
0
投票

这些存储库通常使用repo访问;参见downloading the sourceREADME.md。例如。为了签出分支androidx-core-release

repo init -u https://android.googlesource.com/platform/manifest -b androidx-core-release

还将支持Git:

git clone --branch androidx-1.0-dev https://android.googlesource.com/platform/frameworks/support /home/android/androidx-1.0-dev
© www.soinside.com 2019 - 2024. All rights reserved.