All Projects → CreativeSDK → Android Getting Started Samples

CreativeSDK / Android Getting Started Samples

Getting started guides and sample code for the Adobe Creative SDK for Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Getting Started Samples

Web Getting Started Samples
Getting started guides and sample code for the Adobe Creative SDK for Web
Stars: ✭ 77 (+22.22%)
Mutual labels:  sample-app, adobe
Blinkid Cordova
ID scanning for cross-platform apps built with Cordova and Phonegap.
Stars: ✭ 44 (-30.16%)
Mutual labels:  sample-app
Awesome Tensorflow Lite
TensorFlow Lite models, samples, tutorials, tools and learning resources.
Stars: ✭ 676 (+973.02%)
Mutual labels:  sample-app
Nexrender
📹 Data-driven render automation for After Effects
Stars: ✭ 946 (+1401.59%)
Mutual labels:  adobe
Creative Cloud Linux
PlayOnLinux install script for Adobe Creative Cloud
Stars: ✭ 725 (+1050.79%)
Mutual labels:  adobe
Kotlillon
Android Kotlin Examples
Stars: ✭ 31 (-50.79%)
Mutual labels:  sample-app
Midi2lr
An application and plugin to remotely control Lightroom with a MIDI controller
Stars: ✭ 485 (+669.84%)
Mutual labels:  adobe
Play Scala Slick Example
Example Play Scala project with Slick
Stars: ✭ 59 (-6.35%)
Mutual labels:  sample-app
Staterestorationdemo
App to demonstrate state preservation and restoration APIs
Stars: ✭ 41 (-34.92%)
Mutual labels:  sample-app
Awesome Android Things
A curated list of awesome android things tutorials, libraries and much more at one place
Stars: ✭ 883 (+1301.59%)
Mutual labels:  sample-app
Mail Board
Sample vuex application for meet.js Gdańsk meeting
Stars: ✭ 13 (-79.37%)
Mutual labels:  sample-app
Android Animations
Android Animations Sample App
Stars: ✭ 16 (-74.6%)
Mutual labels:  sample-app
Jetpack Compose Playground
Community-driven collection of Jetpack Compose example code and tutorials 🚀 https://foso.github.io/compose
Stars: ✭ 969 (+1438.1%)
Mutual labels:  sample-app
Pitstop
This repo contains a sample application based on a Garage Management System for Pitstop - a fictitious garage. The primary goal of this sample is to demonstrate several software-architecture concepts like: Microservices, CQRS, Event Sourcing, Domain Driven Design (DDD), Eventual Consistency.
Stars: ✭ 708 (+1023.81%)
Mutual labels:  sample-app
Swiftysampleproject
A starter project for Sample Project in swift 3.0/4.0 (also bridging header included so you could use objective c code in it as well ). For objectiveC version : https://github.com/xeieshan/SampleProject > Supports iOS 8.4+ > Swift 4.x
Stars: ✭ 47 (-25.4%)
Mutual labels:  sample-app
Python Getting Started
Getting Started with Python on Heroku.
Stars: ✭ 637 (+911.11%)
Mutual labels:  sample-app
Laravel Blog 5.6.5
Learning Laravel by making simple Blog
Stars: ✭ 12 (-80.95%)
Mutual labels:  sample-app
Parcel Plugin Cep
Zero configuration CEP extension builder for Parcel
Stars: ✭ 29 (-53.97%)
Mutual labels:  adobe
Aem Core Cif Components
A set of configurations and components to get you started with AEM Commerce development
Stars: ✭ 60 (-4.76%)
Mutual labels:  adobe
Food Ordering App Like Swiggy Uber Eats Mvvm And Room Database
Food ordering app using MVVM architecture patterns, Architecture Lifecycle components and Room database.
Stars: ✭ 53 (-15.87%)
Mutual labels:  sample-app

Android: Getting Started Samples

This contains Getting Started sample apps to accompany the Android developer guides on Adobe I/O.

Contents

How to use

In your browser

  1. Register a new app for the Creative SDK
  2. Note your API Key (Client ID), Client Secret, and Redirect URI. You will need them soon.

In your local development environment

  1. git clone this repo

  2. Open a component's code directory Android Studio (e.g., send-to-desktop-api/code)

  3. 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"};
    }
    
    1. Add your API Key (Client ID), Client Secret, and Redirect URI to the Keys class
    2. Scope is not currently configurable. Please use the value of CSDK_SCOPES as seen above.
    3. This class is gitignored so you can avoid exposing your keys on GitHub
  4. Sync your Gradle files

  5. Run the app

  6. See the component guides on Adobe I/O to learn more about the components

More resources for the Creative SDK

Developer portal

Visit Adobe I/O for component guides, class references, and more.

Contributing to this repo

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.

Get help

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].