Skip to content

Commit

Permalink
Merge pull request chargebee#36 from cb-amutha/fix/signed_apk_fix
Browse files Browse the repository at this point in the history
[Fix](App crash with NPE on signed build)
  • Loading branch information
cb-amutha authored Jan 16, 2023
2 parents 9133087 + e2a9f86 commit 13ee0cc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.0.8
Bug fixes
* Android app crashed on signed apk and the issue fixed in Native Android SDK v1.0.15
## 0.0.7
Bug fixes
* Android flutter sdk error type mismatch: inferred type is String? but String was expected.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To use Chargebee SDK in your Flutter app, follow these steps:

```dart
dependencies:
chargebee_flutter: ^0.0.7
chargebee_flutter: ^0.0.8
```
2. Install dependency.
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.chargebee.flutter.sdk'
version '0.0.7'
version '0.0.8'

buildscript {
ext.kotlin_version = '1.6.0'
Expand Down Expand Up @@ -47,7 +47,7 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.chargebee:chargebee-android:1.0.14'
implementation 'com.chargebee:chargebee-android:1.0.15'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.android.billingclient:billing-ktx:4.0.0'
}
2 changes: 1 addition & 1 deletion ios/chargebee_flutter.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Pod::Spec.new do |s|
s.name = 'chargebee_flutter'
s.version = '0.0.7'
s.version = '0.0.8'
s.summary = 'This is the official Software Development Kit (SDK) for Chargebee Flutter.'
s.description = <<-DESC
A new Flutter plugin.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: chargebee_flutter
description: This is the official Software Development Kit (SDK) for Chargebee Flutter.
version: 0.0.7
version: 0.0.8
homepage: 'https://chargebee.com'
repository: 'https://github.com/chargebee/chargebee-flutter'

Expand Down

0 comments on commit 13ee0cc

Please sign in to comment.