Lemuroid icon indicating copy to clipboard operation
Lemuroid copied to clipboard

error can not run

Open zz005 opened this issue 3 years ago • 2 comments

Could not determine the dependencies of task ':lemuroid-app:mergeFreeBundleDebugAssets'.

Could not resolve all task dependencies for configuration ':lemuroid-app:freeBundleDebugRuntimeClasspath'. Could not resolve project :bundled-cores. Required by: project :lemuroid-app > No matching configuration of project :bundled-cores was found. The consumer was configured to find a runtime of a component, as well as attribute 'com.android.build.api.attributes.BuildTypeAttr' with value 'debug', attribute 'opensource' with value 'free', attribute 'cores' with value 'bundle', attribute 'org.jetbrains.kotlin.platform.type' with value 'androidJvm' but: - Configuration 'checkstyle': - Other compatible attributes: - Doesn't say anything about com.android.build.api.attributes.BuildTypeAttr (required 'debug') - Doesn't say anything about cores (required 'bundle') - Doesn't say anything about opensource (required 'free') - Doesn't say anything about its usage (required a runtime) - Doesn't say anything about org.jetbrains.kotlin.platform.type (required 'androidJvm')

  • Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

zz005 avatar Nov 03 '21 02:11 zz005

Same here, can anyone help?

glaucopgomes avatar Jul 31 '22 11:07 glaucopgomes

Same here, can anyone help?

nobody

zz005 avatar Aug 04 '22 12:08 zz005

If you downloaded the entire repository as a zip file, you would need to download the lemuroid-cores folder separately and put them in the working directory.

Another error I had was Error 3 activity class tv intent does not exist. For that I simply commented out the TV activity in AndroidManifest.xml, and everything runs fine with my android emulator now.

      <!-- Leanback activities -->
<!--        <activity-->
<!--            android:name=".app.tv.main.MainTVActivity"-->
<!--            android:exported="true"-->
<!--            android:theme="@style/LemuroidLeanbackTheme">-->
<!--            <intent-filter>-->
<!--                <action android:name="android.intent.action.MAIN" />-->
<!--                <category android:name="android.intent.category.LEANBACK_LAUNCHER" />-->
<!--            </intent-filter>-->
<!--            <intent-filter>-->
<!--                <action android:name="android.intent.action.VIEW" />-->
<!--                <category android:name="android.intent.category.DEFAULT" />-->
<!--                <data-->
<!--                    android:host="${applicationId}"-->
<!--                    android:pathPattern="/open-leanback"-->
<!--                    android:scheme="lemuroid" />-->
<!--            </intent-filter>-->
<!--        </activity>-->
        <activity
            android:name=".app.tv.settings.TVSettingsActivity"
            android:theme="@style/LemuroidLeanbackPreferencesTheme" />

mathewthe2 avatar Mar 13 '23 15:03 mathewthe2