У меня есть библиотека Android, которую я вызываю из Unity (но это не должно быть важно). У меня есть этот код:
class UnityInterop {
companion object {
@JvmStatic
fun initialize() = initInternal()
private fun initInternal(): Boolean {
executePluginFunction {
// do some stuff here...
}
return false
}
fun executePluginFunction(func: () -> Unit) {
try {
UnityPlayer.currentActivity.runOnUiThread {
func()
}
} catch (e: Exception) {
}
}
}
}
Когда я запускаю его, я получаю эту ошибку, которая выглядит так, как будто говорится, что класс, сгенерированный для лямбды, отсутствует:
06-04 20:07:09.767 5469 5493 E Unity : java.lang.NoClassDefFoundError: Failed resolution of: Lcom/onehand/nativekeyboard/UnityInterop$Companion$initInternal$1;
06-04 20:07:09.767 5469 5493 E Unity : at com.onehand.nativekeyboard.UnityInterop$Companion.initInternal(UnityInterop.kt:87)
06-04 20:07:09.767 5469 5493 E Unity : at com.onehand.nativekeyboard.UnityInterop$Companion.initialize(UnityInterop.kt:81)
06-04 20:07:09.767 5469 5493 E Unity : at com.onehand.nativekeyboard.UnityInterop.initialize(Unknown Source:2)
06-04 20:07:09.767 5469 5493 E Unity : at com.unity3d.player.UnityPlayer.nativeRender(Native Method)
06-04 20:07:09.767 5469 5493 E Unity : at com.unity3d.player.UnityPlayer.c(Unknown Source:0)
06-04 20:07:09.767 5469 5493 E Unity : at com.unity3d.player.UnityPlayer$e$1.handleMessage(Unknown Source:88)
06-04 20:07:09.767 5469 5493 E Unity : at android.os.Handler.dispatchMessage(Handler.java:104)
06-04 20:07:09.767 5469 5493 E Unity : at android.os.Looper.loop(Looper.java:166)
06-04 20:07:09.767 5469 5493 E Unity : at com.unity3d.player.UnityPlayer$e.run(Unknown Source:20)
06-04 20:07:09.767 5469 5493 E Unity : Caused by: java.lang.ClassNotFoundException: com.onehand.nativekeyboard.UnityInterop$Companion$initInternal$1
Итак, я декомпилировал банку изнутри аара, и, насколько мне может судить jd-gui, лямбда действительно не существует. Что тут происходит? Вот сценарии Gradle, на всякий случай:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.31'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compileOnly fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
}
РЕДАКТИРОВАТЬ: Я искал не в том месте. Классы все там внутри банки. Я до сих пор не знаю, почему они не загружаются, хотя. И jd-gui не смог показать какой-либо источник для класса, который, по мнению Android, отсутствует ...