Android: Remove and rephrase comments in examples build.gradle files

Remove optional qtKitDir variable and explanation from examples
build.gradle files, as it is already mentioned in documentation.

Rephrase "Relative for pre-installed (Installer or MaintenanceTool)
installations." comment in examples build.gradle files.

Task-number: QTTA-111
Pick-to: 6.8
Change-Id: Iee2eda91a994ddab061d636c739a480bd7a946f5
Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
This commit is contained in:
Konsta Alajärvi 2024-08-20 15:13:36 +03:00
parent d53e87b147
commit ba7223823f
4 changed files with 4 additions and 10 deletions

View File

@ -4,11 +4,9 @@ plugins {
} }
QtBuild { QtBuild {
// Relative for pre-installed (Installer or MaintenanceTool) installations. // Relative for Qt (Installer or MaintenanceTool) installations.
qtPath = file('../../../../../../../6.8.0') qtPath = file('../../../../../../../6.8.0')
projectPath = file('../../qtabstractitemmodel') projectPath = file('../../qtabstractitemmodel')
// Optional. Commented builds multi-abi. Define for a single ABI build.
// qtKitDir = file('home/<your-username>/<your-Qt-builds>/<your-Qt-kit>')
} }
android { android {

View File

@ -6,7 +6,7 @@ plugins {
//! [build.gradle QtBuild config] //! [build.gradle QtBuild config]
QtBuild { QtBuild {
// Relative for pre-installed (Installer or MaintenanceTool) installations. // Relative for Qt (Installer or MaintenanceTool) installations.
qtPath = file("../../../../../../../6.8.0") qtPath = file("../../../../../../../6.8.0")
projectPath = file("../../qtabstractlistmodel") projectPath = file("../../qtabstractlistmodel")
} }

View File

@ -4,11 +4,9 @@ plugins {
} }
QtBuild { QtBuild {
// Relative for pre-installed (Installer or MaintenanceTool) installations. // Relative for Qt (Installer or MaintenanceTool) installations.
qtPath = file('../../../../../../6.8.0') qtPath = file('../../../../../../6.8.0')
projectPath = file('../../qtquickview') projectPath = file('../../qtquickview')
// Optional. Commented builds multi-abi. Define for a single ABI build.
// qtKitDir = file('home/<your-username>/<your-Qt-builds>/<your-Qt-kit>')
} }
android { android {

View File

@ -5,11 +5,9 @@ plugins {
} }
QtBuild { QtBuild {
// Relative for pre-installed (Installer or MaintenanceTool) installations. // Relative for Qt (Installer or MaintenanceTool) installations.
qtPath = file("../../../../../../6.8.0") qtPath = file("../../../../../../6.8.0")
projectPath = file("../../qtquickview") projectPath = file("../../qtquickview")
// Optional. Commented builds multi-abi. Define for a single ABI build.
// qtKitDir = file("home/<your-username>/<your-Qt-builds>/<your-Qt-kit>")
} }
android { android {