Sorry, this doesn't seem to be working at the moment. For now, run ./gradlew createArchive
and copy the output to where your project can use it, as described fuller in go/support-dev
Would you like to make a change in Support Library and have it be propagated to your downstream Gradle build (generally an app) without having to separately build Support Library and then build your application?
apply(from: '<support-lib-repo-root>/frameworks/support/include-support-library.gradle')
to your settings.gradlesdk.dir
.<support-lib-repo-root>/prebuilts/fullsdk-<platform>
.~/support-library/prebuilts/fullsdk-linux
.To determine the correct version, find the SDK with the highest number among SDKs in the Support Library repo.
echo <support-lib-repo-root>/prebuilts/fullsdk-linux/platforms/android* | xargs -n 1 echo | sed 's/.*android-//' | tail -n 1
This should output, for example, "28"
Update dependency versions
com.android.support:app-compat-v7:26.0.2
with com.android.support:app-compat-v7:28.0.2
Update configuration given to the Android Gradle plugin
compileSdkVersion
and make sure its version is correct