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

Commit ef5871c

Browse files
committed
Added Keys class to gitignore. Application subclass gets keys from Keys.class.
1 parent 0dfc6cb commit ef5871c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

image-editor-ui/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
/build
77
/captures
88

9-
/app/src/main/java/com/adobe/gettingstarted/Keys.java
9+
app/src/main/java/com/adobe/imageeditorui/Keys.java

image-editor-ui/app/src/main/java/com/adobe/imageeditorui/MainApplication.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
public class MainApplication extends Application implements IAdobeAuthClientCredentials {
1212

1313
/* Be sure to fill in the two strings below. */
14-
private static final String CREATIVE_SDK_CLIENT_ID = "<YOUR_CLIENT_ID_HERE>";
15-
private static final String CREATIVE_SDK_CLIENT_SECRET = "<YOUR_CLIENT_SECRET_HERE>";
14+
private static final String CREATIVE_SDK_CLIENT_ID = Keys.CSDK_CLIENT_ID;
15+
private static final String CREATIVE_SDK_CLIENT_SECRET = Keys.CSDK_CLIENT_SECRET;
1616

1717
@Override
1818
public void onCreate() {

0 commit comments

Comments
 (0)