Sujit
10/24/2019, 5:42 PMrepositories {
maven {
name "Local"
url uri("/Users/sujit.poudel/dev/android/TestProj1/build/")
}
}
can resolve all the artifacts in the build as maven artifacts, but not:
repositories {
maven {
name "Local"
url uri("$projectDir/build/")
}
}
does not in android project? I checked the value of $projectDir
, and it is: /Users/sujit.poudel/dev/android/TestProj1
. Any pointer here please?octylFractal
10/24/2019, 5:47 PMfile("build").toUri()
or similar