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

Start version 5.0.2 #1682

Merged
merged 9 commits into from
Mar 30, 2023
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