我想将androidx源代码添加到我的Android Studio项目中,而不是使用提供的库(implementation 'androidx.core:core-ktx:1.1.0'
)。使用提供的库,我只能查看源代码(仅在调试期间读取),但出于测试目的,我需要对其进行修改。
那么如何将androidx源代码添加到Android Studio中以便可以对其进行编辑?
这些存储库通常使用repo
访问;参见downloading the source或README.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