Skip to content

Commit

Permalink
[version] v2.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
brnogz committed May 27, 2022
1 parent 7137967 commit 7eba2ca
Show file tree
Hide file tree
Showing 62 changed files with 844 additions and 36 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 this project will be documented in this file.

## 2.6.3
- Fixed: Payment verification config for HMS

## 2.6.2
- Fixed: Cannot close paywall on "On Close" paywalls

Expand Down
31 changes: 16 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,21 @@ allprojects {
```

```gradle
implementation 'deepwall:deepwall-core:2.6.2'
implementation 'deepwall:deepwall-core:2.6.3'
```

## Google Implementation

If you use Deepwall SDK with Google services you should add google implementation too
```gradle
implementation 'deepwall:deepwall-google:2.6.2'
implementation 'deepwall:deepwall-google:2.6.3'
```

## Huawei Implementation

If you use Deepwall SDK with Huawei services you should add huawei implementation too
```gradle
implementation 'deepwall:deepwall-huawei:2.6.2'
implementation 'deepwall:deepwall-huawei:2.6.3'
```

# Initialize
Expand All @@ -47,7 +47,7 @@ DeepWall.initDeepWallWith(
activity = activity,
apiKey = "DEEPWALL_API_KEY",
environment = DeepWallEnvironment.PRODUCTION,
)
)
```

For Huawei
Expand All @@ -58,7 +58,7 @@ DeepWall.initDeepWallWith(
activity = activity,
apiKey = "DEEPWALL_API_KEY",
environment = DeepWallEnvironment.PRODUCTION,
)
)
```


Expand Down Expand Up @@ -98,10 +98,11 @@ Properties method before requesting any Paywall page.

```kotlin
DeepWall.setUserProperties(
deviceId = androidId,
languageCode = DeepWallLanguage.getLanguageCodeByName(DeepWallLanguage.ENGLISH_UNITED_STATES),
countryCode = DeepWallCountry.getCountryCodeByName(DeepWallCountry.UNITED_STATES_OF_AMERICA),
environmentStyle = DeepWallEnvironmentStyle.DARK )
deviceId = androidId,
languageCode = DeepWallLanguage.getLanguageCodeByName(DeepWallLanguage.ENGLISH_UNITED_STATES),
countryCode = DeepWallCountry.getCountryCodeByName(DeepWallCountry.UNITED_STATES_OF_AMERICA),
environmentStyle = DeepWallEnvironmentStyle.DARK
)
```

# Updating User Properties
Expand All @@ -119,9 +120,9 @@ You could update the following user properties with DeepWall.updateUserPropertie

```kotlin
DeepWall.updateUserProperties(
languageCode = "tr-tr",
countryCode = "TR"
environmentStyle = DeepWallEnvironmentStyle.DARK
languageCode = "tr-tr",
countryCode = "TR"
environmentStyle = DeepWallEnvironmentStyle.DARK
)
```

Expand All @@ -139,7 +140,7 @@ DeepWall.showPaywall(
| ----- | ----- |
| activity | Instance of the activity where the showPaywall method is called |
| action | Action to be used for page display it is String value|
| orientation | Orientation of the paywall (default Auto) |
| orientation | Orientation of the paywall (default Portrait) |

# Sending Extra Data
You could also use extraData parameter for sending extra data to paywall pages via Bundle.
Expand Down Expand Up @@ -331,7 +332,7 @@ Toast.makeText(this@MainActivity, "PAYWALL OPENED : ${key.pageId}", Toast.LENGTH
DeepWall is shipped with ExoPlayer 2.17.1. If other versions of ExoPlayer required, `deepwall-video` package should be excluded and compatible version of `deepwall-video` should be added.
``` groovy
implementation('deepwall:deepwall-core:2.6.2'){
implementation('deepwall:deepwall-core:2.6.3'){
exclude group: 'deepwall', module: 'deepwall-video'
}
implementation('deepwall:deepwall-video:DEEPWALL_VIDEO_VERSION')
Expand All @@ -345,4 +346,4 @@ DeepWall Video package versions and corresponding ExoPlayer versions are listed
|2.14.2.0|2.14.2|
|2.15.1.0|2.15.1|
|2.16.1.0|2.16.1|
|2.17.1.0|2.17.1|
|2.17.1.0|2.17.1|
Binary file not shown.
1 change: 1 addition & 0 deletions deepwall/deepwall-core/2.6.3/deepwall-core-2.6.3.aar.md5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b9e33615cdba07a805b78fb57715dd07
1 change: 1 addition & 0 deletions deepwall/deepwall-core/2.6.3/deepwall-core-2.6.3.aar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5ed804cc86a710a6825039102da3714af4e11fb3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
aec3a690208f5161d3764a377a969506c643d4e5c2b87d46aefa1e66b3f2ae14
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f810e55d0b263c0c40c18df1bbffd451240951ff8aa4a960180e9567aaa5340b826aa2645ae64c71fa16c928a3a56b1632caa2251ba59ff60db5043885e4197a
Loading

0 comments on commit 7eba2ca

Please sign in to comment.