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

Version 5.0.1 #1677

Merged
merged 25 commits into from
Mar 16, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
d39c65a
Decouple versioning od sasquatch app from SDK
shadyabarada Oct 21, 2022
462ca26
Fix NPE when showing update setup failed dialog
shadyabarada Oct 25, 2022
01b15d8
Fix NPE when showing update setup failed dialog
shadyabarada Oct 25, 2022
5cc6cfe
Applying review comment
shadyabarada Oct 26, 2022
6e7c72e
Removing whitespaces
shadyabarada Oct 26, 2022
dfebf72
Removing unnecessary comment
shadyabarada Oct 26, 2022
1a2eb73
Update change log description
shadyabarada Oct 26, 2022
d97d942
Adding Test for the case when foreground activity is null - thus no d…
shadyabarada Oct 26, 2022
6874f42
Adding visibility for testing for the show status update failed dialog
shadyabarada Oct 26, 2022
5888f6c
Applying review comments
shadyabarada Oct 27, 2022
6180481
Applying review comments
shadyabarada Oct 27, 2022
fb003a8
Applying review comments
shadyabarada Oct 27, 2022
78b408c
Applying review comments
shadyabarada Oct 27, 2022
203be13
Applying review comments
shadyabarada Oct 27, 2022
a7ef311
Applying review comments
shadyabarada Oct 31, 2022
4da2085
Merge pull request #1662 from microsoft/Decoupling_Versioning_of_Sasq…
shadyabarada Nov 14, 2022
298915b
prepare for version 5.0.1
MikhailSuendukov Nov 21, 2022
c27588a
use new SDK v5.0.0 in demo app
MikhailSuendukov Nov 21, 2022
146681c
prepare changelog
MikhailSuendukov Nov 21, 2022
0a08826
Merge pull request #1665 from microsoft/start/5.0.1
DmitriyKirakosyan Nov 22, 2022
ba670bf
Merge branch 'develop' into NPE_Distribute_SDK_resumeDistributeWorkflow
shadyabarada Nov 22, 2022
0dc6a8c
Merge pull request #1663 from microsoft/NPE_Distribute_SDK_resumeDist…
shadyabarada Nov 22, 2022
0d68a70
Fix Concurrent Modification Exception in DefaultChannel on setNetwork…
shadyabarada Dec 21, 2022
d48edab
Migrate maven publish (#1673)
shadyabarada Jan 25, 2023
ccd68c6
Android SDK release - Version 5.0.1 (#1676)
DmitriyKirakosyan Mar 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Migrate maven publish (#1673)
Co-authored-by: Maksim Ternovtsi <v-mternovtsi@microsoft.com>
  • Loading branch information
shadyabarada and Maksim Ternovtsi authored Jan 25, 2023
commit d48edab7dbb64dd884acc96bb641fc886e795b0b
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### AppCenter

* **[Fix]** Fix Concurrent Modification Exception in DefaultChannel on setNetworkRequestsAllowed.
* **[Improvement]** Migrate from Maven Dcendents to Maven Publish plugin.

### App Center Distribute

Expand Down
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
classpath 'gradle.plugin.org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.12.0'

/* Resolves issue of incorrect version use in one of jacoco/android plugin inner tasks (can be removed on AGP 7.2+). */
Expand Down
96 changes: 50 additions & 46 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ allprojects {

subprojects {
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'maven-publish'
apply plugin: 'signing'

Expand Down Expand Up @@ -166,60 +165,65 @@ subprojects {
archives sourcesJar
}

afterEvaluate { project ->
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }

repository(url: ext.mavenRepoUrl) {
authentication(userName: ext.mavenUser, password: ext.mavenKey)
}

pom.project {

// 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
}
publishing {
repositories {
maven {
url = ext.mavenRepoUrl
credentials {
username = ext.mavenUser
password = ext.mavenKey
}
}
}
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
}
}

// 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
}
}
}

signing {
required { gradle.taskGraph.hasTask("uploadArchives") }
sign configurations.archives
afterEvaluate {
from components.release
}
}
}

signing {
required { gradle.taskGraph.hasTask("publish") }
sign publishing.publications.release
}
}
}

Expand Down