From e118a4890e712642db95388df184d05e46f8309c Mon Sep 17 00:00:00 2001 From: FalsinSoft Date: Wed, 30 Jan 2019 20:24:28 +0100 Subject: [PATCH] Update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a5d109..b8bb261 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,10 @@ Allow monitoring the battery level and state Allow monitoring the strength of the phone signal [Documentation](https://falsinsoft.blogspot.com/2019/01/qtandroidtools-signalstrength.html) +**AdMobBanner** +Allow to show AdMob banner inside QML app +[Documentation](https://falsinsoft.blogspot.com/2019/01/qtandroidtools-admobbanner.html) + # How To Integrate - Place QtAndroidTools lib to your project dir and include it in .pro file ``` @@ -34,4 +38,9 @@ include(QtAndroidTools/QtAndroidTools.pri) ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android ``` -**IMPORTANT NOTE:** The library .pri check if java sources are already present into android/src folder, if no copy the library files. In case you are updating the library remember to remove these java files to be sure having always the new java versions code. \ No newline at end of file +- In the main() body insert the call for initialize the library +``` +QtAndroidTools::InitializeQmlTools(); +``` + +**IMPORTANT NOTE:** The library .pri check if java sources are already present into android/src folder, if no copy the library files. In case you are updating the library remember to remove these java files to be sure having always the new java versions code.