Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Android] Updated Android Daily Feed #3229

Merged
merged 13 commits into from
Jul 15, 2019
9 changes: 5 additions & 4 deletions source/android/adaptivecards/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,18 @@ publishing {
publications {
adaptivecards(MavenPublication) {
groupId 'io.adaptivecards'
version System.getenv('XES_SEMANTICVERSION') + '-20' + System.getenv('TFS_VersionNumber')
version System.getenv('ACSDKVERSION') + '-' + System.getenv('BUILD_BUILDNUMBER')
artifact(sourceJar)
artifact("$buildDir/outputs/aar/adaptivecards-release.aar")
}
}

repositories {
maven {
url 'https://microsoft.pkgs.visualstudio.com/_packaging/AdaptiveCards-Android/maven/v1'
url 'https://microsoft.pkgs.visualstudio.com/_packaging/AdaptiveCards/maven/v1'
credentials {
username "VSTS"
password System.getenv("VSTS_ENV_ACCESS_TOKEN") ?: System.getenv("AdaptiveCardsAuthoTokens")
username "AZURE_ARTIFACTS"
password System.getenv("AZURE_ARTIFACTS_ENV_ACCESS_TOKEN") ?: "${azureArtifactsGradleAccessToken}"
}
}
}
Expand Down