Add Android DALi demo build. 31/223431/11
authorAnton Obzhirov <a.obzhirov@samsung.com>
Wed, 29 Jan 2020 18:02:54 +0000 (18:02 +0000)
committerAnton Obzhirov <a.obzhirov@samsung.com>
Thu, 13 Feb 2020 16:53:10 +0000 (16:53 +0000)
commitd2faadf5269d5ffa65175b35266af3bc7be3ece9
treead73fefda1c338a25f15d46a9f4ffe68cfaa42b3
parenteccc3986aca74836ec069ef973381af9ba11df28
Add Android DALi demo build.

Generates DALi examples shared objects and Android DALi launcher application.
Android DALi application apk then can be installed on supported Android device.

Change-Id: I2f87030feab33aa5c4c944323eb0ca0c042db6bd
80 files changed:
README.md
build/android/.gitignore [new file with mode: 0644]
build/android/app/.gitignore [new file with mode: 0644]
build/android/app/build.gradle [new file with mode: 0644]
build/android/app/src/main/AndroidManifest.xml [new file with mode: 0644]
build/android/app/src/main/cpp/CMakeLists.txt [new file with mode: 0644]
build/android/app/src/main/cpp/main.cpp [new file with mode: 0644]
build/android/app/src/main/java/com/sec/dalidemo/DaliDemoApplication.java [new file with mode: 0644]
build/android/app/src/main/java/com/sec/dalidemo/DaliDemoNativeActivity.java [new file with mode: 0644]
build/android/app/src/main/java/com/sec/dalidemo/DaliExamplesNativeActivity.java [new file with mode: 0644]
build/android/app/src/main/java/com/sec/dalidemo/DaliTestsNativeActivity.java [new file with mode: 0644]
build/android/app/src/main/res/mipmap-hdpi/dali_examples.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-hdpi/dali_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-hdpi/dali_tests.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-hdpi/ic_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-mdpi/dali_examples.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-mdpi/dali_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-mdpi/dali_tests.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-mdpi/ic_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xhdpi/dali_examples.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xhdpi/dali_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xhdpi/dali_tests.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xxhdpi/dali_examples.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xxhdpi/dali_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xxhdpi/dali_tests.png [new file with mode: 0644]
build/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png [new file with mode: 0644]
build/android/app/src/main/res/values/strings.xml [new file with mode: 0644]
build/android/build.gradle [new file with mode: 0644]
build/android/build.sh [new file with mode: 0755]
build/android/dali/.gitignore [new file with mode: 0644]
build/android/dali/build.sh [new file with mode: 0755]
build/android/dali/build_adaptor.sh [new file with mode: 0755]
build/android/dali/build_core.sh [new file with mode: 0755]
build/android/dali/build_demo.sh [new file with mode: 0755]
build/android/dali/build_toolkit.sh [new file with mode: 0755]
build/android/dali/env.sh [new file with mode: 0755]
build/android/key.jks [new file with mode: 0644]
build/android/settings.gradle [new file with mode: 0644]
build/tizen/CMakeLists.txt
build/tizen/demo/CMakeLists.txt
build/tizen/examples-reel/CMakeLists.txt
build/tizen/examples/CMakeLists.txt
build/tizen/tests-reel/CMakeLists.txt
demo/dali-demo.cpp
examples-reel/dali-examples-reel.cpp
examples/animated-gradient-call-active/animated-gradient-call-active.cpp
examples/animated-gradient-card-active/animated-gradient-card-active.cpp
examples/bezier-curve/bezier-curve-example.cpp
examples/bloom-view/bloom-view-example.cpp
examples/frame-callback/frame-callback.cpp
examples/gestures/gesture-example.cpp
examples/page-turn-view/page-turn-view-example.cpp
examples/pre-render-callback/pre-render-callback-example.cpp
examples/refraction-effect/refraction-effect-example.cpp
examples/rendering-basic-pbr/ktx-loader.cpp
examples/simple-bitmap-font-text-label/simple-text-label-example.cpp
examples/simple-text-field/simple-text-field.cpp
examples/simple-text-label/simple-text-label-example.cpp
examples/simple-text-renderer/simple-text-renderer-example.cpp
examples/simple-text-visual/simple-text-visual-example.cpp
packaging/com.samsung.dali-demo.spec
resources/style/android/animated-gradient-call-active-style.json [new file with mode: 0644]
resources/style/android/base-theme.json [new file with mode: 0644]
resources/style/android/basic-light-theme.json [new file with mode: 0644]
resources/style/android/contact-cards-example-theme.json [new file with mode: 0644]
resources/style/android/progress-bar-example-theme.json [new file with mode: 0644]
resources/style/android/simple-example-theme.json [new file with mode: 0644]
resources/style/android/style-example-theme-one.json [new file with mode: 0644]
resources/style/android/style-example-theme-three.json [new file with mode: 0644]
resources/style/android/style-example-theme-two.json [new file with mode: 0644]
resources/style/android/text-editor-example-theme.json [new file with mode: 0644]
resources/style/android/tooltip-example-theme.json [new file with mode: 0644]
shared/dali-demo-strings.h
shared/dali-table-view.cpp
shared/execute-process-android.cpp [new file with mode: 0644]
shared/execute-process-unix.cpp
shared/execute-process-win.cpp
shared/execute-process.h
tests-reel/dali-tests-reel.cpp