From 81964cb7086840c4f269267c0b20737c255dc374 Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 8 Apr 2017 18:53:29 +0200 Subject: android path + png logo --- android/AndroidManifest.xml | 79 ++++++++++++++++++++++++++++++++++++++++++++ logo.png | Bin 0 -> 29302 bytes path_functions.cpp | 2 ++ 3 files changed, 81 insertions(+) create mode 100644 android/AndroidManifest.xml create mode 100644 logo.png diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml new file mode 100644 index 00000000..73d5c2c4 --- /dev/null +++ b/android/AndroidManifest.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/logo.png b/logo.png new file mode 100644 index 00000000..f53fe30c Binary files /dev/null and b/logo.png differ diff --git a/path_functions.cpp b/path_functions.cpp index 8b9ff476..e9476d56 100644 --- a/path_functions.cpp +++ b/path_functions.cpp @@ -12,6 +12,8 @@ QString AOApplication::get_base_path() { #ifdef BASE_OVERRIDE return base_override; +#elif defined(ANDROID) + return "/storage/extSdCard/AO2/"; #else return QDir::currentPath() + "/base/"; #endif -- cgit