Skip to content

Commit

Permalink
Merge pull request #1723 from microsoft/start/v5.0.5
Browse files Browse the repository at this point in the history
Start new 5.0.5 version
  • Loading branch information
DmitriyKirakosyan committed Dec 14, 2023
2 parents 3408006 + 0351aae commit 1a47a87
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 17 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# App Center SDK for Android Change Log

## Version 5.0.5 (Under development)
w
## Version 5.0.4

### App Center Distribute
Expand All @@ -13,7 +15,6 @@

* **[Internal]** Add `dataResidencyRegion` option.


## Version 5.0.2

### AppCenter
Expand Down
6 changes: 3 additions & 3 deletions apps/sasquatch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ android {
flavorDimensions "dependency", "distribute"

defaultConfig {
versionCode 303
versionName "5.0.4"
versionCode 304
versionName "5.0.5"
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.3"
def appCenterSdkVersion = "5.0.4"
mavenCentralDependencyImplementation "com.microsoft.appcenter:appcenter-analytics:${appCenterSdkVersion}"
mavenCentralDependencyImplementation "com.microsoft.appcenter:appcenter-crashes:${appCenterSdkVersion}"

Expand Down
2 changes: 0 additions & 2 deletions publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ ext {
properties.load(file.newDataInputStream())
}

mavenUser = properties.getProperty("maven.user")
mavenKey = properties.getProperty("maven.key")
mavenRepoUrl = properties.getProperty("maven.repoUrl")
mavenSigningKeyId = properties.getProperty("maven.signingKeyId")
mavenPublicKeyPassword = properties.getProperty("maven.publicKeyPassword")
mavenSecretKeyPath = properties.getProperty("maven.secretKeyPath")
Expand Down
7 changes: 3 additions & 4 deletions scripts/put-bintray-secrets-gradle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
cat >> local.properties << EOL
maven.user=${1:-$MAVEN_USER}
maven.key=${2:-$MAVEN_KEY}
maven.repoUrl=${3:-$MAVEN_REPO}
maven.signingKeyId=${4:-$GDP_SIGNING_KEY_ID}
maven.secretKeyPath=${5:-$GDP_KEY_SECRET_PATH}
maven.publicKeyPassword=${6:-$GDP_KEY_PASSWORD}
maven.signingKeyId=${3:-$GDP_SIGNING_KEY_ID}
maven.secretKeyPath=${4:-$GDP_KEY_SECRET_PATH}
maven.publicKeyPassword=${5:-$GDP_KEY_PASSWORD}
EOL
6 changes: 1 addition & 5 deletions sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,7 @@ subprojects {
publishing {
repositories {
maven {
url = ext.mavenRepoUrl
credentials {
username = ext.mavenUser
password = ext.mavenKey
}
url = uri("${System.env.BUILD_DIR}")
}
}

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 = 73
versionName = '5.0.4'
versionCode = 74
versionName = '5.0.5'
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
Expand Down

0 comments on commit 1a47a87

Please sign in to comment.