I got this exception after I run the project using Instant Run:
java.lang.IllegalAccessError: Illegal class access: 'com.alla.kotlinexample.MainActivity$override' attempting to access 'kotlin.jvm.internal.DefaultConstructorMarker' (declaration of 'com.alla.kotlinexample.MainActivity$override' appears in /data/data/com.alla.kotlinexample/files/instant-run/dex-temp/reload0x0000.dex)
at com.alla.kotlinexample.MainActivity$override.onCreate(MainActivity.kt:21)
at com.alla.kotlinexample.MainActivity$override.access$dispatch(MainActivity.kt)
Here is the code:
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
setSupportActionBar(toolbar)
val persons: List<Person> = listOf<Person>(Person("Person1"), Person("Person2", 27))
fab.setOnClickListener { view ->
Snackbar.make(view, persons[1].name, Snackbar.LENGTH_LONG)
.setAction("Action", null).show()
}
tv_person_name.text = persons.maxBy { it.age ?: 34 }.toString()
}
data class Person(val name: String, val age: Int? = null)
}
And the error points on this line val persons: List<Person> = listOf<Person>(Person("Person1"), Person("Person2", 27))
Android Studio version is 3.0.1
Gradle: classpath 'com.android.tools.build:gradle:3.0.1'
Gradle version is 4.1
build.gradle:
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.alla.kotlinexample"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
root gradle:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.2.10'
//ext.kotlin_version = '1.1.51'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.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
}
?
from theBundle
argument? – Pennate'onCreate' overrides nothing
– Perianthimplementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
and I'm not using multidex. Check if changing those things helps, but if not post your root gradle and I can check if there's some difference there. – Pennatekotlin-stdlib-jre7
I cannot configure Korlin – Perianthtask clean(type: Delete) {
block from your code. Other than that is exactly the same thing that I have. – Pennate