Skip to content

Commit

Permalink
Merge pull request #193 from paypal/updating-return-url
Browse files Browse the repository at this point in the history
Adding returnUrl back in
  • Loading branch information
kelay858 committed Jan 18, 2023
2 parents b8ae49e + 66c2f73 commit b83506e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion quickstart-kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ android {

dependencies {
// PayPal Checkout SDK Libraries
implementation 'com.paypal.checkout:android-sdk:0.8.7'
implementation 'com.paypal.checkout:android-sdk:0.8.8'

// Other Dependencies Related To Sample App
implementation fileTree(dir: "libs", include: ["*.jar"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import com.paypal.checkout.config.Environment
import com.paypal.checkout.config.SettingsConfig
import com.paypal.checkout.createorder.CurrencyCode
import com.paypal.checkout.createorder.UserAction
import com.paypal.pyplcheckout.BuildConfig

class QuickStartApp : Application() {
override fun onCreate() {
Expand All @@ -21,7 +22,8 @@ class QuickStartApp : Application() {
settingsConfig = SettingsConfig(
loggingEnabled = true,
shouldFailEligibility = false
)
),
returnUrl = BuildConfig.LIBRARY_PACKAGE_NAME
)
)
}
Expand Down

0 comments on commit b83506e

Please sign in to comment.