From 822acd3b18630d733bd34a1535d5fa1dbd8318be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 28 Feb 2014 14:21:37 +0100 Subject: [PATCH] Platform: minor documentation updates for AndroidApplication. I'm still learning the way around this. --- src/Magnum/Platform/AndroidApplication.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/Magnum/Platform/AndroidApplication.h b/src/Magnum/Platform/AndroidApplication.h index 31ded2747..e012630f1 100644 --- a/src/Magnum/Platform/AndroidApplication.h +++ b/src/Magnum/Platform/AndroidApplication.h @@ -141,7 +141,7 @@ The application needs at least the `AndroidManifest.xml` with the following contents: - + @@ -155,9 +155,11 @@ contents: -Modify `android:label` to your liking and replace `{{application}}` with name -of the binary file (without extension). If you plan to use OpenGL ES, set -`android:glEsVersion` to `0x00030000`. +Modify `android:label` to your liking, set unique `package` name and replace +`{{application}}` with name of the binary file (without extension). If you plan +to use OpenGL ES, set `android:glEsVersion` to `0x00030000`. The resulting APK +file will be named `NativeActivity.apk` by default, you can change that by +editing first line of the generated `build.xml` file. ## Redirecting output to Android log buffer @@ -291,7 +293,7 @@ class AndroidApplication::Configuration { * * @note This function does nothing and is included only for * compatibility with other toolkits. You need to set the title - * separately in the XML file. + * separately in the `AndroidManifest.xml` file. */ template Configuration& setTitle(const T&) { return *this; }