summaryrefslogtreecommitdiff
path: root/playback
diff options
context:
space:
mode:
authorArun Raghavan <arun@arunraghavan.net>2017-01-06 19:00:17 +0530
committerArun Raghavan <arun@arunraghavan.net>2017-01-06 19:00:17 +0530
commite17b52b5011c1d9e0af771b531399f44302291ce (patch)
tree8a708eaacffce988837b9019eb52ed7468909e17 /playback
parent0ede8b3796ae35cf786fab0a02aea32ae438313a (diff)
playback/player/android: Fix assets directory
Needed with GStreamer <= 1.10 and newer Android Studio so that we correctly place the assets with respect to the rest of the code.
Diffstat (limited to 'playback')
-rw-r--r--playback/player/android/app/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/playback/player/android/app/build.gradle b/playback/player/android/app/build.gradle
index 68bdd2d..961c5fb 100644
--- a/playback/player/android/app/build.gradle
+++ b/playback/player/android/app/build.gradle
@@ -21,7 +21,7 @@ android {
else
throw new GradleException('"gstAndroidRoot" must be defined in your gradle.properties to the top level directory of the unpacked universal GStreamer Android binaries')
- arguments "NDK_APPLICATION_MK=src/main/jni/Application.mk", "GSTREAMER_JAVA_SRC_DIR=src/main/java", "GSTREAMER_ROOT_ANDROID=$gstRoot"
+ arguments "NDK_APPLICATION_MK=src/main/jni/Application.mk", "GSTREAMER_JAVA_SRC_DIR=src/main/java", "GSTREAMER_ROOT_ANDROID=$gstRoot", "GSTREAMER_ASSETS_DIR=src/main/assets"
targets "gstplayer", "gstreamer_android"