mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-03 23:16:38 +00:00
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.
This commit is contained in:
parent
0ede8b3796
commit
e17b52b501
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue