scheibler / WalkersGuide-Android

GNU General Public License v3.0
4 stars 2 forks source link

android-rocket-launcher cannot be resolved during build #7

Open fcnjd opened 1 week ago

fcnjd commented 1 week ago

When trying to build the project using gradle, the following error occurs: A problem occurred configuring root project 'WalkersGuide'.

Could not resolve all files for configuration ':classpath'. Could not find com.cesarferreira:android-rocket-launcher:1.0.0. Searched in the following locations:

I ran the command ./gradlew build. My environment: julian@server1:~/src/WalkersGuide-Android$ ./gradlew --version


Gradle 8.3

Build time: 2023-08-17 07:06:47 UTC Revision: 8afbf24b469158b714b36e84c6f4d4976c86fcd5

Kotlin: 1.9.0 Groovy: 3.0.17 Ant: Apache Ant(TM) version 1.10.13 compiled on January 4 2023 JVM: 17.0.12 (Debian 17.0.12+7-Debian-2deb12u1) OS: Linux 6.1.0-25-cloud-amd64 amd64

scheibler commented 1 week ago

That's a helper to open the app directly from the command line[1]. It just adds a gradle task. It should be resolved by the jcenter repository which provides older packages. But it seems that this no longer works.

If you don't need it just comment out the respective line:

dependencies {
    // classpath 'com.cesarferreira:android-rocket-launcher:1.0.0'
}

in the top-level build.gradle file.

1: https://github.com/cesarferreira/android-rocket-launcher