This contains Getting Started sample apps to accompany the Android developer guides on Adobe I/O.
- Register a new app for the Creative SDK
- Note your API Key (Client ID), Client Secret, and Redirect URI. You will need them soon.
-
git clone
this repo -
Open a component's
code
directory Android Studio (e.g.,send-to-desktop-api/code
) -
Add a new Java class called
Keys
with this code:public class Keys { public static final String CSDK_CLIENT_ID = "<YOUR_ID_HERE>"; public static final String CSDK_CLIENT_SECRET = "<YOUR_SECRET_HERE>"; public static final String CSDK_REDIRECT_URI = "<YOUR_REDIRECT_URI_HERE>"; public static final String[] CSDK_SCOPES = {"email", "profile", "address"}; }
- Add your API Key (Client ID), Client Secret, and Redirect URI to the
Keys
class - Scope is not currently configurable. Please use the value of
CSDK_SCOPES
as seen above. - This class is gitignored so you can avoid exposing your keys on GitHub
- Add your API Key (Client ID), Client Secret, and Redirect URI to the
-
Sync your Gradle files
-
Run the app
-
See the component guides on Adobe I/O to learn more about the components
Visit Adobe I/O for component guides, class references, and more.
Pull requests and GitHub issues are welcome!
If you want to do a pull request, please get in touch with us before you start writing code, so we can avoid duplicated effort or unnecessary work.
Our growing community on Stackoverflow is a great way to get help. Just post your question and tag it with adobecreativesdk
.
If you have feedback on this repo, submit a GitHub issue.