現在、プロジェクトの依存関係としてhttps://github.com/firebase/FirebaseUI-Androidのローカル クローンを追加しようとしています。FirebaseUI を変更したいので、標準的な方法でインポートしたくありません。現在、私はこれを試しています:
settings.gradle:
include ':firebaseui'
project(':firebaseui').projectDir = new File(settingsDir, '../FirebaseUI')
私のモジュールのbuild.gradle:
dependencies {
compile project(":firebaseui")
}
しかし、私は得る:
Error:(42, 0) Could not read script 'C:\Users\Gonzalo\AndroidStudioProjects\MyProject\common\constants.gradle' as it does not exist.
これは FirebaseUI\build.gradle にインポートされます:
allprojects { project ->
// Get constants, this is where we store things
// like the list of submodules or the version
project.apply from: "$rootDir/common/constants.gradle"
...
FirebaseUI の build.gradle または私のものの問題ですか?