Skip to content
This repository was archived by the owner on Feb 27, 2023. It is now read-only.

Commit 2b565fb

Browse files
Merge pull request #11 from stripe/mrmcduff-inclusivemobile
updating copy to include android
2 parents bbeab59 + 8007c3f commit 2b565fb

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
Example iOS Backend
1+
Example App Backend
22
====
33

4-
This is a really simple [Sinatra](http://www.sinatrarb.com/) webapp that you can use to test Stripe's [example iOS apps](https://github.com/stripe/stripe-ios).
4+
This is a really simple [Sinatra](http://www.sinatrarb.com/) webapp that you can use to test Stripe's [example iOS apps](https://github.com/stripe/stripe-ios) and
5+
[example Android apps](https://github.com/stripe/stripe-android).
56

67
This is intended for example purposes only: you'll likely need something more serious for your production apps.
78

app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "Example Stripe iOS Backend",
3-
"description": "For testing the Stripe example iOS apps at github.com/stripe/stripe-ios",
2+
"name": "Example Stripe Backend",
3+
"description": "For testing the Stripe example mobile apps at github.com/stripe/stripe-ios and github.com/stripe/stripe-android",
44
"repository": "https://github.com/stripe/example-ios-backend",
55
"keywords": ["ios", "stripe"],
66
"env": {

web.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
get '/' do
1414
status 200
15-
return "Great, your backend is set up. Now you can configure the Stripe example iOS apps to point here."
15+
return "Great, your backend is set up. Now you can configure the Stripe example apps to point here."
1616
end
1717

1818
post '/charge' do
@@ -90,7 +90,7 @@ def authenticate!
9090
end
9191
else
9292
begin
93-
@customer = Stripe::Customer.create(:description => "iOS SDK example customer")
93+
@customer = Stripe::Customer.create(:description => "mobile SDK example customer")
9494
rescue Stripe::InvalidRequestError
9595
end
9696
session[:customer_id] = @customer.id

0 commit comments

Comments
 (0)