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

Commit c0c58c4

Browse files
committed
Added readme.
1 parent 533b615 commit c0c58c4

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

getting-started/readme.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Android: Getting Started
2+
3+
This repo accompanies [the Creative SDK Getting Started guide for Android](https://creativesdk.adobe.com/docs/android/#/articles/gettingstarted/index.html).
4+
5+
6+
## How to use
7+
8+
Just follow the steps below.
9+
10+
### In your browser
11+
12+
1. [Register a new app for the Creative SDK](https://creativesdk.adobe.com/myapps.html)
13+
1. Note your Client ID and Secret. You will need them soon.
14+
15+
### In your local development environment
16+
17+
1. `git clone` the repo
18+
![](https://github.com/ashryanbeats/CSDKBase/blob/screenshots/screenshots/add-creativesdk-repo.png)
19+
20+
1. Add a new Java class called `Keys` with this code:
21+
22+
```
23+
public class Keys {
24+
25+
public static final String CSDK_CLIENT_ID = "<YOUR_ID_HERE>";
26+
public static final String CSDK_CLIENT_SECRET = "<YOU_SECRET_HERE>";
27+
28+
}
29+
```
30+
31+
1. Add your Client ID and Secret to the `Keys` class
32+
1. This class is gitignored so you can avoid exposing your keys in GitHub
33+
1. Sync your Gradle files and run the app

0 commit comments

Comments
 (0)