summaryrefslogtreecommitdiffstats
path: root/libraries/ganalytics/README.md
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2018-12-09 21:38:34 -0800
committerThomas Groman <tgroman@nuegia.net>2018-12-09 21:38:34 -0800
commitc799439516b1aa24b4de8920d0b2993c280cad72 (patch)
tree3387bcc863a582a63fbb7842ca3c24d06729c03a /libraries/ganalytics/README.md
parent6284f070c19053ae2bcf26dd9bccac2e0d35477f (diff)
downloadMultiMC-c799439516b1aa24b4de8920d0b2993c280cad72.tar
MultiMC-c799439516b1aa24b4de8920d0b2993c280cad72.tar.gz
MultiMC-c799439516b1aa24b4de8920d0b2993c280cad72.tar.lz
MultiMC-c799439516b1aa24b4de8920d0b2993c280cad72.tar.xz
MultiMC-c799439516b1aa24b4de8920d0b2993c280cad72.zip
Removed Ganalytics Library
Diffstat (limited to 'libraries/ganalytics/README.md')
-rw-r--r--libraries/ganalytics/README.md34
1 files changed, 0 insertions, 34 deletions
diff --git a/libraries/ganalytics/README.md b/libraries/ganalytics/README.md
deleted file mode 100644
index d7e1e33c..00000000
--- a/libraries/ganalytics/README.md
+++ /dev/null
@@ -1,34 +0,0 @@
-qt-google-analytics
-================
-
-Qt5 classes for providing google analytics usage in a Qt/QML application.
-
-## Building
-Include ```qt-google-analytics.pri``` in your .pro file.
-
-## Using
-Please make sure you have set your application information using ```QApplication::setApplicationName``` and ```QApplication::setApplicationVersion```.
-
-### In C++:
-```
-GAnalytics tracker("UA-my-id");
-tracker.sendScreenView("Main Screen");
-```
-
-### In QtQuick:
-Register the class on the C++ side using ```qmlRegisterType<GAnalytics>("analytics", 0, 1, "Tracker");```
-```
-Tracker {
- id: tracker
- trackingID: "UA-my-id"
-}
-
-[...]
-tracker.sendScreenView("Main Screen")
-```
-
-There is also an example application in the examples folder.
-
-## License
-Copyright (c) 2014-2016, University of Applied Sciences Augsburg.
-All rights reserved. Distributed under the terms and conditions of the BSD License. See separate LICENSE.txt.