Use .aar archive to install SDK
This commit is contained in:
parent
21edc96345
commit
b09f993b26
6 changed files with 14 additions and 19 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -31,3 +31,6 @@ proguard/
|
||||||
.idea
|
.idea
|
||||||
.DS_Store
|
.DS_Store
|
||||||
/captures
|
/captures
|
||||||
|
|
||||||
|
# Affdex SDK package
|
||||||
|
app/libs/affdexsdk-*.aar
|
||||||
|
|
15
README.md
15
README.md
|
@ -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.
|
**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.
|
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/
|
||||||
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
|
|
||||||
- Copy your license file to this project's app/src/main/assets/Affdex folder and rename to license.txt
|
- 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!
|
- 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.
|
||||||
|
|
||||||
***
|
***
|
||||||
|
|
||||||
|
|
|
@ -36,8 +36,8 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
//include the Affdex SDK jars and its dependencies
|
//include the Affdex SDK
|
||||||
compile fileTree(dir: 'libs', include: '*.jar')
|
compile('com.affectiva.android:affdexsdk:3.0.+')
|
||||||
|
|
||||||
//include project dependencies
|
//include project dependencies
|
||||||
compile 'com.android.support:support-v4:23.1.1'
|
compile 'com.android.support:support-v4:23.1.1'
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
Place the Affdex SDK JARs here.
|
|
||||||
|
|
||||||
Affdex-sdk.jar
|
|
||||||
Affdex-sdk-javadoc.jar
|
|
||||||
dagger-*.java
|
|
||||||
javax.inject-1.jar
|
|
|
@ -6,6 +6,7 @@
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
package="com.affectiva.affdexme">
|
package="com.affectiva.affdexme">
|
||||||
|
|
||||||
<uses-permission android:name="android.permission.CAMERA" />
|
<uses-permission android:name="android.permission.CAMERA" />
|
||||||
|
@ -22,6 +23,7 @@
|
||||||
android:required="false" />
|
android:required="false" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
|
tools:replace="android:allowBackup,android:label"
|
||||||
android:name="com.affectiva.errorreporting.CustomApplication"
|
android:name="com.affectiva.errorreporting.CustomApplication"
|
||||||
android:allowBackup="false"
|
android:allowBackup="false"
|
||||||
android:hardwareAccelerated="true"
|
android:hardwareAccelerated="true"
|
||||||
|
|
|
@ -14,6 +14,9 @@ buildscript {
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
repositories {
|
||||||
|
maven {
|
||||||
|
url "http://maven.affectiva.com"
|
||||||
|
}
|
||||||
jcenter()
|
jcenter()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue