Skip to content

Commit 9c6b1be

Browse files
author
Frank Natividad
committed
Removing mentions of iOS from sample
1 parent c74c254 commit 9c6b1be

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

appengine/endpoints-frameworks-v2/migration-example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ provided [here][9].
3737
1. [Optional]: User Authenticating with Google Accounts in other Applications Types
3838

3939
- Inside [Constants.java](src/main/java/com/example/helloendpoints/Constants.java) you will find placeholders for Android
40-
and iOS applications using Google Accounts client IDs registered in the
40+
applications using Google Accounts client IDs registered in the
4141
[Credentials on Developers Console for OAuth 2.0 client IDs][6].
4242

4343
- These client IDs are used when defining annotation for this sample API found in [Greetings.java](src/main/java/com/example/helloendpoints/Greetings.java).

appengine/endpoints-frameworks-v2/migration-example/src/main/java/com/example/helloendpoints/Constants.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
public class Constants {
2323
public static final String WEB_CLIENT_ID = "replace this with your web client ID";
2424
public static final String ANDROID_CLIENT_ID = "replace this with your Android client ID";
25-
public static final String IOS_CLIENT_ID = "replace this with your iOS client ID";
2625
public static final String ANDROID_AUDIENCE = WEB_CLIENT_ID;
2726

2827
public static final String EMAIL_SCOPE = "https://www.googleapis.com/auth/userinfo.email";

appengine/endpoints-frameworks-v2/migration-example/src/main/java/com/example/helloendpoints/Greetings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
@Api(name = "helloworld",
3636
version = "v1",
3737
scopes = {Constants.EMAIL_SCOPE},
38-
clientIds = {Constants.WEB_CLIENT_ID, Constants.ANDROID_CLIENT_ID, Constants.IOS_CLIENT_ID},
38+
clientIds = {Constants.WEB_CLIENT_ID, Constants.ANDROID_CLIENT_ID},
3939
audiences = {Constants.ANDROID_AUDIENCE}
4040
)
4141
public class Greetings {

0 commit comments

Comments
 (0)