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 4 commits
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# App Center SDK for Android Change Log

## Version 5.0.1 (Under development)

___

## Version 5.0.0

### AppCenter
Expand Down
2 changes: 1 addition & 1 deletion apps/sasquatch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies {
projectDependencyImplementation project(':sdk:appcenter-analytics')
projectDependencyImplementation project(':sdk:appcenter-crashes')

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

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 = 69
versionName = '5.0.0'
versionCode = 70
versionName = '5.0.1'
minSdkVersion = 21
compileSdkVersion = 33
targetSdkVersion = 33
Expand Down