This contains Getting Started sample apps to accompany the Android developer guides on creativesdk.com.
Stay tuned for updates as we build out this library of samples!
- 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's
guide
directory to learn more about the component (e.g.,send-to-desktop-api/guide
)
Visit our Android developer portal for component guides, class references, and more.
We have all kinds of Android content on our blog that explores deeper aspects of the Creative SDK. Have a look at our Android category on blog.creativesdk.com.
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.