From ae9a689d4b6909eae03d0a1dda05ad57c58c4920 Mon Sep 17 00:00:00 2001 From: Isaac Sh <424675+Iktwo@users.noreply.github.com> Date: Tue, 23 Aug 2016 19:47:55 -0700 Subject: [PATCH] Update readme add Firebase stub config file --- README.md | 8 +++-- src/android/AndroidManifest.xml | 60 ++++++++++++++++---------------- src/android/google-services.json | 42 ++++++++++++++++++++++ src/android/gradle.properties | 2 +- src/android/local.properties | 2 +- 5 files changed, 80 insertions(+), 34 deletions(-) create mode 100644 src/android/google-services.json diff --git a/README.md b/README.md index e10eeb2..8a03305 100755 --- a/README.md +++ b/README.md @@ -15,12 +15,16 @@ Requires Qt >= 5.5 #TODO * Add wallpaper picker. -* Support themes. +* Add support for themes. * Add intro screen to configure theme. * Add home screens and favorites bar. * Support icon themes. * Investigate if it is possible to integrate widgets. +# Anaylitics + +This project uses Firebase Analytics to collect usage data. + #How to compile -There are no external dependencies, if you have Qt >= 5.5 for Android configured just open the project with QtCreator or follow this instructions if you don't want to use QtCreator http://doc.qt.io/qt-5/deployment-android.html \ No newline at end of file +In order to build this project you need to use Gradle. There are no Qt/QML dependencies. If you have Qt >= 5.5 for Android open the project with QtCreator or follow this instructions if you don't want to use QtCreator http://doc.qt.io/qt-5/deployment-android.html passing --gradle to the androiddeployqt tool. diff --git a/src/android/AndroidManifest.xml b/src/android/AndroidManifest.xml index d2c4843..fb3839b 100755 --- a/src/android/AndroidManifest.xml +++ b/src/android/AndroidManifest.xml @@ -1,9 +1,9 @@ + package="com.iktwo.qutelauncher" + android:installLocation="auto" + android:versionCode="4" + android:versionName="0.04"> + - + - - + + + android:value="qute-launcher" /> + android:resource="@array/qt_sources" /> + android:value="default" /> + android:resource="@array/qt_libs" /> + android:resource="@array/bundled_libs" /> + android:value="-- %%BUNDLE_LOCAL_QT_LIBS%% --" /> + android:resource="@array/bundled_in_lib" /> + android:resource="@array/bundled_in_assets" /> + android:value="-- %%USE_LOCAL_QT_LIBS%% --" /> + android:value="/data/local/tmp/qt/" /> + android:value="-- %%INSERT_LOCAL_LIBS%% --" /> + android:value="-- %%INSERT_LOCAL_JARS%% --" /> + android:value="-- %%INSERT_INIT_CLASSES%% --" /> + android:value="@string/ministro_not_found_msg" /> + android:value="@string/ministro_needed_msg" /> + android:value="@string/fatal_error_msg" /> @@ -85,10 +86,9 @@ - + - + @@ -96,14 +96,14 @@ + android:targetSdkVersion="23" /> + android:smallScreens="true" /> - - + + diff --git a/src/android/google-services.json b/src/android/google-services.json new file mode 100644 index 0000000..79c0446 --- /dev/null +++ b/src/android/google-services.json @@ -0,0 +1,42 @@ +{ + "project_info": { + "project_number": "", + "firebase_url": "https://qutelauncher.firebaseio.com", + "project_id": "qutelauncher", + "storage_bucket": "qutelauncher.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "", + "android_client_info": { + "package_name": "com.iktwo.qutelauncher" + } + }, + "oauth_client": [ + ], + "api_key": [ + { + "current_key": "" + } + ], + "services": { + "analytics_service": { + "status": 1 + }, + "appinvite_service": { + "status": 2, + "other_platform_oauth_client": [ + { + "client_type": 3 + } + ] + }, + "ads_service": { + "status": 2 + } + } + } + ], + "configuration_version": "1" +} diff --git a/src/android/gradle.properties b/src/android/gradle.properties index 284ba34..1e4b174 100644 --- a/src/android/gradle.properties +++ b/src/android/gradle.properties @@ -6,4 +6,4 @@ androidBuildToolsVersion=24.0.1 androidCompileSdkVersion=24 buildDir=.build -qt5AndroidDir=/Users/isaacsh/Qt/5.6/android_armv7/src/android/java +qt5AndroidDir=/home/iktwo/Qt/5.7/android_armv7/src/android/java diff --git a/src/android/local.properties b/src/android/local.properties index 6125cea..f73784e 100644 --- a/src/android/local.properties +++ b/src/android/local.properties @@ -3,4 +3,4 @@ # This file must *NOT* be checked into Version Control Systems, # as it contains information specific to your local configuration. -sdk.dir=/Users/isaacsh/Library/Android/sdk +sdk.dir=/opt/android-sdk