Lemuroid
Lemuroid copied to clipboard
error can not run
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.
Same here, can anyone help?
Same here, can anyone help?
nobody
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" />