Skip to content

Commit

Permalink
merge(#30): 3.0.1
Browse files Browse the repository at this point in the history
OnPurchaseFailed deprecated. Removed label and supportsRtl parameters…
  • Loading branch information
jakubsta authored May 4, 2023
2 parents d5ba8ae + bd8aa3a commit 93182b2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions rampsdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 32
versionCode 16
versionName "3.0.0"
versionCode 17
versionName "3.0.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
buildConfigField 'String', 'VERSION', "\"${defaultConfig.versionName}\""
Expand Down
4 changes: 1 addition & 3 deletions rampsdk/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
<uses-feature android:name="android.hardware.camera" android:required="true"/>

<application
android:label="@string/app_name"
android:launchMode="singleTask"
android:supportsRtl="true">
android:launchMode="singleTask">
<activity
android:name="network.ramp.sdk.ui.activity.RampWidgetActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import network.ramp.sdk.events.model.Asset

interface RampCallback {

@Deprecated(message = "This method is deprecated and will be removed in future versions.")
fun onPurchaseFailed()

fun onPurchaseCreated(purchase: Purchase, purchaseViewToken: String, apiUrl: String)
Expand Down

0 comments on commit 93182b2

Please sign in to comment.