diff options
author | Olli Vuolteenaho <[email protected]> | 2024-07-29 14:53:33 +0300 |
---|---|---|
committer | Olli Vuolteenaho <[email protected]> | 2024-08-01 08:31:40 +0300 |
commit | 6699b6bfd1e508e654ec93fb41690b0393295221 (patch) | |
tree | 2340f2aa260768b188c262f408274737db5f05b3 | |
parent | 8c9381dfba7ca097f64249e10c1bc3db2e41d4a5 (diff) |
Improve Service Embedding manual test
- There is no need for QtGP to be a dependency, only a plugin
- Fix README.md path use as per QtGP changes
Pick-to: 6.8
Change-Id: Ic3fe358d80f75ebe5c90d003e192c9ac11eb55b2
Reviewed-by: Tinja Paavoseppä <[email protected]>
3 files changed, 1 insertions, 5 deletions
diff --git a/tests/manual/platforms/android/qtquickview_java/README.md b/tests/manual/platforms/android/qtquickview_java/README.md index 5199430bc8..3640c7d957 100644 --- a/tests/manual/platforms/android/qtquickview_java/README.md +++ b/tests/manual/platforms/android/qtquickview_java/README.md @@ -31,5 +31,5 @@ The app-level build.gradle already includes and configures the plugin, but it re 2) Add the following information to the file: ``` qtKitDir=/path/to/your/android/kit/ - qtPath=/path/to/your/Qt/installation // e.g. /etc/Qt/ + qtPath=/path/to/your/Qt/installation // e.g. /etc/Qt/6.8.0 ``` diff --git a/tests/manual/platforms/android/qtquickview_java/app/build.gradle b/tests/manual/platforms/android/qtquickview_java/app/build.gradle index 6bf8be954e..211fdd0584 100644 --- a/tests/manual/platforms/android/qtquickview_java/app/build.gradle +++ b/tests/manual/platforms/android/qtquickview_java/app/build.gradle @@ -74,7 +74,6 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' - implementation "org.qtproject.qt.gradleplugin:QtGradlePlugin:0.1-SNAPSHOT" implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar']) testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' diff --git a/tests/manual/platforms/android/qtquickview_java/settings.gradle b/tests/manual/platforms/android/qtquickview_java/settings.gradle index 5db9048968..76a9a990cc 100644 --- a/tests/manual/platforms/android/qtquickview_java/settings.gradle +++ b/tests/manual/platforms/android/qtquickview_java/settings.gradle @@ -13,9 +13,6 @@ dependencyResolutionManagement { repositories { google() mavenCentral() - maven { - url "https://android.qt.io/maven/snapshots" - } } } |