Skip to content
JM.PASCAL edited this page Apr 21, 2015 · 5 revisions

Steps

Install/Configure Android Studio

Install/Configure Emulators or Android Devices

There's not only one solution to run an Android application. Below you will find 3 different solutions

Fork the application in Github

Import the project into Android Studio

Populate Private keys

The build process uses some private keys which are not present inside the source code. The missing keys contain information about

We use global gradle.properties file to import those key as defined in Gradle Build Environment

Below you will find a sample of our global gradle.properties.

RELEASE_STORE_FILE=path/to/your/keystore/
RELEASE_STORE_PASSWORD=password
RELEASE_KEY_ALIAS=alias
RELEASE_KEY_PASSWORD=passowrd

## OAUTH KEYS (only if Alfresco Cloud is required)
OAUTH_API_KEY=key
OAUTH_API_SECRET=secret
OAUTH_CALLBACK=http://www.alfresco.com/mobile-auth-callback.html
OAUTH_SCOPE=public_api

More information