Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
@Gianluca-Bernardi I have default as well. Not sure how you got full before. Good to know you solved the issue.
@Dmitriano Probably I had some wrong build configuration, after some experimentation and switching to Java11 it become about 1MB.
to enable JetPack/AndroidX: add android.useAndroidX=true to file gradle.properties
add dependency to required library (file build.gradle): implementation 'androidx.core:core:1.7.0'
@Kyeiv said in Could not resolve all artifacts for configuration ':classpath':
OpenJDK 9.0.4
You need to use Java 8, see here.
Versions higher than 8 might cause issues for the Android SDK command-line tools.
I had the same issue. In my case, it was a wrong run configuration. (left pane) "Projects" -> "Build & Run" -> "Run" -> "Run" -> "Run configuration:" Make sure the you have selected the right configuration.
Qt-project-run-config.png
@TripleF Awesome, this works! Thank you