Skip to content

Commit

Permalink
Merge pull request #1682 from microsoft/start/5.0.2
Browse files Browse the repository at this point in the history
Start version 5.0.2
  • Loading branch information
DmitriyKirakosyan authored Mar 30, 2023
2 parents ccd68c6 + e997a98 commit 5e66528
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 50 deletions.
4 changes: 2 additions & 2 deletions apps/sasquatch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ android {

defaultConfig {
versionCode 300
versionName "5.0.0"
versionName "5.0.1"
externalNativeBuild {
ndkBuild {
arguments "NDK_APPLICATION_MK=Application.mk", "V=1"
Expand Down Expand Up @@ -100,7 +100,7 @@ dependencies {
projectDependencyImplementation project(':sdk:appcenter-analytics')
projectDependencyImplementation project(':sdk:appcenter-crashes')

def appCenterSdkVersion = "5.0.0"
def appCenterSdkVersion = "5.0.1"
mavenCentralDependencyImplementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
mavenCentralDependencyImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"

Expand Down
90 changes: 44 additions & 46 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -159,12 +159,6 @@ subprojects {
from javadoc.destinationDir
}

// Set artifacts for publish.
artifacts {
archives javadocJar
archives sourcesJar
}

publishing {
repositories {
maven {
Expand All @@ -175,54 +169,58 @@ subprojects {
}
}
}
publications {
release(MavenPublication) {
pom {

// Set base information about assemble.
packaging = 'aar'
name = project.name
description = project.description
url = ext.siteUrl

// Set identifiers of assemble.
groupId = ext.groupId
artifactId = project.name

// Set license information.
licenses {
license {
name = ext.licenseName
url = ext.licenseSite

afterEvaluate { project ->
publications {
release(MavenPublication) {
from components.release

artifact javadocJar
artifact sourcesJar

pom {

// Set base information about assemble.
packaging = 'aar'
name = project.name
description = project.description
url = ext.siteUrl

// Set identifiers of assemble.
groupId = ext.groupId
artifactId = project.name

// Set license information.
licenses {
license {
name = ext.licenseName
url = ext.licenseSite
}
}
}

// Set information about developers.
developers {
developer {
id = ext.developerId
name = ext.developerName
email = ext.developerEmail
// Set information about developers.
developers {
developer {
id = ext.developerId
name = ext.developerName
email = ext.developerEmail
}
}
}

// Set information about connection with developers.
scm {
connection = ext.gitUrl
developerConnection = ext.gitUrl
url = ext.siteUrl
// Set information about connection with developers.
scm {
connection = ext.gitUrl
developerConnection = ext.gitUrl
url = ext.siteUrl
}
}
}

afterEvaluate {
from components.release
}
}
}

signing {
required { gradle.taskGraph.hasTask("publish") }
sign publishing.publications.release
signing {
required { gradle.taskGraph.hasTask("publish") }
sign publishing.publications.release
}
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// Version constants

ext {
versionCode = 70
versionName = '5.0.1'
versionCode = 71
versionName = '5.0.2'
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
Expand Down

0 comments on commit 5e66528

Please sign in to comment.