Use .aar archive to install SDK

This commit is contained in:
toby cabot 2016-01-26 13:42:58 -05:00
parent 21edc96345
commit b09f993b26
6 changed files with 14 additions and 19 deletions

3
.gitignore vendored
View File

@ -31,3 +31,6 @@ proguard/
.idea
.DS_Store
/captures
# Affdex SDK package
app/libs/affdexsdk-*.aar

View File

@ -7,20 +7,13 @@
**AffdexMe** is an app that demonstrates the use of the Affectiva Android SDK. It uses the camera on your Android device to view, process and analyze live video of your face. Start the app and you will see your face on the screen and metrics describing your expressions. Tapping the screen will bring up a menu with options to display the Processed Frames Per Second metric, display facial tracking points, and control the rate at which frames are processed by the SDK.
Most of the methods in this file control the application's UI. Therefore, if you are just interested in learning how the Affectiva SDK works, you will find the calls relevant to the use of the SDK in the initializeCameraDetector(), startCamera(), stopCamera(), and onImageResults() methods.
This is an Android Studio project.
In order to use this project, you will need to:
- Obtain the Affectiva Android SDK (visit http://www.affectiva.com/solutions/apis-sdks/)
- Copy the contents of the SDK's assets folder into this project's app/src/main/assets folder
- Copy the contents of the SDK's libs folder into this project's app/libs folder
- Copy the armeabi-v7a folder (found in the SDK libs folder) into this project's app/jniLibs folder
To use this project, you will need to:
- Obtain a license for the Affectiva Android SDK. Evaluation licenses are available at no cost from http://www.affectiva.com/solutions/apis-sdks/
- Copy your license file to this project's app/src/main/assets/Affdex folder and rename to license.txt
- Build the project
- Build the project using Android Studio
- Run the app and smile!
See the comment section at the top of the MainActivity.java file for more information.
If you are interested in learning how the Affectiva SDK works, you will find the calls relevant to the use of the SDK in the initializeCameraDetector(), startCamera(), stopCamera(), and onImageResults() methods. See the comment section at the top of the MainActivity.java file for more information.
***

View File

@ -36,8 +36,8 @@ android {
}
dependencies {
//include the Affdex SDK jars and its dependencies
compile fileTree(dir: 'libs', include: '*.jar')
//include the Affdex SDK
compile('com.affectiva.android:affdexsdk:3.0.+')
//include project dependencies
compile 'com.android.support:support-v4:23.1.1'

View File

@ -1,6 +0,0 @@
Place the Affdex SDK JARs here.
Affdex-sdk.jar
Affdex-sdk-javadoc.jar
dagger-*.java
javax.inject-1.jar

View File

@ -6,6 +6,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.affectiva.affdexme">
<uses-permission android:name="android.permission.CAMERA" />
@ -22,6 +23,7 @@
android:required="false" />
<application
tools:replace="android:allowBackup,android:label"
android:name="com.affectiva.errorreporting.CustomApplication"
android:allowBackup="false"
android:hardwareAccelerated="true"

View File

@ -14,6 +14,9 @@ buildscript {
allprojects {
repositories {
maven {
url "http://maven.affectiva.com"
}
jcenter()
}
}