Skip to content

Commit

Permalink
Merge pull request #11 from SanojPunchihewa/dev
Browse files Browse the repository at this point in the history
Fixes #10 SendIntentException
  • Loading branch information
SanojPunchihewa authored Sep 7, 2019
2 parents baa7768 + 491bda4 commit 025f9b2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to InAppUpdater will be documented in this file.

## [1.0.4-alpha.2] - 2019-09-07
- Fix Send Intent Exception

## [1.0.4-alpha.1] - 2019-07-29
- Fix Jitpack release issue

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ allprojects {
### Step 2: Add the dependency
```Gradle
dependencies {
implementation 'com.github.SanojPunchihewa:InAppUpdater:1.0.4-alpha.1'
implementation 'com.github.SanojPunchihewa:InAppUpdater:1.0.4-alpha.2'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void startUpdate(AppUpdateInfo appUpdateInfo) {
getActivity(),
UpdateManagerConstant.REQUEST_CODE);
} catch (IntentSender.SendIntentException e) {
Log.d(TAG, e.getMessage());
Log.d(TAG, "" + e.getMessage());
}
}

Expand Down Expand Up @@ -162,7 +162,7 @@ public void onSuccess(AppUpdateInfo appUpdateInfo) {
getActivity(),
UpdateManagerConstant.REQUEST_CODE);
} catch (IntentSender.SendIntentException e) {
Log.d(TAG, e.getMessage());
Log.d(TAG, "" + e.getMessage());
}
}
}
Expand Down

0 comments on commit 025f9b2

Please sign in to comment.