mirror of https://github.com/buggins/dlangui.git
update readmes
This commit is contained in:
parent
587b5f713e
commit
6d2e66b7dc
|
@ -28,7 +28,7 @@ WARNING: dependencies in dlangui/deps now are git submodules (if you previously
|
||||||
|
|
||||||
Main features:
|
Main features:
|
||||||
|
|
||||||
* Crossplatform (Win32, OSX, and Linux are supported in current version); can use SDL2 as a backend.
|
* Crossplatform (Win32, OSX, Linux and Android are supported in current version)
|
||||||
* Mostly inspired by Android UI API (layouts, styles, two phase layout, ...)
|
* Mostly inspired by Android UI API (layouts, styles, two phase layout, ...)
|
||||||
* Supports highly customizable UI themes and styles
|
* Supports highly customizable UI themes and styles
|
||||||
* Supports internationalization
|
* Supports internationalization
|
||||||
|
|
|
@ -30,7 +30,22 @@ export LDC=$HOME/ldc2-android-arm-0.17.0-alpha2-linux-x86_64
|
||||||
export NDK_ARCH=x86_64
|
export NDK_ARCH=x86_64
|
||||||
|
|
||||||
|
|
||||||
Use LDC cross compiler for armv7a build according instructions
|
Use LDC cross compiler for armv7a build according instructions
|
||||||
|
|
||||||
https://wiki.dlang.org/Build_LDC_for_Android#Build_a_sample_OpenGL_Android_app_ported_to_D
|
https://wiki.dlang.org/Build_LDC_for_Android#Build_a_sample_OpenGL_Android_app_ported_to_D
|
||||||
|
|
||||||
|
|
||||||
|
Building
|
||||||
|
========
|
||||||
|
|
||||||
|
Run ./build_apk.sh
|
||||||
|
|
||||||
|
bin/NativeActivity-debug.apk
|
||||||
|
|
||||||
|
|
||||||
|
Deploy APK on device
|
||||||
|
====================
|
||||||
|
|
||||||
|
Run ./deploy_apk.sh
|
||||||
|
|
||||||
|
It will run `adb install bin/NativeActivity-debug.apk`
|
||||||
|
|
2
dub.json
2
dub.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "dlangui",
|
"name": "dlangui",
|
||||||
"description": "Cross platform GUI for D. Layouts, styles, themes, unicode, i18n, OpenGL, widget set.",
|
"description": "Cross platform GUI for D. Layouts, styles, themes, unicode, i18n, OpenGL, widgets. Android support.",
|
||||||
"homepage": "https://github.com/buggins/dlangui",
|
"homepage": "https://github.com/buggins/dlangui",
|
||||||
"license": "Boost",
|
"license": "Boost",
|
||||||
"authors": ["Vadim Lopatin"],
|
"authors": ["Vadim Lopatin"],
|
||||||
|
|
Loading…
Reference in New Issue