2024-04-22 10:50:41,638 [15552502] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 10:50:53,525 [15564389] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 10:50:53,527 [15564391] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 10:50:53,528 [15564392] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 10:50:53,528 [15564392] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 10:51:32,384 [15603248] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0 " suffix: "\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/PrimitiveTypes.kt" content: "/**\n * File: PrimitiveTypes.kt\n * Author: Anouar Doukkali\n * Created on: 4/21/2024 11:53 AM\n * Description: This file contains examples of primitive types in Kotlin\n * Since: @version\n */\npackage kotlinlang.dataTypes\n\nimport logger\n\ninternal class IntType {\n fun intMAXValue() = Int.MAX_VALUE\n fun intMINValue() = Int.MIN_VALUE\n}\n\n// Int\n@Suppress(\"unused\")\nprivate fun integer() {\n val i = 10 // Int by default\n val million = 1_000_000 // For readability, Kotlin allows underscores within numerical values.\n val intMAX = Int.MAX_VALUE // output : 2147483647\n val intMIN = Int.MIN_VALUE // output : -2147483648\n logger.debug { \"i=$i is of type INT, the max value is: $intMAX, the min value is: $intMIN\" }\n logger.debug { \"ex : forcing Long calculation to avoid int overflow : ${0L + intMAX + intMAX}\" }\n}\n\n// Long\n@Suppress(\"unused\")\nprivate fun longs() {\n val l = 5L // can be explicit by setting the type :Long or adding \'L\'\n val longMAX = Long.MAX_VALUE // output : 9223372036854775807\n val longMIN = Long.MIN_VALUE // output : -9223372036854775808\n logger.debug { \"l=$l is of type LONG, the max value is: $longMAX, the min value is: $longMIN\" }\n}\n\n// Float\n@Suppress(\"unused\")\nprivate fun floats() {\n val f = .5f // can be explicit by setting the type :Float or adding \'f\'\n val floatMAX = Float.MAX_VALUE // output : 3.4028235E38\n val floatMIN = Float.MIN_VALUE // output : 1.4E-45\n logger.debug { \"f=$f is of type FLOAT, the max value is: $floatMAX, the min value is: $floatMIN\" }\n}\n\n// Double\n@Suppress(\"unused\")\nprivate fun doubles() {\n val d = .5 // Double by default\n val doubleMAX = Double.MAX_VALUE // output : 1.7976931348623157E308\n val doubleMIN = Double.MIN_VALUE // output : 4.9E-324\n logger.debug { \"d=$d is of type DOUBLE, the max value is: $doubleMAX, the min value is: $doubleMIN\" }\n}\n\n// there is also unsigned types , those are positive and are more larger since they don\'t contain negative values\n@Suppress(\"unused\")\nprivate fun unsignedInt() {\n val u: UInt = 5u // Unsigned by default\n val unsignedMAX = UInt.MAX_VALUE // output : 4294967295\n val unsignedMIN = UInt.MIN_VALUE // output : 0\n logger.debug { \"u=$u is of type UNSIGNED INT, the max value is: $unsignedMAX, the min value is: $unsignedMIN\" }\n}\n\n@Suppress(\"unused\")\nprivate fun additionResult() {\n // when adding multiple primitives, the result is in the higher order\n logger.debug { 0.5f + 0.10 } // output : 0.6 Double\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/ShortsTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\n\nclass ShortsTest : DescribeSpec({\n describe(\"a Short type\") {\n val shortType = ShortType()\n \n it(\"should return the correct maximum value of a short\") {\n val result = shortType.shortMAXValue()\n result shouldBe 32767.toShort()\n }\n \n it(\"should return the correct minimum value of a short\") {\n val result = shortType.shortMINValue()\n result shouldBe (-32768).toShort()\n }\n \n }\n \n})\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/BytesTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\nimport io.kotest.matchers.types.shouldBeTypeOf\n\ninternal class BytesTest : DescribeSpec({\n describe(\"a Byte type\") {\n val byte = Bytes()\n \n it(\"return the correct maximum value of a Byte\") {\n val result = byte.byteMAXValue()\n result shouldBe 127.toByte()\n }\n \n it(\"return the correct minimum value of a Byte\") {\n val result = byte.byteMINValue()\n result shouldBe (-128).toByte()\n }\n \n it(\"return an Int when added to another Byte\") {\n val result = byte.addBytes(5, 10)\n result.shouldBeTypeOf()\n }\n it(\"return an Int when added to another Short\") {\n val result = byte.addToShort(5, 10)\n result.shouldBeTypeOf()\n }\n }\n})\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 10:51:32,577 [15603441] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0 *" suffix: "\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/PrimitiveTypes.kt" content: "/**\n * File: PrimitiveTypes.kt\n * Author: Anouar Doukkali\n * Created on: 4/21/2024 11:53 AM\n * Description: This file contains examples of primitive types in Kotlin\n * Since: @version\n */\npackage kotlinlang.dataTypes\n\nimport logger\n\ninternal class IntType {\n fun intMAXValue() = Int.MAX_VALUE\n fun intMINValue() = Int.MIN_VALUE\n}\n\n// Int\n@Suppress(\"unused\")\nprivate fun integer() {\n val i = 10 // Int by default\n val million = 1_000_000 // For readability, Kotlin allows underscores within numerical values.\n val intMAX = Int.MAX_VALUE // output : 2147483647\n val intMIN = Int.MIN_VALUE // output : -2147483648\n logger.debug { \"i=$i is of type INT, the max value is: $intMAX, the min value is: $intMIN\" }\n logger.debug { \"ex : forcing Long calculation to avoid int overflow : ${0L + intMAX + intMAX}\" }\n}\n\n// Long\n@Suppress(\"unused\")\nprivate fun longs() {\n val l = 5L // can be explicit by setting the type :Long or adding \'L\'\n val longMAX = Long.MAX_VALUE // output : 9223372036854775807\n val longMIN = Long.MIN_VALUE // output : -9223372036854775808\n logger.debug { \"l=$l is of type LONG, the max value is: $longMAX, the min value is: $longMIN\" }\n}\n\n// Float\n@Suppress(\"unused\")\nprivate fun floats() {\n val f = .5f // can be explicit by setting the type :Float or adding \'f\'\n val floatMAX = Float.MAX_VALUE // output : 3.4028235E38\n val floatMIN = Float.MIN_VALUE // output : 1.4E-45\n logger.debug { \"f=$f is of type FLOAT, the max value is: $floatMAX, the min value is: $floatMIN\" }\n}\n\n// Double\n@Suppress(\"unused\")\nprivate fun doubles() {\n val d = .5 // Double by default\n val doubleMAX = Double.MAX_VALUE // output : 1.7976931348623157E308\n val doubleMIN = Double.MIN_VALUE // output : 4.9E-324\n logger.debug { \"d=$d is of type DOUBLE, the max value is: $doubleMAX, the min value is: $doubleMIN\" }\n}\n\n// there is also unsigned types , those are positive and are more larger since they don\'t contain negative values\n@Suppress(\"unused\")\nprivate fun unsignedInt() {\n val u: UInt = 5u // Unsigned by default\n val unsignedMAX = UInt.MAX_VALUE // output : 4294967295\n val unsignedMIN = UInt.MIN_VALUE // output : 0\n logger.debug { \"u=$u is of type UNSIGNED INT, the max value is: $unsignedMAX, the min value is: $unsignedMIN\" }\n}\n\n@Suppress(\"unused\")\nprivate fun additionResult() {\n // when adding multiple primitives, the result is in the higher order\n logger.debug { 0.5f + 0.10 } // output : 0.6 Double\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/ShortsTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\n\nclass ShortsTest : DescribeSpec({\n describe(\"a Short type\") {\n val shortType = ShortType()\n \n it(\"should return the correct maximum value of a short\") {\n val result = shortType.shortMAXValue()\n result shouldBe 32767.toShort()\n }\n \n it(\"should return the correct minimum value of a short\") {\n val result = shortType.shortMINValue()\n result shouldBe (-32768).toShort()\n }\n \n }\n \n})\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/BytesTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\nimport io.kotest.matchers.types.shouldBeTypeOf\n\ninternal class BytesTest : DescribeSpec({\n describe(\"a Byte type\") {\n val byte = Bytes()\n \n it(\"return the correct maximum value of a Byte\") {\n val result = byte.byteMAXValue()\n result shouldBe 127.toByte()\n }\n \n it(\"return the correct minimum value of a Byte\") {\n val result = byte.byteMINValue()\n result shouldBe (-128).toByte()\n }\n \n it(\"return an Int when added to another Byte\") {\n val result = byte.addBytes(5, 10)\n result.shouldBeTypeOf()\n }\n it(\"return an Int when added to another Short\") {\n val result = byte.addToShort(5, 10)\n result.shouldBeTypeOf()\n }\n }\n})\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 10:51:32,682 [15603546] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 10:51:32,799 [15603663] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0 */" suffix: "\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/PrimitiveTypes.kt" content: "/**\n * File: PrimitiveTypes.kt\n * Author: Anouar Doukkali\n * Created on: 4/21/2024 11:53 AM\n * Description: This file contains examples of primitive types in Kotlin\n * Since: @version\n */\npackage kotlinlang.dataTypes\n\nimport logger\n\ninternal class IntType {\n fun intMAXValue() = Int.MAX_VALUE\n fun intMINValue() = Int.MIN_VALUE\n}\n\n// Int\n@Suppress(\"unused\")\nprivate fun integer() {\n val i = 10 // Int by default\n val million = 1_000_000 // For readability, Kotlin allows underscores within numerical values.\n val intMAX = Int.MAX_VALUE // output : 2147483647\n val intMIN = Int.MIN_VALUE // output : -2147483648\n logger.debug { \"i=$i is of type INT, the max value is: $intMAX, the min value is: $intMIN\" }\n logger.debug { \"ex : forcing Long calculation to avoid int overflow : ${0L + intMAX + intMAX}\" }\n}\n\n// Long\n@Suppress(\"unused\")\nprivate fun longs() {\n val l = 5L // can be explicit by setting the type :Long or adding \'L\'\n val longMAX = Long.MAX_VALUE // output : 9223372036854775807\n val longMIN = Long.MIN_VALUE // output : -9223372036854775808\n logger.debug { \"l=$l is of type LONG, the max value is: $longMAX, the min value is: $longMIN\" }\n}\n\n// Float\n@Suppress(\"unused\")\nprivate fun floats() {\n val f = .5f // can be explicit by setting the type :Float or adding \'f\'\n val floatMAX = Float.MAX_VALUE // output : 3.4028235E38\n val floatMIN = Float.MIN_VALUE // output : 1.4E-45\n logger.debug { \"f=$f is of type FLOAT, the max value is: $floatMAX, the min value is: $floatMIN\" }\n}\n\n// Double\n@Suppress(\"unused\")\nprivate fun doubles() {\n val d = .5 // Double by default\n val doubleMAX = Double.MAX_VALUE // output : 1.7976931348623157E308\n val doubleMIN = Double.MIN_VALUE // output : 4.9E-324\n logger.debug { \"d=$d is of type DOUBLE, the max value is: $doubleMAX, the min value is: $doubleMIN\" }\n}\n\n// there is also unsigned types , those are positive and are more larger since they don\'t contain negative values\n@Suppress(\"unused\")\nprivate fun unsignedInt() {\n val u: UInt = 5u // Unsigned by default\n val unsignedMAX = UInt.MAX_VALUE // output : 4294967295\n val unsignedMIN = UInt.MIN_VALUE // output : 0\n logger.debug { \"u=$u is of type UNSIGNED INT, the max value is: $unsignedMAX, the min value is: $unsignedMIN\" }\n}\n\n@Suppress(\"unused\")\nprivate fun additionResult() {\n // when adding multiple primitives, the result is in the higher order\n logger.debug { 0.5f + 0.10 } // output : 0.6 Double\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/ShortsTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\n\nclass ShortsTest : DescribeSpec({\n describe(\"a Short type\") {\n val shortType = ShortType()\n \n it(\"should return the correct maximum value of a short\") {\n val result = shortType.shortMAXValue()\n result shouldBe 32767.toShort()\n }\n \n it(\"should return the correct minimum value of a short\") {\n val result = shortType.shortMINValue()\n result shouldBe (-32768).toShort()\n }\n \n }\n \n})\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/test/kotlin/kotlinlang/dataTypes/primitives/BytesTest.kt" content: "package kotlinlang.dataTypes.primitives\n\nimport io.kotest.core.spec.style.DescribeSpec\nimport io.kotest.matchers.shouldBe\nimport io.kotest.matchers.types.shouldBeTypeOf\n\ninternal class BytesTest : DescribeSpec({\n describe(\"a Byte type\") {\n val byte = Bytes()\n \n it(\"return the correct maximum value of a Byte\") {\n val result = byte.byteMAXValue()\n result shouldBe 127.toByte()\n }\n \n it(\"return the correct minimum value of a Byte\") {\n val result = byte.byteMINValue()\n result shouldBe (-128).toByte()\n }\n \n it(\"return an Int when added to another Byte\") {\n val result = byte.addBytes(5, 10)\n result.shouldBeTypeOf()\n }\n it(\"return an Int when added to another Short\") {\n val result = byte.addToShort(5, 10)\n result.shouldBeTypeOf()\n }\n }\n})\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 10:51:33,135 [15603999] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 10:51:33,312 [15604176] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 10:51:33,778 [15604642] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 794 ms 2024-04-22 10:51:33,778 [15604642] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 10:51:33,778 [15604642] INFO - #copilot - [streamChoices] request done: headerRequestId: [8028bff4-2f49-4685-aef3-b798b0a902ed] model deployment ID: [x4a65c3d811d8] 2024-04-22 10:51:34,671 [15605535] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:5:18: Trailing space(s) [NoTrailingSpaces] 2024-04-22 10:51:34,671 [15605535] INFO - STDOUT - 2024-04-22 10:51:35,182 [15606046] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 529 ms 2024-04-22 10:51:35,185 [15606049] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 10:51:35,185 [15606049] INFO - #copilot - [streamChoices] request done: headerRequestId: [444acc79-f14d-42c9-ad35-5617a0fdbfae] model deployment ID: [x4a65c3d811d8] 2024-04-22 10:51:35,900 [15606764] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 233 ms 2024-04-22 10:51:35,901 [15606765] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 10:51:35,901 [15606765] INFO - #copilot - [streamChoices] request done: headerRequestId: [f5205750-8c63-4891-8aa4-5b94a362cf36] model deployment ID: [x4a65c3d811d8] 2024-04-22 10:51:54,343 [15625207] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-declarative-hints-kotlinBooks-5c450b83 with size 0 2024-04-22 10:51:54,362 [15625226] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-parameter-hints-kotlinBooks-5c450b83 with size 5 2024-04-22 10:51:54,367 [15625231] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-markup-kotlinBooks-5c450b83 with size 9 2024-04-22 10:53:10,279 [15701143] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 10:53:10,282 [15701146] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 10:53:10,282 [15701146] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 10:53:10,282 [15701146] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 10:53:12,049 [15702913] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 10:53:12,053 [15702917] INFO - #com.android.tools.idea.memorysettings.MemorySettingsRecommendation - recommendation based on machine: 2048, on project: 2048 2024-04-22 10:53:12,057 [15702921] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 10:53:12,693 [15703557] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateProjectToolWindow' template presentation. Showing its action-id instead 2024-04-22 10:53:17,150 [15708014] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 10:53:17,156 [15708020] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 10:53:17,159 [15708023] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 10:53:17,172 [15708036] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 10:53:17,239 [15708103] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 10:53:51,397 [15742261] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 10:53:51,399 [15742263] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 10:53:51,399 [15742263] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 10:53:51,400 [15742264] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 10:54:25,849 [15776713] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 10:54:38,294 [15789158] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 10:54:38,296 [15789160] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 10:54:38,297 [15789161] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 10:54:38,297 [15789161] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 10:55:09,070 [15819934] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 10:55:09,072 [15819936] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 10:55:09,072 [15819936] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 10:55:09,073 [15819937] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 10:55:49,526 [15860390] INFO - #copilot - [fetchChat] request.response: [https://api.githubcopilot.com/chat/completions] took 1531 ms 2024-04-22 10:55:49,526 [15860390] WARN - #copilot - [streamChoices] Request id invalid, should have "completionId" and "created": [object Object] { headerRequestId: 'fde45471-f79d-442b-ba29-4bb85c4bd1c6', completionId: '', created: 0, serverExperiments: '', deploymentId: '' } 2024-04-22 10:55:49,528 [15860392] INFO - #copilot - [streamMessages] message 0 returned. finish reason: [stop] 2024-04-22 10:55:49,528 [15860392] INFO - #copilot - [streamChoices] request done: headerRequestId: [fde45471-f79d-442b-ba29-4bb85c4bd1c6] model deployment ID: [] 2024-04-22 10:55:51,524 [15862388] INFO - #copilot - [fetchChat] request.response: [https://api.githubcopilot.com/chat/completions] took 1888 ms 2024-04-22 10:55:51,524 [15862388] WARN - #copilot - [streamChoices] Request id invalid, should have "completionId" and "created": [object Object] { headerRequestId: '2379924b-203a-4461-a906-a24db90d0036', completionId: '', created: 0, serverExperiments: '', deploymentId: 'xd564f7006c5c' } 2024-04-22 10:56:11,033 [15881897] INFO - #copilot - [streamMessages] message 0 returned. finish reason: [stop] 2024-04-22 10:56:11,033 [15881897] INFO - #copilot - [streamChoices] request done: headerRequestId: [2379924b-203a-4461-a906-a24db90d0036] model deployment ID: [xd564f7006c5c] 2024-04-22 10:56:12,203 [15883067] INFO - #copilot - [fetchChat] request.response: [https://api.githubcopilot.com/chat/completions] took 1153 ms 2024-04-22 10:56:12,203 [15883067] WARN - #copilot - [streamChoices] Request id invalid, should have "completionId" and "created": [object Object] { headerRequestId: 'fb50bbd4-0362-4245-9639-9f2e727b773b', completionId: '', created: 0, serverExperiments: '', deploymentId: '' } 2024-04-22 10:56:12,300 [15883164] INFO - #copilot - [streamMessages] message 0 returned. finish reason: [stop] 2024-04-22 10:56:12,300 [15883164] INFO - #copilot - [streamChoices] request done: headerRequestId: [fb50bbd4-0362-4245-9639-9f2e727b773b] model deployment ID: [] 2024-04-22 10:57:01,364 [15932228] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS started 2024-04-22 10:57:05,565 [15936429] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS finished (healthy): VFSHealthCheckReport[healthy: true](FileRecordsReport[recordsChecked=283221, recordsDeleted=216, childrenChecked=282418]{nullNameIds=0, unresolvableNameIds=0, notNullContentIds=2063, unresolvableContentIds=0, unresolvableAttributesIds=0, nullParents=0, inconsistentParentChildRelationships=0, generalErrors=0), RootsReport(rootsCount=449, rootsWithParents=0, rootsDeletedButNotRemoved=0, generalErrors=0), NamesEnumeratorReport(namesChecked=148262, namesResolvedToNull=0, idsResolvedToNull=0, inconsistentNames=0, generalErrors=0), ContentEnumeratorReport(contentRecordsChecked=1745483, generalErrors=0)){timeTaken=4.201123600s} 2024-04-22 11:58:01,374 [19592238] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS started 2024-04-22 11:58:02,930 [19593794] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS finished (healthy): VFSHealthCheckReport[healthy: true](FileRecordsReport[recordsChecked=283221, recordsDeleted=216, childrenChecked=282418]{nullNameIds=0, unresolvableNameIds=0, notNullContentIds=2063, unresolvableContentIds=0, unresolvableAttributesIds=0, nullParents=0, inconsistentParentChildRelationships=0, generalErrors=0), RootsReport(rootsCount=449, rootsWithParents=0, rootsDeletedButNotRemoved=0, generalErrors=0), NamesEnumeratorReport(namesChecked=148262, namesResolvedToNull=0, idsResolvedToNull=0, inconsistentNames=0, generalErrors=0), ContentEnumeratorReport(contentRecordsChecked=1745483, generalErrors=0)){timeTaken=1.556515500s} 2024-04-22 12:12:26,459 [20457323] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* \n" suffix: "File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:12:26,720 [20457584] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:1:3: Trailing space(s) [NoTrailingSpaces] 2024-04-22 12:12:26,720 [20457584] INFO - STDOUT - 2024-04-22 12:12:27,286 [20458150] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* \n " suffix: "File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:12:27,587 [20458451] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:1:3: Trailing space(s) [NoTrailingSpaces] 2024-04-22 12:12:27,587 [20458451] INFO - STDOUT - 2024-04-22 12:12:27,850 [20458714] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:12:27,852 [20458716] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:12:29,941 [20460805] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:1:3: Trailing space(s) [NoTrailingSpaces] 2024-04-22 12:12:29,942 [20460806] INFO - STDOUT - 2024-04-22 12:12:32,796 [20463660] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/*\n " suffix: "File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:12:33,083 [20463947] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:12:35,720 [20466584] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/*\n * " suffix: "File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:12:36,008 [20466872] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:12:46,931 [20477795] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* " suffix: "File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:12:47,486 [20478350] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete response: metadata { rpc_global_id: 6321359393294029093 server_experiment_ids: 1714244 server_experiment_ids: 97511269 server_experiment_ids: 48841080 server_experiment_ids: 1706538 server_experiment_ids: 97543149 server_experiment_ids: 1714244 server_experiment_ids: 97511162 inference_option_metadata { model_id: "codesmith_completion_4b" 2: 1 } } 2024-04-22 12:12:50,659 [20481523] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:12:50,661 [20481525] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:12:50,726 [20481590] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:12:50,726 [20481590] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:12:50,726 [20481590] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:12:53,337 [20484201] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:12:53,339 [20484203] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:12:53,339 [20484203] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:12:53,339 [20484203] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:13:05,991 [20496855] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:13:05,992 [20496856] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:13:06,026 [20496890] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:13:06,030 [20496894] INFO - #c.i.c.ComponentStoreImpl - Saving appFileTypeManager took 21 ms 2024-04-22 12:13:32,931 [20523795] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:13:33,173 [20524037] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:33,174 [20524038] INFO - STDOUT - 2024-04-22 12:13:33,174 [20524038] SEVERE - #c.i.c.d.i.ExternalToolPass - IdeaLoggingEvent[message=ExternalToolPass: , throwable=com.intellij.diagnostic.PluginException: annotator: io.gitlab.arturbosch.detekt.idea.DetektAnnotator@6e8ad683 (class io.gitlab.arturbosch.detekt.idea.DetektAnnotator) [Plugin: detekt] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:90) at com.intellij.codeInsight.daemon.impl.ExternalToolPass.processError(ExternalToolPass.java:253) at com.intellij.codeInsight.daemon.impl.ExternalToolPass.doApply(ExternalToolPass.java:229) at com.intellij.codeInsight.daemon.impl.ExternalToolPass.doApply(ExternalToolPass.java:218) at com.intellij.codeInsight.daemon.impl.ExternalToolPass$1.lambda$run$1(ExternalToolPass.java:168) at com.intellij.openapi.application.ReadAction.lambda$run$1(ReadAction.java:53) at com.intellij.openapi.application.impl.RwLockHolder.runReadAction(RwLockHolder.kt:289) at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:850) at com.intellij.openapi.application.ReadAction.compute(ReadAction.java:65) at com.intellij.openapi.application.ReadAction.run(ReadAction.java:52) at com.intellij.codeInsight.daemon.impl.ExternalToolPass$1.lambda$run$2(ExternalToolPass.java:165) at com.intellij.openapi.progress.util.BackgroundTaskUtil.lambda$runUnderDisposeAwareIndicator$15(BackgroundTaskUtil.java:371) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:217) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.openapi.progress.util.BackgroundTaskUtil.runUnderDisposeAwareIndicator(BackgroundTaskUtil.java:366) at com.intellij.codeInsight.daemon.impl.ExternalToolPass$1.run(ExternalToolPass.java:162) at com.intellij.util.ui.update.ContextAwareUpdate.run$lambda$1$lambda$0(ContextAwareUpdate.kt:49) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:86) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:81) at com.intellij.util.ui.update.ContextAwareUpdate.run(ContextAwareUpdate.kt:48) at com.intellij.util.ui.update.MergingUpdateQueue.execute(MergingUpdateQueue.java:354) at com.intellij.util.ui.update.MergingUpdateQueue.execute(MergingUpdateQueue.java:344) at com.intellij.util.ui.update.MergingUpdateQueue.doFlush(MergingUpdateQueue.java:301) at com.intellij.util.ui.update.MergingUpdateQueue.flush(MergingUpdateQueue.java:283) at com.intellij.util.ui.update.MergingUpdateQueue.run(MergingUpdateQueue.java:250) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:86) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:81) at com.intellij.util.Alarm$Request.lambda$runSafely$0(Alarm.java:369) at com.intellij.util.concurrency.QueueProcessor.runSafely(QueueProcessor.java:253) at com.intellij.util.Alarm$Request.runSafely(Alarm.java:369) at com.intellij.util.Alarm$Request.run(Alarm.java:356) at com.intellij.util.concurrency.Propagation.contextAwareCallable$lambda$2(propagation.kt:357) at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at com.intellij.util.concurrency.SchedulingWrapper$MyScheduledFutureTask.run(SchedulingWrapper.java:272) at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:244) at com.intellij.util.concurrency.BoundedTaskExecutor.access$200(BoundedTaskExecutor.java:30) at com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue(BoundedTaskExecutor.java:222) at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:218) at com.intellij.util.concurrency.BoundedTaskExecutor$1.run(BoundedTaskExecutor.java:210) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) Caused by: com.intellij.diagnostic.PluginException: Range must be inside element being annotated: (0,635); but got: (635,636) [Plugin: detekt] at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:23) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:90) at com.intellij.codeInsight.daemon.impl.B.range(B.java:193) at io.gitlab.arturbosch.detekt.idea.DetektAnnotator.apply(DetektAnnotator.kt:64) at io.gitlab.arturbosch.detekt.idea.DetektAnnotator.apply(DetektAnnotator.kt:20) at com.intellij.codeInsight.daemon.impl.AnnotationHolderImpl.applyExternalAnnotatorWithContext(AnnotationHolderImpl.java:224) at com.intellij.codeInsight.daemon.impl.ExternalToolPass.doApply(ExternalToolPass.java:226) ... 52 more ] 2024-04-22 12:13:33,214 [20524078] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:13:33,711 [20524575] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:33,711 [20524575] INFO - STDOUT - 2024-04-22 12:13:33,898 [20524762] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 12:13:33,898 [20524762] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 12:13:34,043 [20524907] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:34,044 [20524908] INFO - STDOUT - 2024-04-22 12:13:34,406 [20525270] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:34,406 [20525270] INFO - STDOUT - 2024-04-22 12:13:34,570 [20525434] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n" metadata { string_session_id: "3781e700-39d6-4f04-afd4-90315a849d91" user_tier: BETA } options { stop_sequences: "\n\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/**\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n\n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n\n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n\n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:13:34,735 [20525599] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:34,736 [20525600] INFO - STDOUT - 2024-04-22 12:13:34,857 [20525721] INFO - #com.android.studio.ml.aida.AidaModelProvider - Completion request failed aida.io.grpc.StatusRuntimeException: RESOURCE_EXHAUSTED: Quota exceeded for quota metric 'Complete Code Requests' and limit 'Complete Code Requests per minute' of service 'aida.googleapis.com' for consumer 'project_number:73723532827'. at aida.io.grpc.Status.asRuntimeException(Status.java:537) at aida.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) at aida.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) at aida.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) at aida.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) at aida.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) at aida.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:13:35,988 [20526852] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:35,988 [20526852] INFO - STDOUT - 2024-04-22 12:13:38,110 [20528974] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:38,110 [20528974] INFO - STDOUT - 2024-04-22 12:13:38,995 [20529859] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 12:13:38,996 [20529860] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 12:13:46,701 [20537565] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:46,701 [20537565] INFO - STDOUT - 2024-04-22 12:13:46,814 [20537678] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 306 ms 2024-04-22 12:13:46,816 [20537680] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 12:13:46,816 [20537680] INFO - #copilot - [streamChoices] request done: headerRequestId: [18ae8ab2-b458-4651-8013-a0073b7d8dbb] model deployment ID: [x4a65c3d811d8] 2024-04-22 12:13:48,004 [20538868] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:17:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:13:48,005 [20538869] INFO - STDOUT - 2024-04-22 12:13:48,009 [20538873] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 203 ms 2024-04-22 12:13:48,010 [20538874] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 12:13:48,011 [20538875] INFO - #copilot - [streamChoices] request done: headerRequestId: [18aed0af-a9fd-4e37-8a7d-c8f8ae420ed8] model deployment ID: [x4a65c3d811d8] 2024-04-22 12:13:50,057 [20540921] INFO - #copilot - [fetchCompletions] request.response: [https://copilot-proxy.githubusercontent.com/v1/engines/copilot-codex/completions] took 327 ms 2024-04-22 12:13:50,058 [20540922] INFO - #copilot - [streamChoices] solution 0 returned. finish reason: [stop] 2024-04-22 12:13:50,058 [20540922] INFO - #copilot - [streamChoices] request done: headerRequestId: [e89c6a9a-4e78-4948-b964-e8e1bb790b7f] model deployment ID: [x4a65c3d811d8] 2024-04-22 12:13:51,996 [20542860] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:13:51,997 [20542861] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:14:15,325 [20566189] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:14:15,325 [20566189] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:15:16,430 [20627294] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:15:16,431 [20627295] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:15:16,436 [20627300] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:15:16,437 [20627301] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:15:16,437 [20627301] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:15:16,442 [20627306] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:15:16,574 [20627438] INFO - #c.i.o.w.i.WindowManagerImpl - === Release(true) frame on closed project === 2024-04-22 12:15:16,631 [20627495] INFO - #com.android.tools.idea.adb.AdbService - Ddmlib can be terminated as all projects have been closed 2024-04-22 12:15:16,648 [20627512] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Unregistering project from adblib channel provider: Project(name=kotlinBooks, containerState=DISPOSE_IN_PROGRESS, componentStore=C:\IntellijProjects\kotlinBooks) (disposed) 2024-04-22 12:15:16,651 [20627515] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:15:16,666 [20627530] INFO - #o.j.k.i.s.r.KotlinCompilerReferenceIndexStorage - KCRI storage is closed (didn't exist) 2024-04-22 12:15:16,666 [20627530] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist) 2024-04-22 12:15:16,693 [20627557] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Watcher terminated with exit code 0 2024-04-22 12:15:16,734 [20627598] INFO - #c.i.d.PerformanceWatcherImpl - Too many threads: 35 created in the global Application pool. (reasonable.application.thread.pool.size=30, available processors: 4); thread dump is saved to 'C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\log\threadDumps-newPooledThread\threadDump-20240422-121516-1713784516732.txt' 2024-04-22 12:15:16,762 [20627626] INFO - #c.i.u.s.SvgCacheManager - SVG icon cache is closed 2024-04-22 12:15:16,773 [20627637] INFO - #o.j.i.BuiltInServer - web server stopped 2024-04-22 12:15:16,782 [20627646] INFO - #com.android.tools.idea.adb.AdbService - Disposing AdbService 2024-04-22 12:15:16,854 [20627718] INFO - #com.android.adblib.impl.SessionDeviceTracker - trackDevices() failed, will retry in 2000 millis, connection id=4 java.io.IOException: The specified network name is no longer available at java.base/sun.nio.ch.Iocp.translateErrorToIOException(Iocp.java:299) at java.base/sun.nio.ch.Iocp$EventHandlerTask.run(Iocp.java:389) at java.base/sun.nio.ch.AsynchronousChannelGroupImpl$1.run(AsynchronousChannelGroupImpl.java:113) at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:244) at com.intellij.util.concurrency.BoundedTaskExecutor.access$200(BoundedTaskExecutor.java:30) at com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue(BoundedTaskExecutor.java:222) at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:218) at com.intellij.util.concurrency.BoundedTaskExecutor$1.run(BoundedTaskExecutor.java:210) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:15:16,858 [20627722] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:15:16,858 [20627722] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:15:16,858 [20627722] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:15:16,884 [20627748] INFO - #c.i.p.s.SerializationManagerImpl - Start shutting down C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\index\rep.names 2024-04-22 12:15:16,884 [20627748] INFO - #c.i.p.s.SerializationManagerImpl - Finished shutting down C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\index\rep.names 2024-04-22 12:15:16,886 [20627750] INFO - #c.i.u.i.FileBasedIndexImpl - Index dispose started 2024-04-22 12:15:16,971 [20627835] INFO - #c.i.p.s.StubIndexImpl - StubIndexExtension-s were unloaded 2024-04-22 12:15:16,976 [20627840] INFO - #c.i.u.i.FileBasedIndexImpl - Index dispose completed in 90ms. 2024-04-22 12:15:17,035 [20627899] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose started 2024-04-22 12:15:17,036 [20627900] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS closing 2024-04-22 12:15:17,082 [20627946] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose completed in 46 ms. 2024-04-22 12:15:17,082 [20627946] INFO - #c.i.o.f.i.FileTypeDetectionService - 903 auto-detected files. Detection took 1714 ms 2024-04-22 12:15:17,127 [20627991] INFO - #c.i.p.i.b.AppStarter - ------------------------------------------------------ IDE SHUTDOWN ------------------------------------------------------ 2024-04-22 12:15:19,654 [ 4] INFO - #c.i.p.i.b.AppStarter - ------------------------------------------------------ IDE STARTED ------------------------------------------------------ 2024-04-22 12:15:19,755 [ 105] INFO - #c.i.u.i.PageCacheUtils - File page caching params: 2024-04-22 12:15:19,755 [ 105] INFO - #c.i.u.i.PageCacheUtils - DEFAULT_PAGE_SIZE: 10485760 2024-04-22 12:15:19,755 [ 105] INFO - #c.i.u.i.PageCacheUtils - Direct memory to use, max: 3200253952 2024-04-22 12:15:19,756 [ 106] INFO - #c.i.u.i.PageCacheUtils - FilePageCache: regular + lock-free (LOCK_FREE_PAGE_CACHE_ENABLED:true) 2024-04-22 12:15:19,756 [ 106] INFO - #c.i.u.i.PageCacheUtils - NEW_PAGE_CACHE_MEMORY_FRACTION: 0.20000000298023224 2024-04-22 12:15:19,756 [ 106] INFO - #c.i.u.i.PageCacheUtils - Regular FilePageCache: 503316478 bytes 2024-04-22 12:15:19,756 [ 106] INFO - #c.i.u.i.PageCacheUtils - New FilePageCache: 125829122 bytes (+ up to 10.0% overflow) 2024-04-22 12:15:19,757 [ 107] INFO - #c.i.u.i.PageCacheUtils - DirectByteBuffers pool: 104857600 bytes 2024-04-22 12:15:19,867 [ 217] INFO - #c.i.i.p.PluginManager - Plugin PluginDescriptor(name=Groovy, id=org.intellij.groovy, descriptorPath=plugin.xml, path=C:\Program Files\Android\Android Studio\plugins\Groovy, version=241.14494.240.2411.11731683, package=org.jetbrains.plugins.groovy, isBundled=true) misses optional descriptor duplicates-groovy.xml 2024-04-22 12:15:19,867 [ 217] INFO - #c.i.i.p.PluginManager - Plugin PluginDescriptor(name=Groovy, id=org.intellij.groovy, descriptorPath=plugin.xml, path=C:\Program Files\Android\Android Studio\plugins\Groovy, version=241.14494.240.2411.11731683, package=org.jetbrains.plugins.groovy, isBundled=true) misses optional descriptor duplicates-detection-groovy.xml 2024-04-22 12:15:19,884 [ 234] INFO - #c.i.p.i.b.AppStarter - JNA library (64-bit) loaded in 140 ms 2024-04-22 12:15:19,886 [ 236] INFO - #c.i.p.i.b.AppStarter - IDE: Android Studio (build #AI-241.14494.240.2411.11731683, Thu, 18 Apr 2024 07:33:00 GMT) 2024-04-22 12:15:19,887 [ 237] INFO - #c.i.p.i.b.AppStarter - OS: Windows (10.0) 2024-04-22 12:15:19,887 [ 237] INFO - #c.i.p.i.b.AppStarter - JRE: 17.0.10+0--11609105, amd64 (JetBrains s.r.o.) 2024-04-22 12:15:19,887 [ 237] INFO - #c.i.p.i.b.AppStarter - JVM: 17.0.10+0--11609105 (OpenJDK 64-Bit Server VM) 2024-04-22 12:15:19,890 [ 240] INFO - #c.i.p.i.b.AppStarter - PID: 5812 2024-04-22 12:15:19,891 [ 241] INFO - #c.i.p.i.b.AppStarter - JVM options: [exit, -XX:ErrorFile=C:\Users\anoua\\java_error_in_studio64_%p.log, -XX:HeapDumpPath=C:\Users\anoua\\java_error_in_studio64.hprof, -Xms128m, -Xmx3072m, -XX:ReservedCodeCacheSize=512m, -XX:+IgnoreUnrecognizedVMOptions, -XX:+UseG1GC, -XX:SoftRefLRUPolicyMSPerMB=50, -XX:CICompilerCount=2, -XX:+HeapDumpOnOutOfMemoryError, -XX:-OmitStackTraceInFastThrow, -ea, -Dsun.io.useCanonCaches=false, -Djdk.http.auth.tunneling.disabledSchemes="", -Djdk.attach.allowAttachSelf=true, -Djdk.module.illegalAccess.silent=true, -Dkotlinx.coroutines.debug=off, -XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log, -XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof, --add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED, --add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED, -Didea.kotlin.plugin.use.k2=false, -Djb.vmOptionsFile=C:\Program Files\JetBrains\Activate\vmoptions\studio.vmoptions, -Djava.system.class.loader=com.intellij.util.lang.PathClassLoader, -Didea.vendor.name=Google, -Didea.paths.selector=AndroidStudioPreview2024.1, -Djna.boot.library.path=C:\Program Files\Android\Android Studio/lib/jna/amd64, -Dpty4j.preferred.native.folder=C:\Program Files\Android\Android Studio/lib/pty4j, -Djna.nosys=true, -Djna.noclasspath=true, -Didea.platform.prefix=AndroidStudio, -XX:FlightRecorderOptions=stackdepth=256, --add-opens=java.base/sun.net.www.protocol.https=ALL-UNNAMED, -Didea.required.plugins.id=org.jetbrains.kotlin, -Djava.security.manager=allow, -Dintellij.custom.startup.error.reporting.url=https://issuetracker.google.com/issues/new?component=192708, -Dsplash=true, -Daether.connector.resumeDownloads=false, --add-opens=java.base/java.io=ALL-UNNAMED, --add-opens=java.base/java.lang=ALL-UNNAMED, --add-opens=java.base/java.lang.ref=ALL-UNNAMED, --add-opens=java.base/java.lang.reflect=ALL-UNNAMED, --add-opens=java.base/java.net=ALL-UNNAMED, --add-opens=java.base/java.nio=ALL-UNNAMED, --add-opens=java.base/java.nio.charset=ALL-UNNAMED, --add-opens=java.base/java.text=ALL-UNNAMED, --add-opens=java.base/java.time=ALL-UNNAMED, --add-opens=java.base/java.util=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED, --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED, --add-opens=java.base/sun.nio.ch=ALL-UNNAMED, --add-opens=java.base/sun.nio.fs=ALL-UNNAMED, --add-opens=java.base/sun.security.ssl=ALL-UNNAMED, --add-opens=java.base/sun.security.util=ALL-UNNAMED, --add-opens=java.base/sun.net.dns=ALL-UNNAMED, --add-opens=java.desktop/java.awt=ALL-UNNAMED, --add-opens=java.desktop/java.awt.dnd.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.event=ALL-UNNAMED, --add-opens=java.desktop/java.awt.image=ALL-UNNAMED, --add-opens=java.desktop/java.awt.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.font=ALL-UNNAMED, --add-opens=java.desktop/javax.swing=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.datatransfer=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.image=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.windows=ALL-UNNAMED, --add-opens=java.desktop/sun.awt=ALL-UNNAMED, --add-opens=java.desktop/sun.font=ALL-UNNAMED, --add-opens=java.desktop/sun.java2d=ALL-UNNAMED, --add-opens=java.desktop/sun.swing=ALL-UNNAMED, --add-opens=java.desktop/com.sun.java.swing=ALL-UNNAMED, --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED, --add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED, --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED, --add-opens=jdk.jdi/com.sun.tools.jdi=ALL-UNNAMED, -Dide.native.launcher=true] 2024-04-22 12:15:19,891 [ 241] INFO - #c.i.p.i.b.AppStarter - args: 2024-04-22 12:15:19,892 [ 242] INFO - #c.i.p.i.b.AppStarter - library path: C:\Program Files\Android\Android Studio\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Users\anoua\AppData\Local\Microsoft\WindowsApps;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2023.2.1\bin;C:\Users\anoua\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\anoua\AppData\Local\Programs\Fiddler;C:\jdk-21.0.1\bin;C:\Users\anoua\AppData\Local\JetBrains\Toolbox\scripts;. 2024-04-22 12:15:19,892 [ 242] INFO - #c.i.p.i.b.AppStarter - boot library path: C:\Program Files\Android\Android Studio\jbr\bin 2024-04-22 12:15:19,902 [ 252] INFO - #c.i.p.i.b.AppStarter - locale=en_US JNU=Cp1252 file.encoding=Cp1252 idea.config.path=C:\Users\anoua\AppData\Roaming\Google\AndroidStudioPreview2024.1 idea.system.path=C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1 idea.plugins.path=C:\Users\anoua\AppData\Roaming\Google\AndroidStudioPreview2024.1\plugins idea.log.path=C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\log 2024-04-22 12:15:19,907 [ 257] INFO - #c.i.p.i.b.AppStarter - CPU cores: 4; ForkJoinPool.commonPool: java.util.concurrent.ForkJoinPool@5e47fcda[Running, parallelism = 3, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]; factory: com.intellij.concurrency.IdeaForkJoinWorkerThreadFactory@4b2adccd 2024-04-22 12:15:22,162 [ 2512] INFO - #c.i.i.p.PluginManager - Module intellij.devkit.uiDesigner is not enabled because dependency com.intellij.uiDesigner is not available Module intellij.sh.python is not enabled because dependency intellij.python.community.impl is not available Module intellij.groovy/byte-code-viewer is not enabled because dependency ByteCodeViewer is not available Module intellij.groovy/ant is not enabled because dependency AntSupport is not available Module kotlin.features-trainer is not enabled because dependency training is not available Module kotlin.grazie is not enabled because dependency tanvd.grazi is not available Module kotlin.project-wizard.maven is not enabled because dependency org.jetbrains.idea.maven is not available Module kotlin.maven is not enabled because dependency org.jetbrains.idea.maven is not available Module kotlin.compiler-plugins.compiler-plugin-support.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.assignment.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.lombok.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.kotlinx-serialization.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.sam-with-receiver.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.noarg.maven is not enabled because dependency kotlin.maven is not available Module kotlin.compiler-plugins.allopen.maven is not enabled because dependency kotlin.maven is not available Module intellij.toml.grazie is not enabled because dependency tanvd.grazi is not available Module intellij.java.ide.customization/training is not enabled because dependency training is not available Module intellij.vcs.git/newUiOnboarding is not enabled because dependency intellij.platform.ide.newUiOnboarding is not available 2024-04-22 12:15:22,195 [ 2545] INFO - #c.i.i.p.PluginManager - Loaded bundled plugins: IDEA CORE (241.14494.240), TextMate Bundles (241.14494.240.2411.11731683), Images (241.14494.240.2411.11731683), Copyright (241.14494.240.2411.11731683), EditorConfig (241.14494.240.2411.11731683), YAML (241.14494.240.2411.11731683), JetBrains maven model api classes (241.14494.240.2411.11731683), JetBrains Repository Search (241.14494.240.2411.11731683), Maven server api classes (241.14494.240.2411.11731683), Markdown (241.14494.240.2411.11731683), Terminal (241.14494.240.2411.11731683), Mercurial (241.14494.240.2411.11731683), Relational Dataflow Analysis (241.14494.240.2411.11731683), Properties (241.14494.240.2411.11731683), Gradle (241.14494.240.2411.11731683), NetBeans Keymap (241.14494.240.2411.11731683), com.intellij.dev (241.14494.240.2411.11731683), Java (241.14494.240.2411.11731683), Plugin DevKit (241.14494.240.2411.11731683), Java Bytecode Decompiler (241.14494.240.2411.11731683), Java Stream Debugger (241.14494.240.2411.11731683), Task Management (241.14494.240.2411.11731683), JUnit (241.14494.240.2411.11731683), CIDR Debugger (241.14494.240.2411.11731683), CIDR Base (241.14494.240.2411.11731683), Clangd Support (241.14494.240.2411.11731683), C/C++ Language Support via Classic Engine (241.14494.240.2411.11731683), Clangd-CLion Bridge (241.14494.240.2411.11731683), Shell Script (241.14494.240.2411.11731683), HTML Tools (241.14494.240.2411.11731683), IntelliLang (241.14494.240.2411.11731683), Groovy (241.14494.240.2411.11731683), Kotlin (241.14494.240.2411.11731683-AS), Visual Studio Keymap (241.14494.240.2411.11731683), Machine Learning Code Completion (241.14494.240.2411.11731683), Machine Learning Code Completion Models (241.14494.240.2411.11731683), Turbo Complete (241.14494.240.2411.11731683), Toml (241.14494.240.2411.11731683), WebP Support (241.14494.240.2411.11731683), Smali Support (241.14494.240.2411.11731683), Java Internationalization (241.14494.240.2411.11731683), TestNG (241.14494.240.2411.11731683), Code Coverage for Java (241.14494.240.2411.11731683), Java IDE Customization (241.14494.240.2411.11731683), Eclipse Keymap (241.14494.240.2411.11731683), GitHub (241.14494.240.2411.11731683), Gradle-Java (241.14494.240.2411.11731683), GitLab (241.14494.240.2411.11731683), Android (241.14494.240.2411.11731683), Android SDK Upgrade Assistant (241.14494.240.2411.11731683), Android Design Tools (241.14494.240.2411.11731683), Jetpack Compose (241.14494.240.2411.11731683), Test Recorder (241.14494.240.2411.11731683), Firebase Services (241.14494.240.2411.11731683), Firebase Testing (241.14494.240.2411.11731683), App Links Assistant (241.14494.240.2411.11731683), Git (241.14494.240.2411.11731683), Git for App Insights (241.14494.240.2411.11731683), Google Cloud Tools For Android Studio (241.14494.240.2411.11731683), Configuration Script (241.14494.240.2411.11731683), Android NDK Support (241.14494.240.2411.11731683), Android APK Support (241.14494.240.2411.11731683), Device Streaming (241.14494.240.2411.11731683), Subversion (241.14494.240.2411.11731683), Gemini (241.14494.240.2411.11731683), ClangConfig (241.14494.240.2411.11731683), ClangFormat (241.14494.240.2411.11731683) 2024-04-22 12:15:22,196 [ 2546] INFO - #c.i.i.p.PluginManager - Loaded custom plugins: detekt (2.4.1), JetBrains Marketplace Licensing (241.14494.288), Rainbow Brackets (2024.2.3-241), Kotest (1.3.74-241.9959-EAP-CANDIDATE-SNAPSHOT), GitHub Copilot (1.5.2.5345), SonarLint (10.4.2.78113), Codiumate - Code, test and review with confidence - by CodiumAI (0.7.32) 2024-04-22 12:15:22,305 [ 2655] INFO - c.i.p.i.IdeFingerprint - Calculated dependencies fingerprint in 20 ms (hash=2v17n7zdbau4a, buildTime=1713425580, appVersion=AI-241.14494.240.2411.11731683) 2024-04-22 12:15:22,628 [ 2978] INFO - #c.i.a.o.PathMacrosImpl - Loaded path macros: {} 2024-04-22 12:15:22,753 [ 3103] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses 'fast' names enumerator (over mmapped file) 2024-04-22 12:15:22,755 [ 3105] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses streamlined attributes storage (over mmapped file) 2024-04-22 12:15:22,759 [ 3109] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses content storage over memory-mapped file, with compression algo: LZ4[ > 8000b ] 2024-04-22 12:15:22,903 [ 3253] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS: impl (expected) version=846397, 283221 file records, 1791 content blobs 2024-04-22 12:15:22,916 [ 3266] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS initialized: 166 ms, 0 failed attempts, 0 error(s) were recovered 2024-04-22 12:15:23,190 [ 3540] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS scanned: file-by-name index was populated 2024-04-22 12:15:23,238 [ 3588] INFO - #c.i.o.v.n.p.FSRecords - VFS health-check enabled: first after 600000 ms, and each following 3600000 ms, wrap in RA: true 2024-04-22 12:15:23,314 [ 3664] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.stats.TypingLatencyTracker requests org.jetbrains.android.AndroidPluginDisposable instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:15:23,324 [ 3674] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.stats.TypingLatencyTracker requests com.android.tools.idea.concurrency.AndroidExecutors instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:15:23,368 [ 3718] INFO - #c.i.o.u.r.RegistryManager - Registry values changed by user: ide.experimental.ui = true, ide.experimental.ui.inter.font = false, ide.instant.shutdown = false, idea.plugins.compatible.build = 2024-04-22 12:15:23,422 [ 3772] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.flags.StudioFlags requests com.android.tools.idea.flags.StudioFlagSettings instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:15:23,585 [ 3935] INFO - #com.android.tools.idea.serverflags.ServerFlagInitializer - Enabled server flags: analytics/surveys/followup, analytics/surveys/feature/ANDROID_PROJECT_VIEW_UNSELECTED, analytics/surveys/feature/DOWNLOAD_INFO_VIEW_SURVEY, analytics/surveys/feature/KOTLIN_SUPPORT_DECLINED_EVENT, analytics/surveys/feature/UPGRADE_ASSISTANT_CTA_OLD_AGP_DISMISSED, diagnostics/forced_gc, diagnostics/memory_usage_reporting, exceptions/ClassCastException, exceptions/ClassNotFoundException, exceptions/PluginException-0073ff27, exceptions/b_256873104, exceptions/b_287116550_1, exceptions/b_287116550_2, exceptions/b_300548532, exceptions/b_300550343, exceptions/b_300614573, exceptions/b_300908560, exceptions/b_312786405, exceptions/b_318878495, studio_flags/directaccess.enable, studio_flags/profiler.keyboard.event, studio_flags/rundebug.adblib.migration.ddmlib.ideviceusage.tracker, studio_flags/studiobot.completions.per.hour, studio_flags/studiobot.conversations.per.hour, studio_flags/studiobot.generations.per.hour, studio_flags/studiobot.inline.code.completion.file.context.enabled 2024-04-22 12:15:23,665 [ 4015] WARN - #c.i.n.i.NotificationGroupManagerImpl - Notification group Logcat is already registered (group=com.intellij.notification.NotificationGroup@6fb885dd). Plugin descriptor: PluginDescriptor(name=Android, id=org.jetbrains.android, descriptorPath=plugin.xml, path=C:\Program Files\Android\Android Studio\plugins\android, version=241.14494.240.2411.11731683, package=null, isBundled=true) 2024-04-22 12:15:23,873 [ 4223] INFO - com.android.tools.instrumentation.threading.agent.Agent - Threading agent has been loaded. 2024-04-22 12:15:23,912 [ 4262] INFO - #com.android.tools.idea.instrumentation.threading.ThreadingChecker - ThreadingChecker listener has been installed (after threading agent was dynamically loaded). 2024-04-22 12:15:25,570 [ 5920] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Starting file watcher: C:\Program Files\Android\Android Studio\bin\fsnotifier.exe 2024-04-22 12:15:26,134 [ 6484] INFO - #c.i.i.p.ExpiredPluginsState - Plugins to skip: [] 2024-04-22 12:15:26,163 [ 6513] INFO - #c.i.u.n.s.CertificateManager - Default SSL context initialized 2024-04-22 12:15:26,513 [ 6863] INFO - #o.j.i.BuiltInServerManager - built-in server started, port 63342 2024-04-22 12:15:26,521 [ 6871] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Native file watcher is operational. 2024-04-22 12:15:26,531 [ 6881] INFO - #c.i.o.v.i.w.WslFileWatcher - WSL file watcher: C:\Program Files\Android\Android Studio\bin\fsnotifier-wsl 2024-04-22 12:15:26,969 [ 7319] INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 457 ms 2024-04-22 12:15:27,046 [ 7396] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Load global workspace model from cache in 40 ms 2024-04-22 12:15:27,341 [ 7691] WARN - #c.i.s.ComponentManagerImpl - org.jetbrains.kotlin.idea.gradleJava.scripting.roots.GradleBuildRootDataSerializer requests com.intellij.util.gist.storage.GistStorage instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:15:27,421 [ 7771] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 1 in 1 ms: Facet manager update storage 2024-04-22 12:15:27,422 [ 7772] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 2 in 0 ms: Facet manager update storage 2024-04-22 12:15:27,424 [ 7774] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 3 in 1 ms: Facet manager update storage 2024-04-22 12:15:27,427 [ 7777] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 4 in 0 ms: Facet manager update storage 2024-04-22 12:15:27,431 [ 7781] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 5 in 2 ms: Facet manager update storage 2024-04-22 12:15:27,435 [ 7785] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 6 in 0 ms: Facet manager update storage 2024-04-22 12:15:27,463 [ 7813] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 7 in 27 ms: Add module mapping 2024-04-22 12:15:27,554 [ 7904] INFO - #o.j.k.i.g.s.r.GradleBuildRootIndex - C:/IntellijProjects/kotlinBooks: null -> org.jetbrains.kotlin.idea.gradleJava.scripting.roots.Imported@7392f159 2024-04-22 12:15:27,734 [ 8084] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:27,757 [ 8107] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 8 in 119 ms: Change entity sources to externally imported 2024-04-22 12:15:27,795 [ 8145] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 9 in 0 ms: Add project library mapping 2024-04-22 12:15:27,844 [ 8194] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:27,844 [ 8194] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 10 in 10 ms: Sync global entities with project: kotlinBooks 2024-04-22 12:15:27,986 [ 8336] INFO - #JetprofileSource - No valid license found 2024-04-22 12:15:28,055 [ 8405] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:15:28,056 [ 8406] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:15:28,117 [ 8467] INFO - #c.i.u.i.FileBasedIndexImpl - Indices to be built:FilenameIndex(v = 258) 2024-04-22 12:15:28,121 [ 8471] INFO - #c.i.u.i.FileBasedIndexImpl - Using nice flusher for indexes 2024-04-22 12:15:28,148 [ 8498] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 2507 ms. Initialized indexes: [FilenameIndex, TodoIndex, FrameworkDetectionIndex, filetypes, Trigram.Index, Stubs, IdIndex, RelaxSymbolIndex, DomFileIndex, fileIncludes, XmlTagNames, XmlNamespaces, html5.custom.attributes.index, SchemaTypeInheritance, editorconfig.index.name, xmlProperties, json.file.root.values, yaml.keys.name, java.source.module.name, java.null.method.argument, java.auto.module.name, java.binary.plus.expression, java.fun.expression, IdeaPluginRegistrationIndex, PluginIdModuleIndex, PluginIdDependenciesIndex, devkit.ExtensionPointIndex, bytecodeAnalysis, FileNameWithoutExtensionIndex, clang.format.lightIndex, org.jetbrains.kotlin.idea.versions.KotlinJvmMetadataVersionIndex, HtmlTagIdIndex, devkit.ExtensionPointClassIndex, org.jetbrains.kotlin.idea.versions.KotlinJsMetadataVersionIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinPartialPackageNamesIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinJavaScriptMetaFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinMetadataFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinClassFileIndex, KotlinPackageSourcesMemberNamesIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinModuleMappingIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinMetadataFilePackageIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinJvmModuleAnnotationsIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinShortClassNameFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinBuiltInsMetadataIndex, KotlinTopLevelCallableByPackageShortNameIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinStdlibIndex, KotlinTopLevelClassLikeDeclarationByPackageShortNameIndex, com.android.tools.idea.model.AndroidManifestIndex.NAME, org.jetbrains.kotlin.idea.vfilefinder.KlibMetaFileIndex, BindingXmlIndex, NavXmlIndex, KotlinBinaryRootToPackageIndex, android.ndk.jni.nativemethodindex, com.android.studio.ml.aiexclude.AiExcludeIndex, com.android.tools.idea.dagger.index.DaggerIndex]. 2024-04-22 12:15:28,510 [ 8860] WARN - #c.i.u.j.JBCefApp - JCefAppConfig.class is not from a JBR module, url: jar:file:/C:/Program%20Files/Android/Android%20Studio/lib/lib.jar!/com/jetbrains/cef/JCefAppConfig.class (Use JBR bundled with the IDE) 2024-04-22 12:15:29,216 [ 9566] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:15:29,217 [ 9567] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:15:29,219 [ 9569] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:15:29,220 [ 9570] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:15:29,517 [ 9867] INFO - #com.android.tools.idea.projectsystem.ProjectSystemService - GradleProjectSystem project system has been detected 2024-04-22 12:15:29,518 [ 9868] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Loading Project code style 2024-04-22 12:15:29,519 [ 9869] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:15:29,519 [ 9869] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:15:29,521 [ 9871] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:15:29,521 [ 9871] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:15:29,521 [ 9871] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Project code style loaded 2024-04-22 12:15:29,673 [ 10023] WARN - #c.i.u.x.Binding - No accessors for java.awt.Color. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:15:29,875 [ 10225] INFO - #c.i.o.a.i.NonBlockingReadActionImpl - OTel monitoring for NonBlockingReadAction is enabled 2024-04-22 12:15:29,956 [ 10306] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 1807 ms. Initialized stub indexes: {gr.script.fqn.s, markdown.header, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelClassByPackageIndex, java.annotations, org.jetbrains.kotlin.idea.stubindex.KotlinPropertyShortNameIndex, properties.index, org.jetbrains.kotlin.idea.stubindex.KotlinInnerTypeAliasClassIdIndex, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelPropertyFqnNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFileFacadeFqNameIndex, kotlin.primeIndexKey, KotlinTopLevelFunctionByPackageIndex, gr.anonymous.class, java.class.shortname, dom.namespaceKey, org.jetbrains.kotlin.idea.stubindex.KotlinFullClassNameIndex, java.module.name, KotlinTypeAliasByExpansionShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinScriptFqnIndex, java.class.extlist, gr.method.name, java.unnamed.class, org.jetbrains.kotlin.idea.stubindex.KotlinAnnotationsIndex, java.anonymous.baseref, org.jetbrains.kotlin.idea.stubindex.KotlinExactPackagesIndex, KotlinTopLevelExtensionsByReceiverTypeIndex, org.jetbrains.kotlin.idea.stubindex.KotlinMultifileClassPartIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFilePartClassIndex, KotlinTopLevelTypeAliasByPackageIndex, java.method.parameter.types, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelTypeAliasFqNameIndex, gr.field.name, org.jetbrains.kotlin.idea.stubindex.KotlinClassShortNameIndex, jvm.static.member.name, org.jetbrains.kotlin.idea.stubindex.KotlinFunctionShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelFunctionFqnNameIndex, gr.script.class, org.jetbrains.kotlin.idea.stubindex.KotlinSuperClassIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFileFacadeShortNameIndex, gr.annot.members, gr.annot.method.name, jvm.static.member.type, gr.class.fqn.s, org.jetbrains.kotlin.idea.stubindex.KotlinTypeAliasShortNameIndex, KotlinTopLevelPropertyByPackageIndex, KotlinOverridableInternalMembersShortNameIndex, gr.class.super, org.jetbrains.kotlin.idea.stubindex.KotlinJvmNameAnnotationIndex, KotlinExtensionsInObjectsByReceiverTypeIndex, KotlinProbablyNothingFunctionShortNameIndex, KotlinProbablyNothingPropertyShortNameIndex, KotlinProbablyContractedFunctionShortNameIndex, java.field.name, java.class.fqn, KotlinFileFacadeClassByPackageIndex, dom.elementClass, java.method.name, markdown.header.anchor, org.jetbrains.kotlin.idea.stubindex.KotlinSubclassObjectNameIndex}. 2024-04-22 12:15:29,961 [ 10311] INFO - #c.i.u.i.StaleIndexesChecker - clearing stale id = 278366, path = C:/Users/anoua/AppData/Roaming/Google/AndroidStudioPreview2024.1/workspace/2VReuhQxB1Fwramd8Sp9UQRUL9Q.xml 2024-04-22 12:15:30,024 [ 10374] INFO - #c.i.o.v.n.p.d.e.DurableEnumeratorFactory - [enumerator.mmapped]: .valueHashToId (in memory) was filled (43 records) 2024-04-22 12:15:30,098 [ 10448] WARN - #c.i.s.ComponentManagerImpl - com.github.copilot.platform.state.ToolWindowRegistrationSettings requests com.github.copilot.platform.state.ToolWindowRegistrationSettings instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:15:30,167 [ 10517] INFO - #c.i.p.s.StubUpdatingIndexStorage - Not updating IndexingStampInfo. inputId=278366,result=true 2024-04-22 12:15:30,281 [ 10631] INFO - #c.i.o.a.i.ActionUpdater - 369 ms to grab EDT for ToolWindowHeader$2#children@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2) 2024-04-22 12:15:32,434 [ 12784] INFO - #copilot - [agent] GitHub Copilot Language Server 1.178.0 initialized 2024-04-22 12:15:32,438 [ 12788] INFO - c.j.cidr - clangd modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83 2024-04-22 12:15:32,439 [ 12789] INFO - c.j.cidr - clangd cpp20 modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83/cpp20 2024-04-22 12:15:32,449 [ 12799] INFO - #c.i.o.u.r.RegistryValue - Registry value 'clang.parameter.info' has changed to 'true' 2024-04-22 12:15:32,668 [ 13018] INFO - #c.i.o.a.i.ActionUpdater - 2368 ms to grab EDT for DockToolWindowAction#presentation@ToolwindowTitle (com.intellij.openapi.wm.impl.DockToolWindowAction) 2024-04-22 12:15:32,669 [ 13019] INFO - #c.i.o.a.i.ActionUpdater - 2353 ms to grab EDT for CollapseAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.CollapseAllAction) 2024-04-22 12:15:32,669 [ 13019] INFO - #c.i.o.a.i.ActionUpdater - 2353 ms to grab EDT for ExpandAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.ExpandAllAction) 2024-04-22 12:15:32,844 [ 13194] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@1d951192 2024-04-22 12:15:32,896 [ 13246] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Initializing DumbServiceMergingTaskQueue... 2024-04-22 12:15:32,973 [ 13323] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@1299a6c7 2024-04-22 12:15:33,064 [ 13414] WARN - #c.i.o.a.i.ActionUpdater - 7444 ms total to grab EDT 4 times to expand ToolWindowHeader$2@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2). Use `ActionUpdateThread.BGT`. 2024-04-22 12:15:33,398 [ 13748] INFO - #c.i.u.i.p.IncrementalProjectIndexableFilesFilterHolder - IncrementalProjectIndexableFilesFilterFactory is chosen as indexable files filter factory for project: kotlinBooks 2024-04-22 12:15:33,982 [ 14332] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@1299a6c7 2024-04-22 12:15:33,995 [ 14345] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@1031dda9 2024-04-22 12:15:33,998 [ 14348] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@1031dda9 2024-04-22 12:15:34,012 [ 14362] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@568bff56 2024-04-22 12:15:34,021 [ 14371] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@568bff56 2024-04-22 12:15:34,039 [ 14389] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@2612650b 2024-04-22 12:15:34,072 [ 14422] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@2612650b 2024-04-22 12:15:34,077 [ 14427] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@78bf8c07 2024-04-22 12:15:34,082 [ 14432] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@78bf8c07 2024-04-22 12:15:34,092 [ 14442] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@7480d669 2024-04-22 12:15:34,113 [ 14463] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-folding-kotlinBooks-5c450b83 with size 29 2024-04-22 12:15:34,123 [ 14473] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@7480d669 2024-04-22 12:15:34,128 [ 14478] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@1d951192 2024-04-22 12:15:34,222 [ 14572] INFO - #c.i.o.a.i.ActionUpdater - 705 ms to grab EDT for FontEditorPreview$RestorePreviewTextAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$RestorePreviewTextAction) 2024-04-22 12:15:34,222 [ 14572] INFO - #c.i.o.a.i.ActionUpdater - 707 ms to grab EDT for FontEditorPreview$ToggleBoldFontAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$ToggleBoldFontAction) 2024-04-22 12:15:34,347 [ 14697] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@1a01047b 2024-04-22 12:15:34,437 [ 14787] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@1a01047b 2024-04-22 12:15:34,442 [ 14792] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:15:34,483 [ 14833] INFO - #c.i.o.u.i.UpdateCheckerService - channel: eap 2024-04-22 12:15:34,538 [ 14888] INFO - #c.i.o.u.i.UpdateCheckerService - channel set to 'eap' by com.android.tools.idea.AndroidStudioUpdateStrategyCustomization 2024-04-22 12:15:34,706 [ 15056] INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [] 2024-04-22 12:15:34,943 [ 15293] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:15:34,947 [ 15297] INFO - #c.i.c.CompilerWorkspaceConfiguration - Available processors: 4 2024-04-22 12:15:35,073 [ 15423] SEVERE - #c.i.u.SlowOperations - Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. java.lang.Throwable: Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:376) at com.intellij.util.SlowOperations.assertNonCancelableSlowOperationsAreAllowed(SlowOperations.java:120) at com.intellij.ide.passwordSafe.impl.BasePasswordSafe.get(PasswordSafeImpl.kt:94) at com.intellij.tasks.impl.BaseRepository.loadPassword(BaseRepository.java:95) at com.intellij.tasks.impl.BaseRepository.getPassword(BaseRepository.java:72) at org.jetbrains.plugins.github.tasks.GithubRepository.isConfigured(GithubRepository.java:95) at com.intellij.tasks.impl.TaskManagerImpl.lambda$updateIssues$14(TaskManagerImpl.java:806) at com.intellij.util.containers.ContainerUtil.find(ContainerUtil.java:807) at com.intellij.tasks.impl.TaskManagerImpl.updateIssues(TaskManagerImpl.java:806) at com.intellij.tasks.impl.TaskManagerImpl$6.actionPerformed(TaskManagerImpl.java:780) at java.desktop/javax.swing.Timer.fireActionPerformed(Timer.java:311) at java.desktop/javax.swing.Timer$DoPostEvent.run(Timer.java:243) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:792) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:761) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$12(IdeEventQueue.kt:593) at com.intellij.openapi.application.impl.RwLockHolder.runWithoutImplicitRead(RwLockHolder.kt:105) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:593) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:106) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:15:35,079 [ 15429] INFO - c.j.c.l.d.c.c.l.ClangDaemonContextImpl - Using clangd from: C:\Program Files\Android\Android Studio\plugins\c-clangd-plugin\bin\clang\win\x64\clangd.exe 2024-04-22 12:15:35,099 [ 15449] SEVERE - #c.i.u.SlowOperations - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:15:35,099 [ 15449] WARN - #com.android.studio.ml.experimental.GeminiLongContextModelProvider - Cannot instantiate Gemini 1.5 Pro model without a Gemini api key 2024-04-22 12:15:35,100 [ 15450] SEVERE - #c.i.u.SlowOperations - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:15:35,100 [ 15450] SEVERE - #c.i.u.SlowOperations - OS: Windows 10 2024-04-22 12:15:35,100 [ 15450] SEVERE - #c.i.u.SlowOperations - Last Action: 2024-04-22 12:15:35,119 [ 15469] INFO - #c.i.o.v.i.p.NewMappings - Mapped Roots: 1 2024-04-22 12:15:35,120 [ 15470] INFO - #c.i.o.v.i.p.NewMappings - Detected mapped Root: [Git] - [C:/IntellijProjects/kotlinBooks] 2024-04-22 12:15:35,182 [ 15532] WARN - #c.i.i.s.i.StartupManagerImpl - Migrate Ờの to ProjectActivity [Plugin: izhangzhihao.rainbow.brackets] com.intellij.diagnostic.PluginException: Migrate Ờの to ProjectActivity [Plugin: izhangzhihao.rainbow.brackets] at com.intellij.ide.startup.impl.StartupManagerImpl.runPostStartupActivities(StartupManagerImpl.kt:275) at com.intellij.ide.startup.impl.StartupManagerImpl.access$runPostStartupActivities(StartupManagerImpl.kt:68) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invokeSuspend(StartupManagerImpl.kt:191) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167) at kotlinx.coroutines.BuildersKt.withContext(Unknown Source) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3.invokeSuspend(StartupManagerImpl.kt:190) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:35,217 [ 15567] INFO - #c.i.u.i.UnindexedFilesScanner - Started scanning for indexing of kotlinBooks. Reason: On project open 2024-04-22 12:15:35,270 [ 15620] INFO - #c.i.u.i.UnindexedFilesScanner - Performing delayed pushing properties tasks for kotlinBooks took 22ms; general responsiveness: ok; EDT responsiveness: ok 2024-04-22 12:15:35,426 [ 15776] INFO - #git4idea.commands.GitHandler - [.] git version 2024-04-22 12:15:35,593 [ 15943] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Registering project to adblib channel provider: Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks) 2024-04-22 12:15:35,630 [ 15980] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [kotlinBooks] 2024-04-22 12:15:36,088 [ 16438] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Checking bundle revision: 2024.1.1 vs Studio: 2024.1.1rc4 2024-04-22 12:15:36,262 [ 16612] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@74f735ce 2024-04-22 12:15:36,766 [ 17116] WARN - #c.i.u.x.Binding - No accessors for java.time.ZonedDateTime. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:15:37,028 [ 17378] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@74f735ce 2024-04-22 12:15:37,028 [ 17378] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@30af60b3 2024-04-22 12:15:37,052 [ 17402] INFO - #git4idea.commands.GitHandler - git version 2.44.0.windows.1 2024-04-22 12:15:37,083 [ 17433] WARN - #c.i.i.s.i.StartupManagerImpl - Migrate org.sonarlint.intellij.StartServicesOnProjectOpened to ProjectActivity [Plugin: org.sonarlint.idea] com.intellij.diagnostic.PluginException: Migrate org.sonarlint.intellij.StartServicesOnProjectOpened to ProjectActivity [Plugin: org.sonarlint.idea] at com.intellij.ide.startup.impl.StartupManagerImpl.runPostStartupActivities(StartupManagerImpl.kt:275) at com.intellij.ide.startup.impl.StartupManagerImpl.access$runPostStartupActivities(StartupManagerImpl.kt:68) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invokeSuspend(StartupManagerImpl.kt:191) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167) at kotlinx.coroutines.BuildersKt.withContext(Unknown Source) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3.invokeSuspend(StartupManagerImpl.kt:190) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:37,102 [ 17452] WARN - #c.i.i.s.i.StartupManagerImpl - Migrate طẉ to ProjectActivity [Plugin: izhangzhihao.rainbow.brackets] com.intellij.diagnostic.PluginException: Migrate طẉ to ProjectActivity [Plugin: izhangzhihao.rainbow.brackets] at com.intellij.ide.startup.impl.StartupManagerImpl.runPostStartupActivities(StartupManagerImpl.kt:275) at com.intellij.ide.startup.impl.StartupManagerImpl.access$runPostStartupActivities(StartupManagerImpl.kt:68) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invokeSuspend(StartupManagerImpl.kt:191) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167) at kotlinx.coroutines.BuildersKt.withContext(Unknown Source) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3.invokeSuspend(StartupManagerImpl.kt:190) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:37,107 [ 17457] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@30af60b3 2024-04-22 12:15:37,128 [ 17478] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Trying to download config XML from https://developer.android.com/studio/releases/assistant/2024.1.1.xml 2024-04-22 12:15:37,133 [ 17483] INFO - #git4idea.config.GitExecutableManager - Git version for C:\Program Files\Git\cmd\git.exe: 2.44.0.0 (MSYS) 2024-04-22 12:15:37,576 [ 17926] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:15:38,106 [ 18456] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.SdkEntity from files 2024-04-22 12:15:38,129 [ 18479] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.LibraryEntity from files 2024-04-22 12:15:38,410 [ 18760] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:38,413 [ 18763] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 11 in 5 ms: Sync global entities with project: kotlinBooks 2024-04-22 12:15:38,413 [ 18763] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Global model updated to version 2 in 10 ms: Sync global entities with state 2024-04-22 12:15:38,497 [ 18847] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Remote WNA config file not found java.io.FileNotFoundException: https://developer.android.com/studio/releases/assistant/2024.1.1.xml at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996) at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.downloadConfig(WhatsNewBundleCreator.java:250) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.updateConfig(WhatsNewBundleCreator.java:237) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.isNewConfigVersion(WhatsNewBundleCreator.java:160) at com.android.tools.idea.whatsnew.assistant.WhatsNewCheckVersionTask.run(WhatsNewCheckVersionTask.kt:34) at com.intellij.openapi.progress.impl.CoreProgressManager.startTask(CoreProgressManager.java:477) at com.intellij.openapi.progress.impl.ProgressManagerImpl.startTask(ProgressManagerImpl.java:133) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcessWithProgressAsynchronously$6(CoreProgressManager.java:528) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$4(ProgressRunner.java:250) at com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(ProgressManager.java:100) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(CoreProgressManager.java:221) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(trace.kt:46) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:220) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.openapi.progress.ProgressManager.runProcess(ProgressManager.java:100) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$5(ProgressRunner.java:250) at com.intellij.openapi.progress.impl.ProgressRunner$ProgressRunnable.run(ProgressRunner.java:500) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:86) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:81) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$launchTask$18(ProgressRunner.java:466) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:15:38,861 [ 19211] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of kotlinBooks uses 3 scanning threads 2024-04-22 12:15:38,864 [ 19214] WARN - #c.i.u.x.Binding - No accessors for org.jetbrains.kotlin.cli.common.arguments.InternalArgument. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:15:38,958 [ 19308] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:15:39,201 [ 19551] INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 1588 millis (read time: 1583) 2024-04-22 12:15:39,253 [ 19603] WARN - #com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity - Overriding OCInitialTablesBuildingActivity with HotfixForOCInitialTablesBuildingActivity 2024-04-22 12:15:39,421 [ 19771] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:39,441 [ 19791] INFO - #c.i.o.a.i.ActionUpdater - 366 ms to grab EDT for FontEditorPreview$RestorePreviewTextAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$RestorePreviewTextAction) 2024-04-22 12:15:39,441 [ 19791] INFO - #c.i.o.a.i.ActionUpdater - 358 ms to grab EDT for EditorMarkupModelImpl$TrafficLightAction#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$TrafficLightAction) 2024-04-22 12:15:39,441 [ 19791] INFO - #c.i.o.a.i.ActionUpdater - 358 ms to grab EDT for EditorMarkupModelImpl$1#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$1) 2024-04-22 12:15:39,441 [ 19791] INFO - #c.i.o.a.i.ActionUpdater - 358 ms to grab EDT for ExpandAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.ExpandAllAction) 2024-04-22 12:15:39,442 [ 19792] INFO - #c.i.o.a.i.ActionUpdater - 358 ms to grab EDT for CollapseAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.CollapseAllAction) 2024-04-22 12:15:39,443 [ 19793] INFO - #c.i.o.a.i.ActionUpdater - 366 ms to grab EDT for FontEditorPreview$ToggleBoldFontAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$ToggleBoldFontAction) 2024-04-22 12:15:40,227 [ 20577] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [kotlinBooks] 2024-04-22 12:15:40,239 [ 20589] INFO - #com.android.studio.ml.aida.AidaModelProvider - No geo-lock detected for Studio Bot 2024-04-22 12:15:40,485 [ 20835] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:15:40,488 [ 20838] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:15:40,489 [ 20839] INFO - #com.android.tools.idea.adb.AdbService - Initializing adb using: C:\Users\anoua\AppData\Local\Android\Sdk\platform-tools\adb.exe 2024-04-22 12:15:40,501 [ 20851] INFO - #com.android.tools.idea.adb.AdbService - 'adblib.migration.ddmlib.idevicemanager' flag is set to true 2024-04-22 12:15:40,508 [ 20858] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:15:40,513 [ 20863] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:15:41,058 [ 21408] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@18087bb6 2024-04-22 12:15:41,124 [ 21474] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@18087bb6 2024-04-22 12:15:41,514 [ 21864] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], definitions = [KotlinInitScript] 2024-04-22 12:15:41,518 [ 21868] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:15:41,520 [ 21870] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:15:41,601 [ 21951] INFO - #com.android.tools.idea.imports.GMavenIndexRepository - HTTP not modified since the last request for URL: https://dl.google.com/android/studio/gmaven/index/release/v0.1/classes-v0.1.json.gz (etag: "27ab8c8"). 2024-04-22 12:15:41,601 [ 21951] INFO - #com.android.tools.idea.imports.GMavenIndexRepository - Kept the old disk cache with an old ETag header: "27ab8c8". 2024-04-22 12:15:41,657 [ 22007] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$4157/0x0000000802245c60@1957df95) 2024-04-22 12:15:41,762 [ 22112] INFO - #c.j.c.lang - [Building Activity] Symbols unloaded 2024-04-22 12:15:41,819 [ 22169] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], definitions = [KotlinSettingsScript] 2024-04-22 12:15:41,823 [ 22173] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:15:41,900 [ 22250] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:15:41,901 [ 22251] INFO - #c.j.c.lang - [Building Activity] Building symbols… finished in 134 ms 2024-04-22 12:15:42,023 [ 22373] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], definitions = [KotlinBuildScript] 2024-04-22 12:15:42,173 [ 22523] INFO - #c.i.o.a.i.ActionUpdater - 733 ms to grab EDT for FontEditorPreview$RestorePreviewTextAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$RestorePreviewTextAction) 2024-04-22 12:15:42,174 [ 22524] INFO - #c.i.o.a.i.ActionUpdater - 733 ms to grab EDT for EditorMarkupModelImpl$TrafficLightAction#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$TrafficLightAction) 2024-04-22 12:15:42,174 [ 22524] INFO - #c.i.o.a.i.ActionUpdater - 732 ms to grab EDT for EditorMarkupModelImpl$1#presentation@EditorInspectionsToolbar (com.intellij.openapi.editor.impl.EditorMarkupModelImpl$1) 2024-04-22 12:15:42,188 [ 22538] INFO - #c.i.o.a.i.ActionUpdater - 734 ms to grab EDT for FontEditorPreview$ToggleBoldFontAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$ToggleBoldFontAction) 2024-04-22 12:15:42,389 [ 22739] INFO - #com.github.copilot.chat.window.CopilotChatToolWindow - Chat enabled: true 2024-04-22 12:15:42,456 [ 22806] INFO - #c.i.o.p.SmartModeScheduler - Post-startup activity executed. Current mode: 7 2024-04-22 12:15:42,565 [ 22915] INFO - #c.i.i.s.IdeStartupScripts - 0 startup script(s) found 2024-04-22 12:15:42,599 [ 22949] INFO - #c.j.c.lang - [Building Activity] Loading header maps… finished in 695 ms 2024-04-22 12:15:42,605 [ 22955] INFO - #c.j.c.lang - [Building Activity] Loading headers search roots… finished in 2 ms 2024-04-22 12:15:42,649 [ 22999] INFO - STDERR - SLF4J: A SLF4J service provider failed to instantiate: 2024-04-22 12:15:42,649 [ 22999] INFO - STDERR - org.slf4j.spi.SLF4JServiceProvider: org.slf4j.jul.JULServiceProvider not a subtype 2024-04-22 12:15:42,656 [ 23006] INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 8197ms; general responsiveness: 0/15 sluggish, 15/15 very slow; EDT responsiveness: 1/3 sluggish, 1/3 very slow 2024-04-22 12:15:42,701 [ 23051] INFO - #c.j.c.l.m.ModuleMapLog - Loaded 0 module maps in 0 packs for 0 search roots 2024-04-22 12:15:42,701 [ 23051] INFO - #c.j.c.lang - [Building Activity] Loading module maps… finished in 94 ms 2024-04-22 12:15:42,765 [ 23115] INFO - #c.j.c.lang - [Building Activity] Collecting files finished in 62 ms 2024-04-22 12:15:43,009 [ 23359] INFO - #c.i.v.l.d.i.IndexDiagnosticRunner - Index diagnostic for 24 commits in [file://C:/IntellijProjects/kotlinBooks] is completed 2024-04-22 12:15:43,051 [ 23401] WARN - #com.android.ddmlib - * daemon not running; starting now at tcp:5037 2024-04-22 12:15:43,297 [ 23647] INFO - STDERR - [DefaultDispatcher-worker-40] INFO jetbrains.exodus.io.FileDataWriter - Uninterruptible file channel will be used 2024-04-22 12:15:43,297 [ 23647] INFO - STDERR - [DefaultDispatcher-worker-40] WARN jetbrains.exodus.io.FileDataWriter - Can't open directory channel. Log directory fsync won't be performed. 2024-04-22 12:15:43,671 [ 24021] INFO - #c.j.c.lang - Loaded 0 tables for 0 files (0 project files) 2024-04-22 12:15:43,672 [ 24022] INFO - #c.j.c.lang - [Building Activity] Loading symbols finished in 907 ms 2024-04-22 12:15:43,708 [ 24058] INFO - #c.j.c.l.m.ModuleMapLog - Building module maps for 0 (root, configuration) pairs 2024-04-22 12:15:43,715 [ 24065] INFO - #c.j.c.lang - [Building Activity] Building module maps… finished in 2 ms 2024-04-22 12:15:43,717 [ 24067] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 2 ms 2024-04-22 12:15:43,727 [ 24077] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 8 ms 2024-04-22 12:15:43,729 [ 24079] INFO - #c.j.c.l.m.ModuleMapLog - Saved 0 module maps in 0 packs 2024-04-22 12:15:43,743 [ 24093] INFO - #c.j.c.lang - [Building Activity] Saving module maps… finished in 15 ms 2024-04-22 12:15:43,785 [ 24135] INFO - #c.j.c.lang - Building symbols for 0 source files 2024-04-22 12:15:43,954 [ 24304] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 34 ms 2024-04-22 12:15:43,970 [ 24320] INFO - #c.j.c.lang - Building symbols for 0 unused headers 2024-04-22 12:15:44,012 [ 24362] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 26 ms 2024-04-22 12:15:44,012 [ 24362] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 26 ms 2024-04-22 12:15:44,033 [ 24383] INFO - STDERR - [DefaultDispatcher-worker-40] INFO jetbrains.exodus.env.EnvironmentImpl - Exodus environment created: C:\Users\anoua\AppData\Local\github-copilot\ai\chat-sessions\2VReuhQxB1Fwramd8Sp9UQRUL9Q 2024-04-22 12:15:44,036 [ 24386] INFO - #c.j.c.lang - [Building Activity] Symbols loaded 2024-04-22 12:15:44,040 [ 24390] INFO - #c.j.c.lang - Building symbols in FAST mode, 0 source files from total 0 project files 2024-04-22 12:15:44,053 [ 24403] INFO - #c.j.c.lang - Saving modified symbols for 0 files (0 tables of total 0) 2024-04-22 12:15:44,064 [ 24414] INFO - #c.j.c.lang - [Building Activity] Saving symbols… finished in 16 ms 2024-04-22 12:15:44,078 [ 24428] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$4157/0x0000000802245c60@1957df95) 2024-04-22 12:15:44,150 [ 24500] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:15:44,683 [ 25033] INFO - #com.github.copilot.chat.input.prompt.templates.PromptTemplateService - null java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1960) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2095) at org.jetbrains.concurrency.AsyncPromise.get(AsyncPromise.kt:51) at org.jetbrains.concurrency.AsyncPromise.blockingGet(AsyncPromise.kt:130) at org.jetbrains.concurrency.Promise.blockingGet(Promise.java:104) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.fetchPromptTemplates(PromptTemplateService.kt:37) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.getPromptTemplates(PromptTemplateService.kt:25) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.getPromptTemplates$default(PromptTemplateService.kt:23) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService$1$1.invokeSuspend(PromptTemplateService.kt:19) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:44,783 [ 25133] INFO - #com.github.copilot.chat.input.prompt.templates.PromptTemplateService - null java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1960) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2095) at org.jetbrains.concurrency.AsyncPromise.get(AsyncPromise.kt:51) at org.jetbrains.concurrency.AsyncPromise.blockingGet(AsyncPromise.kt:130) at org.jetbrains.concurrency.Promise.blockingGet(Promise.java:104) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.fetchPromptTemplates(PromptTemplateService.kt:37) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.getPromptTemplates(PromptTemplateService.kt:25) at com.github.copilot.chat.input.prompt.templates.PromptTemplateService.getPromptTemplates$default(PromptTemplateService.kt:23) at com.github.copilot.chat.input.CopilotChatInputTextArea.initPrompts(CopilotChatInputTextArea.kt:63) at com.github.copilot.chat.input.CopilotChatInputTextArea.access$initPrompts(CopilotChatInputTextArea.kt:28) at com.github.copilot.chat.input.CopilotChatInputTextArea$3$1.invokeSuspend(CopilotChatInputTextArea.kt:52) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:45,082 [ 25432] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:45,508 [ 25858] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning completed for kotlinBooks. Number of scanned files: 212426; number of files for indexing: 0 took 10238ms; general responsiveness: 1/18 sluggish, 15/18 very slow; EDT responsiveness: 1/6 sluggish, 1/6 very slow 2024-04-22 12:15:45,509 [ 25859] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: marking roots for initial VFS refresh 2024-04-22 12:15:45,510 [ 25860] INFO - #c.i.u.i.PerProjectIndexingQueue - Finished for kotlinBooks. No files to index with loading content. 2024-04-22 12:15:45,521 [ 25871] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: starting initial VFS refresh of 147 roots 2024-04-22 12:15:45,522 [ 25872] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:15:45,862 [ 26212] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: initial VFS refresh finished in 339 ms 2024-04-22 12:15:47,564 [ 27914] INFO - #com.android.tools.idea.vitals.client.grpc.VitalsGrpcClientImpl - Play Vitals gRpc server connected at playdeveloperreporting.googleapis.com 2024-04-22 12:15:47,614 [ 27964] INFO - #com.google.services.firebase.insights.client.grpc.CrashlyticsGrpcClientImpl - App Quality Insights gRpc server connected at firebasecrashlytics.googleapis.com 2024-04-22 12:15:47,837 [ 28187] INFO - #o.j.j.b.i.CompilerReferenceIndex - backward reference index version doesn't exist 2024-04-22 12:15:47,842 [ 28192] INFO - #com.android.build.diagnostic.WindowsDefenderCheckService - status check is disabled 2024-04-22 12:15:47,845 [ 28195] INFO - #c.i.c.b.IsUpToDateCheckStartupActivity - suitable consumer is not found 2024-04-22 12:15:48,001 [ 28351] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Sync global entities with mutable entity storage 2024-04-22 12:15:48,009 [ 28359] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Apply JPS storage (iml files) 2024-04-22 12:15:48,013 [ 28363] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-code-vision-kotlinBooks-5c450b83 with size 16 2024-04-22 12:15:48,295 [ 28645] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:15:48,299 [ 28649] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Changes were successfully applied 2024-04-22 12:15:48,310 [ 28660] INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Util - Workspace model loaded from cache. Syncing real project state into workspace model in 644 ms. Thread[DefaultDispatcher-worker-49,5,main] 2024-04-22 12:15:48,339 [ 28689] INFO - #com.android.tools.idea.gradle.project.AndroidGradleProjectStartupActivity - Up-to-date models found in the cache. Not invoking Gradle sync. 2024-04-22 12:15:48,388 [ 28738] WARN - #com.android.ddmlib - * daemon started successfully 2024-04-22 12:15:48,514 [ 28864] INFO - #com.google.services.firebase.insights.config.FirebaseAppManager - New app states: {}. 2024-04-22 12:15:48,518 [ 28868] WARN - #c.i.u.x.Binding - No accessors for com.android.gmdcodecompletion.managedvirtual.ManagedVirtualDeviceCatalog. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:15:48,523 [ 28873] WARN - #c.i.u.x.Binding - No accessors for com.android.gmdcodecompletion.ftl.FtlDeviceCatalog. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:15:48,597 [ 28947] INFO - #com.android.ddmlib - Connected to adb for device monitoring 2024-04-22 12:15:48,675 [ 29025] INFO - #com.android.tools.idea.adb.AdbService - Successfully connected to adb 2024-04-22 12:15:48,731 [ 29081] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 4,998.0 msec remaining, 2.0 msec elapsed 2024-04-22 12:15:48,747 [ 29097] INFO - #com.android.adblib.impl.SessionDeviceTracker - trackDevices() failed, will retry in 2000 millis, connection id=2 java.util.concurrent.TimeoutException: Operation has timed out at com.android.adblib.impl.TimeoutTracker.throwIfElapsed(TimeoutTracker.kt:106) at com.android.adblib.impl.AdbChannelProviderConnectAddresses$createChannel$2.invokeSuspend(AdbChannelProviderConnectAddresses.kt:58) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.UndispatchedCoroutine.afterResume(CoroutineContext.kt:270) at kotlinx.coroutines.AbstractCoroutine.resumeWith(AbstractCoroutine.kt:102) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:46) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:15:48,868 [ 29218] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:15:49,880 [ 30230] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/addons_list-6.xml 2024-04-22 12:15:50,443 [ 30793] INFO - #com.android.tools.idea.vitals.ui.VitalsConfigurationManager - Accessible Android Vitals connections: [] 2024-04-22 12:15:50,487 [ 30837] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-automotive-distantdisplay/sys-img2-4.xml 2024-04-22 12:15:50,520 [ 30870] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android/sys-img2-4.xml 2024-04-22 12:15:50,520 [ 30870] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-automotive/sys-img2-4.xml 2024-04-22 12:15:50,521 [ 30871] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-wear/sys-img2-4.xml 2024-04-22 12:15:50,521 [ 30871] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/repository2-2.xml 2024-04-22 12:15:50,521 [ 30871] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-wear-cn/sys-img2-4.xml 2024-04-22 12:15:50,524 [ 30874] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-tv/sys-img2-4.xml 2024-04-22 12:15:50,524 [ 30874] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/aosp_atd/sys-img2-4.xml 2024-04-22 12:15:50,526 [ 30876] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_atd/sys-img2-4.xml 2024-04-22 12:15:50,526 [ 30876] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis/sys-img2-4.xml 2024-04-22 12:15:50,528 [ 30878] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google-tv/sys-img2-4.xml 2024-04-22 12:15:50,528 [ 30878] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis_playstore/sys-img2-4.xml 2024-04-22 12:15:50,530 [ 30880] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-desktop/sys-img2-4.xml 2024-04-22 12:15:50,530 [ 30880] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis_tablet/sys-img2-4.xml 2024-04-22 12:15:50,532 [ 30882] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/aosp_tablet/sys-img2-4.xml 2024-04-22 12:15:50,532 [ 30882] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_playstore_tablet/sys-img2-4.xml 2024-04-22 12:15:50,534 [ 30884] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/glass/addon2-3.xml 2024-04-22 12:15:50,534 [ 30884] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/extras/intel/addon2-3.xml 2024-04-22 12:15:50,536 [ 30886] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/addon2-3.xml 2024-04-22 12:15:50,537 [ 30887] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/repository2-3.xml 2024-04-22 12:15:50,554 [ 30904] INFO - STDERR - SLF4J: A SLF4J service provider failed to instantiate: 2024-04-22 12:15:50,555 [ 30905] INFO - STDERR - org.slf4j.spi.SLF4JServiceProvider: org.slf4j.jul.JULServiceProvider not a subtype 2024-04-22 12:15:50,646 [ 30996] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:15:50,753 [ 31103] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 4,999.0 msec remaining, 0.0 msec elapsed 2024-04-22 12:15:52,150 [ 32500] WARN - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Errors during XML parse: 2024-04-22 12:15:52,151 [ 32501] WARN - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Additionally, the fallback loader failed to parse the XML. 2024-04-22 12:15:54,342 [ 34692] INFO - #c.i.o.e.s.p.IdeModifiableModelsProviderImpl - Ide modifiable models provider, create builder from version 14 2024-04-22 12:15:55,830 [ 36180] WARN - #c.i.o.m.LanguageLevelUtil - File not found: api23.txt 2024-04-22 12:15:57,323 [ 37673] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:15:57,344 [ 37694] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:15:57,344 [ 37694] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:15:57,345 [ 37695] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:16:03,687 [ 44037] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:16:03,688 [ 44038] SEVERE - #c.i.u.SlowOperations - Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. java.lang.Throwable: Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:376) at com.intellij.util.SlowOperations.assertSlowOperationsAreAllowed(SlowOperations.java:106) at com.intellij.openapi.vfs.newvfs.persistent.FSRecordsImpl.update(FSRecordsImpl.java:728) at com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.findChildInfo(PersistentFSImpl.java:673) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findInPersistence(VirtualDirectoryImpl.java:157) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.doFindChild(VirtualDirectoryImpl.java:139) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:85) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:534) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:51) at com.intellij.openapi.vfs.newvfs.VfsImplUtil.findFileByPath(VfsImplUtil.java:56) at com.intellij.openapi.vfs.impl.local.LocalFileSystemBase.findFileByPath(LocalFileSystemBase.java:115) at com.intellij.openapi.vfs.VfsUtil.findFile(VfsUtil.java:202) at com.intellij.openapi.vfs.VfsUtil.findFileByIoFile(VfsUtil.java:197) at com.android.tools.idea.gradle.util.PropertiesFiles.getProperties(PropertiesFiles.java:59) at com.android.tools.idea.gradle.util.GradleProperties.(GradleProperties.java:50) at com.android.tools.idea.memorysettings.GradleUserProperties.getProperties(GradleUserProperties.java:89) at com.android.tools.idea.memorysettings.GradleUserProperties.(GradleUserProperties.java:41) at com.android.tools.idea.memorysettings.DaemonMemorySettings.(DaemonMemorySettings.java:55) at com.android.tools.idea.memorysettings.GradleComponent.setUI(GradleComponent.java:83) at com.android.tools.idea.memorysettings.GradleComponent.(GradleComponent.java:53) at com.android.tools.idea.memorysettings.MemorySettingsGradleToken.createBuildSystemComponent(MemorySettingsGradleToken.java:34) at com.android.tools.idea.memorysettings.MemorySettingsGradleToken.createBuildSystemComponent(MemorySettingsGradleToken.java:29) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.createUIComponents(MemorySettingsConfigurable.java:329) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.$$$setupUI$$$(MemorySettingsConfigurable.java) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.(MemorySettingsConfigurable.java:129) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable.(MemorySettingsConfigurable.java:59) at com.android.tools.idea.memorysettings.MemorySettingsConfigurableProvider.createConfigurable(MemorySettingsConfigurableProvider.java:32) at com.intellij.openapi.options.ConfigurableEP$ProviderProducer.createElement(ConfigurableEP.java:406) at com.intellij.openapi.options.ConfigurableEP.createConfigurable(ConfigurableEP.java:338) at com.intellij.openapi.options.ex.ConfigurableWrapper.createConfigurable(ConfigurableWrapper.java:39) at com.intellij.openapi.options.ex.ConfigurableWrapper.getConfigurable(ConfigurableWrapper.java:116) at com.intellij.openapi.options.ex.ConfigurableWrapper.cast(ConfigurableWrapper.java:95) at com.intellij.openapi.options.newEditor.SettingsTreeView.findConfigurableProject(SettingsTreeView.java:350) at com.intellij.openapi.options.newEditor.SettingsTreeView$MyRenderer.getTreeCellRendererComponent(SettingsTreeView.java:650) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$NodeDimensionsHandler.getNodeDimensions(BasicTreeUI.java:3223) at java.desktop/javax.swing.tree.AbstractLayoutCache.getNodeDimensions(AbstractLayoutCache.java:497) at java.desktop/javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize(VariableHeightLayoutCache.java:1344) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.createNodeAt(VariableHeightLayoutCache.java:767) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.treeNodesInserted(VariableHeightLayoutCache.java:476) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$Handler.treeNodesInserted(BasicTreeUI.java:4368) at com.intellij.util.ui.tree.TreeModelListenerList.treeNodesInserted(TreeModelListenerList.java:85) at com.intellij.ui.tree.AsyncTreeModel.treeNodesInserted(AsyncTreeModel.java:371) at com.intellij.ui.tree.AsyncTreeModel$CmdGetChildren.applyNodeToUiTree(AsyncTreeModel.java:747) at com.intellij.ui.tree.AsyncTreeModel$Command.applyToUiTree(AsyncTreeModel.java:500) at com.intellij.ui.tree.AsyncTreeModel.lambda$applyToUiTree$13(AsyncTreeModel.java:303) at com.intellij.util.concurrency.Invoker$Task.run(Invoker.java:381) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:217) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.util.concurrency.Invoker.startTask(Invoker.java:236) at com.intellij.util.concurrency.Invoker.invokeSafely(Invoker.java:194) at com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(Invoker.java:177) at com.intellij.util.concurrency.ContextRunnable.run(ContextRunnable.java:27) at com.intellij.openapi.application.TransactionGuardImpl$1.run(TransactionGuardImpl.java:194) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.openapi.application.impl.ApplicationImpl$2.run(ApplicationImpl.java:419) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(ApplicationImpl.java:1152) at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:81) at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:123) at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:43) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:792) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:761) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$12(IdeEventQueue.kt:593) at com.intellij.openapi.application.impl.RwLockHolder.runWithoutImplicitRead(RwLockHolder.kt:105) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:593) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:121) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:191) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:236) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:234) at java.base/java.security.AccessController.doPrivileged(AccessController.java:318) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:234) at java.desktop/java.awt.Dialog.lambda$show$2(Dialog.java:1081) at java.desktop/sun.awt.SunToolkit.performOnMainThreadIfNeeded(SunToolkit.java:2170) at java.desktop/java.awt.Dialog.show(Dialog.java:1041) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:894) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:474) at com.intellij.openapi.ui.DialogWrapper.doShow(DialogWrapper.java:1754) at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:1703) at com.intellij.ide.actions.ShowSettingsUtilImpl.showSettingsDialog(ShowSettingsUtilImpl.kt:104) at com.intellij.ide.actions.ShowSettingsAction.perform(ShowSettingsAction.java:61) at com.intellij.ide.actions.ShowSettingsAction.actionPerformed(ShowSettingsAction.java:48) at com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(ActionUtil.kt:305) at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAwareWithCallbacks$lambda$4(ActionUtil.kt:276) at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(ActionManagerImpl.kt:1165) at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAwareWithCallbacks(ActionUtil.kt:275) at com.intellij.ui.popup.ActionPopupStep.performActionItem(ActionPopupStep.java:264) at com.intellij.ui.popup.ActionPopupStep.lambda$onChosen$3(ActionPopupStep.java:235) at com.intellij.ui.popup.AbstractPopup.lambda$dispose$18(AbstractPopup.java:1766) at com.intellij.openapi.wm.impl.FocusManagerImpl.lambda$doWhenFocusSettlesDown$4(FocusManagerImpl.java:174) at com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(EdtInvocationManager.java:33) at com.intellij.ide.IdeEventQueue.ifFocusEventsInTheQueue(IdeEventQueue.kt:226) at com.intellij.ide.IdeEventQueue.executeWhenAllFocusEventsLeftTheQueue(IdeEventQueue.kt:192) at com.intellij.openapi.wm.impl.FocusManagerImpl.doWhenFocusSettlesDown(FocusManagerImpl.java:170) at com.intellij.openapi.wm.impl.FocusManagerImpl.doWhenFocusSettlesDown(FocusManagerImpl.java:164) at com.intellij.ui.popup.AbstractPopup.dispose(AbstractPopup.java:1764) at com.intellij.ui.popup.WizardPopup.dispose(WizardPopup.java:178) at com.intellij.ui.popup.list.ListPopupImpl.dispose(ListPopupImpl.java:404) at com.intellij.ui.popup.PopupFactoryImpl$ActionGroupPopup.dispose(PopupFactoryImpl.java:295) at com.intellij.openapi.util.ObjectTree.runWithTrace(ObjectTree.java:130) at com.intellij.openapi.util.ObjectTree.executeAll(ObjectTree.java:162) at com.intellij.openapi.util.Disposer.dispose(Disposer.java:205) at com.intellij.openapi.util.Disposer.dispose(Disposer.java:193) at com.intellij.ui.popup.WizardPopup.disposeAllParents(WizardPopup.java:286) at com.intellij.ui.popup.list.ListPopupImpl.disposePopup(ListPopupImpl.java:528) at com.intellij.ui.popup.list.ListPopupImpl.handleNextStep(ListPopupImpl.java:552) at com.intellij.ui.popup.list.ListPopupImpl._handleSelect(ListPopupImpl.java:515) at com.intellij.ui.popup.list.ListPopupImpl.handleSelect(ListPopupImpl.java:446) at com.intellij.ui.popup.PopupFactoryImpl$ActionGroupPopup.handleSelect(PopupFactoryImpl.java:307) at com.intellij.ui.popup.list.ListPopupImpl$MyMouseListener.mouseReleased(ListPopupImpl.java:755) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:298) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at com.intellij.ui.popup.list.ListPopupImpl$MyList.processMouseEvent(ListPopupImpl.java:820) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:16:03,693 [ 44043] SEVERE - #c.i.u.SlowOperations - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:16:03,694 [ 44044] SEVERE - #c.i.u.SlowOperations - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:16:03,694 [ 44044] SEVERE - #c.i.u.SlowOperations - OS: Windows 10 2024-04-22 12:16:03,695 [ 44045] SEVERE - #c.i.u.SlowOperations - Last Action: ShowSettings 2024-04-22 12:16:03,715 [ 44065] INFO - #com.android.tools.idea.memorysettings.MemorySettingsRecommendation - recommendation based on machine: 2048, on project: 2048 2024-04-22 12:16:03,724 [ 44074] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:16:07,967 [ 48317] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 12:16:07,991 [ 48341] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 12:16:07,997 [ 48347] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 12:16:08,017 [ 48367] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 12:16:08,141 [ 48491] WARN - JetBrains UI DSL - Unsupported labeled component com.intellij.openapi.actionSystem.ex.ComboBoxAction$ComboBoxButton, label 'Severity:' 2024-04-22 12:16:22,213 [ 62563] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:16:22,213 [ 62563] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:16:22,214 [ 62564] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:16:22,858 [ 63208] WARN - #c.i.u.x.Binding - No accessors for com.intellij.platform.feedback.impl.state.DontShowAgainFeedbackState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:16:22,859 [ 63209] WARN - #c.i.u.x.Binding - No accessors for com.intellij.platform.feedback.impl.state.CommonFeedbackSurveysState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:16:27,346 [ 67696] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs from [C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\caches\huge-gists] ... 2024-04-22 12:16:27,347 [ 67697] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs finished 2024-04-22 12:16:55,419 [ 95769] WARN - #c.i.o.o.e.ConfigurableCardPanel - auto-dispose 'Plugins' id=preferences.pluginManager 2024-04-22 12:16:55,711 [ 96061] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:16:55,714 [ 96064] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:16:56,243 [ 96593] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:16:56,244 [ 96594] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:16:56,245 [ 96595] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:16:56,382 [ 96732] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:16:56,395 [ 96745] INFO - #c.i.c.ComponentStoreImpl - Saving appExportableFileTemplateSettings took 85 ms, HtmlSettings took 15 ms 2024-04-22 12:16:56,639 [ 96989] WARN - #c.i.u.x.Binding - No accessors for org.jetbrains.kotlin.idea.projectConfiguration.KotlinNotConfiguredSuppressedModulesState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:16:56,673 [ 97023] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)XDebuggerManager took 17 ms 2024-04-22 12:16:56,734 [ 97084] INFO - #c.i.o.c.i.s.StoreUtil - saveProjectsAndApp took 1025 ms 2024-04-22 12:16:58,527 [ 98877] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:16:58,528 [ 98878] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:16:58,536 [ 98886] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:16:58,536 [ 98886] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:16:58,537 [ 98887] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:16:58,549 [ 98899] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:17:16,698 [ 117048] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:16,699 [ 117049] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:29,076 [ 129426] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:17:29,080 [ 129430] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:17:29,081 [ 129431] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:17:29,081 [ 129431] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:17:29,235 [ 129585] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:17:29,240 [ 129590] INFO - #com.android.tools.idea.memorysettings.MemorySettingsRecommendation - recommendation based on machine: 2048, on project: 2048 2024-04-22 12:17:29,245 [ 129595] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:17:32,129 [ 132479] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:32,130 [ 132480] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:34,708 [ 135058] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:34,709 [ 135059] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:38,812 [ 139162] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:38,813 [ 139163] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:43,105 [ 143455] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:43,106 [ 143456] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:43,303 [ 143653] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)Kotlin2JvmCompilerArguments took 50 ms, RunManager took 31 ms 2024-04-22 12:17:46,013 [ 146363] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:17:46,014 [ 146364] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:17:46,081 [ 146431] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)Kotlin2JsCompilerArguments took 14 ms 2024-04-22 12:18:17,283 [ 177633] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:18:17,284 [ 177634] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:19:00,336 [ 220686] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:19:00,337 [ 220687] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:19:04,344 [ 224694] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:19:04,344 [ 224694] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:21:34,909 [ 375259] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:21:34,909 [ 375259] INFO - STDOUT - 2024-04-22 12:21:37,372 [ 377722] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:21:37,372 [ 377722] INFO - STDOUT - 2024-04-22 12:21:49,912 [ 390262] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:21:49,912 [ 390262] INFO - STDOUT - 2024-04-22 12:22:35,159 [ 435509] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:22:35,160 [ 435510] INFO - STDOUT - 2024-04-22 12:22:50,043 [ 450393] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:22:50,043 [ 450393] INFO - STDOUT - 2024-04-22 12:23:04,999 [ 465349] INFO - STDOUT - C:\IntellijProjects\kotlinBooks\app\src\main\kotlin\kotlinlang\classes\Constructors.kt:10:1: Needless blank line(s) [NoConsecutiveBlankLines] 2024-04-22 12:23:04,999 [ 465349] INFO - STDOUT - 2024-04-22 12:25:20,350 [ 600700] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:25:20,351 [ 600701] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:25:20,360 [ 600710] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:25:20,360 [ 600710] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:25:20,360 [ 600710] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:25:20,435 [ 600785] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)ToolWindowManager took 17 ms 2024-04-22 12:25:33,380 [ 613730] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:25:33,380 [ 613730] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:25:40,391 [ 620741] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:25:40,395 [ 620745] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:25:40,396 [ 620746] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:25:40,396 [ 620746] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:26:14,056 [ 654406] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:26:14,057 [ 654407] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:26:14,064 [ 654414] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:26:14,064 [ 654414] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:26:14,064 [ 654414] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:26:14,072 [ 654422] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:26:16,971 [ 657321] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:26:16,974 [ 657324] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:26:16,974 [ 657324] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:26:16,975 [ 657325] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:26:39,338 [ 679688] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:26:39,339 [ 679689] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:26:39,346 [ 679696] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:26:39,346 [ 679696] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:26:39,346 [ 679696] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:26:39,355 [ 679705] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:26:40,013 [ 680363] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="Android.CreateResourcesActionGroup" class="org.jetbrains.android.actions.CreateResourceFileActionGroup" 2024-04-22 12:26:40,980 [ 681330] INFO - #c.i.o.w.i.WindowManagerImpl - === Release(true) frame on closed project === 2024-04-22 12:26:41,010 [ 681360] INFO - #com.android.tools.idea.adb.AdbService - Ddmlib can be terminated as all projects have been closed 2024-04-22 12:26:41,038 [ 681388] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Unregistering project from adblib channel provider: Project(name=kotlinBooks, containerState=DISPOSE_IN_PROGRESS, componentStore=C:\IntellijProjects\kotlinBooks) (disposed) 2024-04-22 12:26:41,072 [ 681422] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:26:41,171 [ 681521] INFO - #c.i.d.PerformanceWatcherImpl - Too many threads: 35 created in the global Application pool. (reasonable.application.thread.pool.size=30, available processors: 4); thread dump is saved to 'C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\log\threadDumps-newPooledThread\threadDump-20240422-122641-1713785201165.txt' 2024-04-22 12:26:41,213 [ 681563] INFO - #o.j.k.i.s.r.KotlinCompilerReferenceIndexStorage - KCRI storage is closed (didn't exist) 2024-04-22 12:26:41,213 [ 681563] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist) 2024-04-22 12:26:41,234 [ 681584] INFO - #com.android.adblib.impl.SessionDeviceTracker - trackDevices() failed, will retry in 2000 millis, connection id=2 java.io.IOException: The specified network name is no longer available at java.base/sun.nio.ch.Iocp.translateErrorToIOException(Iocp.java:299) at java.base/sun.nio.ch.Iocp$EventHandlerTask.run(Iocp.java:389) at java.base/sun.nio.ch.AsynchronousChannelGroupImpl$1.run(AsynchronousChannelGroupImpl.java:113) at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:244) at com.intellij.util.concurrency.BoundedTaskExecutor.access$200(BoundedTaskExecutor.java:30) at com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue(BoundedTaskExecutor.java:222) at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:218) at com.intellij.util.concurrency.BoundedTaskExecutor$1.run(BoundedTaskExecutor.java:210) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:26:41,240 [ 681590] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:26:41,543 [ 681893] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:26:41,543 [ 681893] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:26:43,245 [ 683595] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:26:43,245 [ 683595] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:26:43,245 [ 683595] INFO - #com.android.tools.idea.adb.AdbService - Initializing adb using: C:\Users\anoua\AppData\Local\Android\Sdk\platform-tools\adb.exe 2024-04-22 12:26:43,245 [ 683595] INFO - #com.android.tools.idea.adb.AdbService - 'adblib.migration.ddmlib.idevicemanager' flag is set to true 2024-04-22 12:26:44,416 [ 684766] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:26:44,423 [ 684773] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:26:44,423 [ 684773] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:26:44,487 [ 684837] WARN - #com.android.ddmlib - * daemon not running; starting now at tcp:5037 2024-04-22 12:26:44,501 [ 684851] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:26:44,501 [ 684851] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:26:44,549 [ 684899] WARN - #com.android.ddmlib - * daemon started successfully 2024-04-22 12:26:44,566 [ 684916] INFO - #com.android.ddmlib - Connected to adb for device monitoring 2024-04-22 12:26:44,769 [ 685119] INFO - #com.android.tools.idea.adb.AdbService - Successfully connected to adb 2024-04-22 12:26:44,773 [ 685123] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 4,999.0 msec remaining, 0.0 msec elapsed 2024-04-22 12:26:47,944 [ 688294] INFO - c.j.cidr - clangd modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/Default (Template) Project 2024-04-22 12:26:47,944 [ 688294] INFO - c.j.cidr - clangd cpp20 modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/Default (Template) Project/cpp20 2024-04-22 12:26:56,906 [ 697256] SEVERE - #c.i.i.p.PluginManager - com.intellij.compiler.server.BuildManager methods should not be called for default project java.lang.AssertionError: com.intellij.compiler.server.BuildManager methods should not be called for default project at com.intellij.compiler.server.BuildManager.getProjectPath(BuildManager.java:654) at com.intellij.compiler.server.BuildManager.clearState(BuildManager.java:598) at com.intellij.compiler.server.impl.BuildProcessPreloadedStateClearer.rootsChanged(BuildProcessPreloadedStateClearer.java:140) at com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(MessageBusImpl.kt:700) at com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(MessageBusImpl.kt:660) at com.intellij.util.messages.impl.MessageBusImplKt.deliverMessage(MessageBusImpl.kt:423) at com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(MessageBusImpl.kt:402) at com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(MessageBusImpl.kt:1) at com.intellij.util.messages.impl.MessagePublisher.invoke(MessageBusImpl.kt:461) at jdk.proxy2/jdk.proxy2.$Proxy383.rootsChanged(Unknown Source) at com.intellij.openapi.roots.impl.ProjectRootManagerComponent.fireRootsChangedEvent(ProjectRootManagerComponent.kt:251) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.fireRootsChanged(ProjectRootManagerImpl.kt:468) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.access$fireRootsChanged(ProjectRootManagerImpl.kt:38) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$rootsChanged$1.fireRootsChanged(ProjectRootManagerImpl.kt:142) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$rootsChanged$1.fireRootsChanged(ProjectRootManagerImpl.kt:140) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$BatchSession.rootsChanged(ProjectRootManagerImpl.kt:121) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.makeRootsChange(ProjectRootManagerImpl.kt:437) at org.jetbrains.kotlin.idea.base.util.ProjectStructureUtils.invalidateProjectRoots(ProjectStructureUtils.kt:51) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab$3.invoke(KotlinCompilerConfigurableTab.java:665) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWriteAction$lambda$1(ApplicationUtils.kt:26) at com.intellij.openapi.application.impl.RwLockHolder.runWriteAction(RwLockHolder.kt:354) at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:888) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWriteAction(ApplicationUtils.kt:26) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab.applyTo(KotlinCompilerConfigurableTab.java:661) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab.apply(KotlinCompilerConfigurableTab.java:725) at com.intellij.openapi.options.ex.ConfigurableWrapper.apply(ConfigurableWrapper.java:191) at com.intellij.openapi.options.newEditor.ConfigurableEditor.apply(ConfigurableEditor.java:311) at com.intellij.openapi.options.newEditor.SettingsEditor$5.apply(SettingsEditor.java:200) at com.intellij.openapi.options.newEditor.ConfigurableEditor$2.actionPerformed(ConfigurableEditor.java:66) at com.intellij.openapi.options.newEditor.SettingsDialog$ApplyActionWrapper.actionPerformed(SettingsDialog.java:256) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972) at com.intellij.openapi.ui.DialogWrapper$3.fireActionPerformed(DialogWrapper.java:803) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:106) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:121) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:191) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:236) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:234) at java.base/java.security.AccessController.doPrivileged(AccessController.java:318) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:234) at java.desktop/java.awt.Dialog.lambda$show$2(Dialog.java:1081) at java.desktop/sun.awt.SunToolkit.performOnMainThreadIfNeeded(SunToolkit.java:2170) at java.desktop/java.awt.Dialog.show(Dialog.java:1041) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:894) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:474) at com.intellij.openapi.ui.DialogWrapper.doShow(DialogWrapper.java:1754) at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:1703) at com.intellij.ide.actions.ShowSettingsUtilImpl.showSettingsDialog(ShowSettingsUtilImpl.kt:104) at com.intellij.openapi.wm.impl.welcomeScreen.CustomizeTab$buildComponent$1$6$1.invoke(CustomizeTabFactory.kt:280) at com.intellij.openapi.wm.impl.welcomeScreen.CustomizeTab$buildComponent$1$6$1.invoke(CustomizeTabFactory.kt:279) at com.intellij.ui.components.ActionLink._init_$lambda$1(ActionLink.kt:32) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:26:56,911 [ 697261] SEVERE - #c.i.i.p.PluginManager - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:26:56,911 [ 697261] SEVERE - #c.i.i.p.PluginManager - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:26:56,911 [ 697261] SEVERE - #c.i.i.p.PluginManager - OS: Windows 10 2024-04-22 12:26:56,912 [ 697262] SEVERE - #c.i.i.p.PluginManager - Last Action: CloseProject 2024-04-22 12:26:57,775 [ 698125] SEVERE - #c.i.i.p.PluginManager - com.intellij.compiler.server.BuildManager methods should not be called for default project java.lang.AssertionError: com.intellij.compiler.server.BuildManager methods should not be called for default project at com.intellij.compiler.server.BuildManager.getProjectPath(BuildManager.java:654) at com.intellij.compiler.server.BuildManager.clearState(BuildManager.java:598) at com.intellij.compiler.server.impl.BuildProcessPreloadedStateClearer.rootsChanged(BuildProcessPreloadedStateClearer.java:140) at com.intellij.util.messages.impl.MessageBusImplKt.invokeMethod(MessageBusImpl.kt:700) at com.intellij.util.messages.impl.MessageBusImplKt.invokeListener(MessageBusImpl.kt:660) at com.intellij.util.messages.impl.MessageBusImplKt.deliverMessage(MessageBusImpl.kt:423) at com.intellij.util.messages.impl.MessageBusImplKt.pumpWaiting(MessageBusImpl.kt:402) at com.intellij.util.messages.impl.MessageBusImplKt.access$pumpWaiting(MessageBusImpl.kt:1) at com.intellij.util.messages.impl.MessagePublisher.invoke(MessageBusImpl.kt:461) at jdk.proxy2/jdk.proxy2.$Proxy383.rootsChanged(Unknown Source) at com.intellij.openapi.roots.impl.ProjectRootManagerComponent.fireRootsChangedEvent(ProjectRootManagerComponent.kt:251) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.fireRootsChanged(ProjectRootManagerImpl.kt:468) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.access$fireRootsChanged(ProjectRootManagerImpl.kt:38) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$rootsChanged$1.fireRootsChanged(ProjectRootManagerImpl.kt:142) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$rootsChanged$1.fireRootsChanged(ProjectRootManagerImpl.kt:140) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl$BatchSession.rootsChanged(ProjectRootManagerImpl.kt:121) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.makeRootsChange(ProjectRootManagerImpl.kt:437) at org.jetbrains.kotlin.idea.base.util.ProjectStructureUtils.invalidateProjectRoots(ProjectStructureUtils.kt:51) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab$3.invoke(KotlinCompilerConfigurableTab.java:665) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWriteAction$lambda$1(ApplicationUtils.kt:26) at com.intellij.openapi.application.impl.RwLockHolder.runWriteAction(RwLockHolder.kt:354) at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:888) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWriteAction(ApplicationUtils.kt:26) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab.applyTo(KotlinCompilerConfigurableTab.java:661) at org.jetbrains.kotlin.idea.base.compilerPreferences.configuration.KotlinCompilerConfigurableTab.apply(KotlinCompilerConfigurableTab.java:725) at com.intellij.openapi.options.ex.ConfigurableWrapper.apply(ConfigurableWrapper.java:191) at com.intellij.openapi.options.newEditor.ConfigurableEditor.apply(ConfigurableEditor.java:311) at com.intellij.openapi.options.newEditor.SettingsEditor$5.apply(SettingsEditor.java:200) at com.intellij.openapi.options.newEditor.SettingsEditor.apply(SettingsEditor.java:431) at com.intellij.openapi.options.newEditor.SettingsDialog.applyAndClose(SettingsDialog.java:204) at com.intellij.openapi.options.newEditor.SettingsDialog.doOKAction(SettingsDialog.java:196) at com.intellij.openapi.ui.DialogWrapper$OkAction.doAction(DialogWrapper.java:1945) at com.intellij.openapi.ui.DialogWrapper$DialogWrapperAction.actionPerformed(DialogWrapper.java:1896) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:106) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:121) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:191) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:236) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:234) at java.base/java.security.AccessController.doPrivileged(AccessController.java:318) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:234) at java.desktop/java.awt.Dialog.lambda$show$2(Dialog.java:1081) at java.desktop/sun.awt.SunToolkit.performOnMainThreadIfNeeded(SunToolkit.java:2170) at java.desktop/java.awt.Dialog.show(Dialog.java:1041) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:894) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:474) at com.intellij.openapi.ui.DialogWrapper.doShow(DialogWrapper.java:1754) at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:1703) at com.intellij.ide.actions.ShowSettingsUtilImpl.showSettingsDialog(ShowSettingsUtilImpl.kt:104) at com.intellij.openapi.wm.impl.welcomeScreen.CustomizeTab$buildComponent$1$6$1.invoke(CustomizeTabFactory.kt:280) at com.intellij.openapi.wm.impl.welcomeScreen.CustomizeTab$buildComponent$1$6$1.invoke(CustomizeTabFactory.kt:279) at com.intellij.ui.components.ActionLink._init_$lambda$1(ActionLink.kt:32) at java.desktop/javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1972) at java.desktop/javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2313) at java.desktop/javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:405) at java.desktop/javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:262) at java.desktop/javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:279) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:26:57,778 [ 698128] SEVERE - #c.i.i.p.PluginManager - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:26:57,778 [ 698128] SEVERE - #c.i.i.p.PluginManager - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:26:57,779 [ 698129] SEVERE - #c.i.i.p.PluginManager - OS: Windows 10 2024-04-22 12:26:57,779 [ 698129] SEVERE - #c.i.i.p.PluginManager - Last Action: CloseProject 2024-04-22 12:27:07,106 [ 707456] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:27:08,275 [ 708625] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:27:08,276 [ 708626] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:28:07,243 [ 767593] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:28:07,246 [ 767596] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:28:07,246 [ 767596] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:28:07,306 [ 767656] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:07,306 [ 767656] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:11,818 [ 772168] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:12,992 [ 773342] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:28:12,994 [ 773344] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:28:12,994 [ 773344] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:28:13,055 [ 773405] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:13,055 [ 773405] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:18,041 [ 778391] INFO - #c.i.i.u.c.CustomActionsSchema - Failed to find icon by URL: WebDeployment.BrowseServers 2024-04-22 12:28:18,101 [ 778451] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:18,214 [ 778564] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="Android.Designer.SwitchLayoutQualifier" class="com.android.tools.idea.uibuilder.actions.LayoutQualifierDropdownMenu" 2024-04-22 12:28:18,224 [ 778574] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="MakeTypeSelectionGroup" class="com.android.tools.idea.gradle.actions.MakeTypeSelectionGroupAction" 2024-04-22 12:28:18,224 [ 778574] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MakeTypeSelectionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,224 [ 778574] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowTips' template presentation. Showing its action-id instead 2024-04-22 12:28:18,225 [ 778575] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GenerateModuleDescriptors' template presentation. Showing its action-id instead 2024-04-22 12:28:18,225 [ 778575] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectCallstackSampleTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,226 [ 778576] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.Refresh' stub template presentation. Creating its instance 2024-04-22 12:28:18,227 [ 778577] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Device.Picker.Help' stub template presentation. Creating its instance 2024-04-22 12:28:18,227 [ 778577] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartCallstackSample' template presentation. Showing its action-id instead 2024-04-22 12:28:18,227 [ 778577] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarSecondary' template presentation. Showing its action-id instead 2024-04-22 12:28:18,227 [ 778577] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarVirtualDevice' template presentation. Showing its action-id instead 2024-04-22 12:28:18,230 [ 778580] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.OpenStringResourceEditor' stub template presentation. Creating its instance 2024-04-22 12:28:18,230 [ 778580] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Library.Properties' template presentation. Showing its action-id instead 2024-04-22 12:28:18,230 [ 778580] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ChangeGradleJdkLocation' stub template presentation. Creating its instance 2024-04-22 12:28:18,231 [ 778581] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.AttachProject' template presentation. Showing its action-id instead 2024-04-22 12:28:18,231 [ 778581] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Logcat.PopupActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,231 [ 778581] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidToolsGroupExtension' template presentation. Showing its action-id instead 2024-04-22 12:28:18,231 [ 778581] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.NewScript' template presentation. Showing its action-id instead 2024-04-22 12:28:18,231 [ 778581] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.NavBarToolBar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,232 [ 778582] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartHeapDump' template presentation. Showing its action-id instead 2024-04-22 12:28:18,232 [ 778582] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectSystemTraceTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,232 [ 778582] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.RefreshAllProjects' template presentation. Showing its action-id instead 2024-04-22 12:28:18,233 [ 778583] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.status' template presentation. Showing its action-id instead 2024-04-22 12:28:18,234 [ 778584] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfileWithLowOverhead' stub template presentation. Creating its instance 2024-04-22 12:28:18,234 [ 778584] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.quarter.hour' template presentation. Showing its action-id instead 2024-04-22 12:28:18,235 [ 778585] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfilerSelectProcess' template presentation. Showing its action-id instead 2024-04-22 12:28:18,236 [ 778586] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer.show' stub template presentation. Creating its instance 2024-04-22 12:28:18,236 [ 778586] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer.CopyValue' stub template presentation. Creating its instance 2024-04-22 12:28:18,237 [ 778587] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewHtmlFile' template presentation. Showing its action-id instead 2024-04-22 12:28:18,237 [ 778587] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GradleProjectStructureActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,238 [ 778588] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.deploy.RunWithoutBuild' stub template presentation. Creating its instance 2024-04-22 12:28:18,238 [ 778588] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.emulator.wear.health.services' template presentation. Showing its action-id instead 2024-04-22 12:28:18,240 [ 778590] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.SplitVertical' stub template presentation. Creating its instance 2024-04-22 12:28:18,241 [ 778591] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WhatsNewAction' template presentation. Showing its action-id instead 2024-04-22 12:28:18,244 [ 778594] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.MoveTabLeft' stub template presentation. Creating its instance 2024-04-22 12:28:18,244 [ 778594] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Build' template presentation. Showing its action-id instead 2024-04-22 12:28:18,244 [ 778594] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompileDirty' template presentation. Showing its action-id instead 2024-04-22 12:28:18,245 [ 778595] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectHeapDumpTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,245 [ 778595] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.SelectProjectDataToImport' template presentation. Showing its action-id instead 2024-04-22 12:28:18,245 [ 778595] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer' template presentation. Showing its action-id instead 2024-04-22 12:28:18,245 [ 778595] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AddFrameworkSupport' template presentation. Showing its action-id instead 2024-04-22 12:28:18,246 [ 778596] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.deploy.DebugWithoutBuild' stub template presentation. Creating its instance 2024-04-22 12:28:18,246 [ 778596] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ImportExternalProject' template presentation. Showing its action-id instead 2024-04-22 12:28:18,246 [ 778596] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.CheckResources.Make' template presentation. Showing its action-id instead 2024-04-22 12:28:18,247 [ 778597] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewPackageInfo' template presentation. Showing its action-id instead 2024-04-22 12:28:18,247 [ 778597] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager' template presentation. Showing its action-id instead 2024-04-22 12:28:18,247 [ 778597] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ShowThumbnails' template presentation. Showing its action-id instead 2024-04-22 12:28:18,247 [ 778597] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PsdProjectStructureActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,248 [ 778598] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ConvertToNinePatch' stub template presentation. Creating its instance 2024-04-22 12:28:18,248 [ 778598] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfilerSelectDevice' template presentation. Showing its action-id instead 2024-04-22 12:28:18,248 [ 778598] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.half.hour' template presentation. Showing its action-id instead 2024-04-22 12:28:18,249 [ 778599] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartSystemTrace' template presentation. Showing its action-id instead 2024-04-22 12:28:18,249 [ 778599] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectNativeAllocationsTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,250 [ 778600] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartProfilerTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,251 [ 778601] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.RenameTab' stub template presentation. Creating its instance 2024-04-22 12:28:18,252 [ 778602] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopProfilerTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,252 [ 778602] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.SplitHorizontal' stub template presentation. Creating its instance 2024-04-22 12:28:18,252 [ 778602] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager.TypeSpecificActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,253 [ 778603] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SetProfilingStartingPointToNow' template presentation. Showing its action-id instead 2024-04-22 12:28:18,253 [ 778603] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compile' template presentation. Showing its action-id instead 2024-04-22 12:28:18,253 [ 778603] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'BuildArtifact' template presentation. Showing its action-id instead 2024-04-22 12:28:18,253 [ 778603] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Diagnostics' template presentation. Showing its action-id instead 2024-04-22 12:28:18,254 [ 778604] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopProfilingSession' template presentation. Showing its action-id instead 2024-04-22 12:28:18,254 [ 778604] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfileWithCompleteData' stub template presentation. Creating its instance 2024-04-22 12:28:18,254 [ 778604] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.DetachProject' template presentation. Showing its action-id instead 2024-04-22 12:28:18,255 [ 778605] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarPhysicalDevice' template presentation. Showing its action-id instead 2024-04-22 12:28:18,255 [ 778605] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompileProject' template presentation. Showing its action-id instead 2024-04-22 12:28:18,255 [ 778605] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopNativeAllocations' template presentation. Showing its action-id instead 2024-04-22 12:28:18,256 [ 778606] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidToolbarMakeGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,256 [ 778606] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectLiveViewTask' template presentation. Showing its action-id instead 2024-04-22 12:28:18,256 [ 778606] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Streaming' template presentation. Showing its action-id instead 2024-04-22 12:28:18,257 [ 778607] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartNativeAllocations' template presentation. Showing its action-id instead 2024-04-22 12:28:18,257 [ 778607] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Profile' stub template presentation. Creating its instance 2024-04-22 12:28:18,258 [ 778608] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopCpuCapture' template presentation. Showing its action-id instead 2024-04-22 12:28:18,258 [ 778608] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SaveFileAsTemplate' template presentation. Showing its action-id instead 2024-04-22 12:28:18,259 [ 778609] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'LibraryProperties' stub template presentation. Creating its instance 2024-04-22 12:28:18,259 [ 778609] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Adtui.ZoomActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,259 [ 778609] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.CheckResources.Rebuild' template presentation. Showing its action-id instead 2024-04-22 12:28:18,259 [ 778609] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.ShowLogcat' stub template presentation. Creating its instance 2024-04-22 12:28:18,259 [ 778609] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager2' template presentation. Showing its action-id instead 2024-04-22 12:28:18,260 [ 778610] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleLayoutInspectorActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,260 [ 778610] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeployActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,260 [ 778610] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SetProfilingStartingPointToProcessStart' template presentation. Showing its action-id instead 2024-04-22 12:28:18,260 [ 778610] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.MoveTabRight' stub template presentation. Creating its instance 2024-04-22 12:28:18,261 [ 778611] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.MainToolBarActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,261 [ 778611] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.ManualLiveEdit' stub template presentation. Creating its instance 2024-04-22 12:28:18,261 [ 778611] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.NewClass' template presentation. Showing its action-id instead 2024-04-22 12:28:18,261 [ 778611] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidDeviceManagerPlaceholder' template presentation. Showing its action-id instead 2024-04-22 12:28:18,263 [ 778613] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PasteWithNewIds' stub template presentation. Creating its instance 2024-04-22 12:28:18,263 [ 778613] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.ToolsActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,265 [ 778615] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.ReRunUiCheckModeAction' template presentation. Showing its action-id instead 2024-04-22 12:28:18,265 [ 778615] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.IssuePanel.ToolbarActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,265 [ 778615] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.CommonActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,265 [ 778615] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.IssuePanel.TreePopup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,266 [ 778616] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.ProjectView.ShowFilesUnknownToCMake' stub template presentation. Creating its instance 2024-04-22 12:28:18,266 [ 778616] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.NewGroup.After' template presentation. Showing its action-id instead 2024-04-22 12:28:18,267 [ 778617] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalCppProject' template presentation. Showing its action-id instead 2024-04-22 12:28:18,267 [ 778617] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.ProjectView.After' template presentation. Showing its action-id instead 2024-04-22 12:28:18,267 [ 778617] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.Cpp.GenerateDefinitionsGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.Cpp.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.ExtractClassMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.IntroduceGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.GenerateMethodsGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ImportsHierarchyMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.DeclareGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,268 [ 778618] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.RefactoringMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,269 [ 778619] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,269 [ 778619] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.ConvertGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,269 [ 778619] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.SwitchHeaderSourceGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,270 [ 778620] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.NewGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,270 [ 778620] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Frames.Tree.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,270 [ 778620] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,270 [ 778620] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.MemoryDocGutterActionGroup' stub template presentation. Creating its instance 2024-04-22 12:28:18,270 [ 778620] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.DataViewSettings.Popup.Wrapper' template presentation. Showing its action-id instead 2024-04-22 12:28:18,271 [ 778621] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadGroup.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,271 [ 778621] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Settings.FramePresentation.Appender' template presentation. Showing its action-id instead 2024-04-22 12:28:18,271 [ 778621] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkGroup.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,271 [ 778621] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadDebuggingActionsGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,272 [ 778622] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.RegisterSets.Group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,272 [ 778622] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkDebuggingActions.TopToolbar3.Extra' template presentation. Showing its action-id instead 2024-04-22 12:28:18,272 [ 778622] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,272 [ 778622] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadDebuggingActions.TopToolbar3.Extra' template presentation. Showing its action-id instead 2024-04-22 12:28:18,272 [ 778622] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.WatchExpressions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,273 [ 778623] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Util.Diagnostics' template presentation. Showing its action-id instead 2024-04-22 12:28:18,273 [ 778623] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Registers.Group.Wrapper' template presentation. Showing its action-id instead 2024-04-22 12:28:18,273 [ 778623] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FramePresentation' template presentation. Showing its action-id instead 2024-04-22 12:28:18,273 [ 778623] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ToggleMemoryDocAddresses' stub template presentation. Creating its instance 2024-04-22 12:28:18,274 [ 778624] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.DataViewSettings' template presentation. Showing its action-id instead 2024-04-22 12:28:18,275 [ 778625] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowTypeHintSettings' template presentation. Showing its action-id instead 2024-04-22 12:28:18,276 [ 778626] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CodiumAI.Commit.Button' template presentation. Showing its action-id instead 2024-04-22 12:28:18,277 [ 778627] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ai.codium.ui.actions.TestSelectedCodeContextMenuAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,278 [ 778628] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewEditorConfigFile' stub template presentation. Creating its instance 2024-04-22 12:28:18,280 [ 778630] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Add.No.Content' stub template presentation. Creating its instance 2024-04-22 12:28:18,280 [ 778630] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupGroupByPrefixAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,280 [ 778630] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Tree.Menu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,281 [ 778631] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPullBranchAction$WithMerge' stub template presentation. Creating its instance 2024-04-22 12:28:18,281 [ 778631] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMergeBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,282 [ 778632] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Experimental.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,282 [ 778632] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Reword.ToolbarActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,283 [ 778633] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.BranchOperationGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,285 [ 778635] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Stash.Files' stub template presentation. Creating its instance 2024-04-22 12:28:18,285 [ 778635] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.AcceptYours' stub template presentation. Creating its instance 2024-04-22 12:28:18,285 [ 778635] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu.FileActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,286 [ 778636] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.Popup.SpeedSearch' template presentation. Showing its action-id instead 2024-04-22 12:28:18,286 [ 778636] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.Popup.Settings' stub template presentation. Creating its instance 2024-04-22 12:28:18,286 [ 778636] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,286 [ 778636] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPullBranchAction$WithRebase' stub template presentation. Creating its instance 2024-04-22 12:28:18,287 [ 778637] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Hosting.Copy.Link.Group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,287 [ 778637] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Commit.And.Push.Executor' stub template presentation. Creating its instance 2024-04-22 12:28:18,287 [ 778637] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Branches.GroupBy.Repository' stub template presentation. Creating its instance 2024-04-22 12:28:18,288 [ 778638] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupResizeAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,288 [ 778638] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,288 [ 778638] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupShowRecentBranchesAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,288 [ 778638] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Local.File.Menu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,289 [ 778639] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRebaseBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,289 [ 778639] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.Conflicts' template presentation. Showing its action-id instead 2024-04-22 12:28:18,289 [ 778639] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutFromInputAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,290 [ 778640] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.Merge' stub template presentation. Creating its instance 2024-04-22 12:28:18,290 [ 778640] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.ContextMenu.CheckoutBrowse' template presentation. Showing its action-id instead 2024-04-22 12:28:18,290 [ 778640] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.LogContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,290 [ 778640] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Hosting.Open.In.Browser.Group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,290 [ 778640] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.FileActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,291 [ 778641] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,291 [ 778641] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Branches.GroupBy.Directory' stub template presentation. Creating its instance 2024-04-22 12:28:18,291 [ 778641] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,292 [ 778642] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branch' template presentation. Showing its action-id instead 2024-04-22 12:28:18,292 [ 778642] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.AcceptTheirs' stub template presentation. Creating its instance 2024-04-22 12:28:18,292 [ 778642] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Reset' stub template presentation. Creating its instance 2024-04-22 12:28:18,293 [ 778643] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="GitBranchesTreePopupFilterSeparatorWithText" class="git4idea.ui.branch.popup.GitBranchesTreePopupFilterSeparatorWithText" 2024-04-22 12:28:18,293 [ 778643] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupFilterSeparatorWithText' template presentation. Showing its action-id instead 2024-04-22 12:28:18,293 [ 778643] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMergeRebaseWidgetGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,293 [ 778643] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMainToolbarQuickActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,294 [ 778644] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupTrackReposSynchronouslyAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,294 [ 778644] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitUpdateSelectedBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,294 [ 778644] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.ToolbarWidget.CreateRepository' template presentation. Showing its action-id instead 2024-04-22 12:28:18,295 [ 778645] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutAsNewBranch' stub template presentation. Creating its instance 2024-04-22 12:28:18,295 [ 778645] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitNewBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,296 [ 778646] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitDeleteBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,296 [ 778646] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPushBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,296 [ 778646] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.FileHistory.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,297 [ 778647] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.AcceptYours' stub template presentation. Creating its instance 2024-04-22 12:28:18,297 [ 778647] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.ToggleIgnored' stub template presentation. Creating its instance 2024-04-22 12:28:18,297 [ 778647] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stash.Operations.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,298 [ 778648] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Revert' stub template presentation. Creating its instance 2024-04-22 12:28:18,298 [ 778648] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Ongoing.Rebase.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,299 [ 778649] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.OpenExcludeFile' stub template presentation. Creating its instance 2024-04-22 12:28:18,299 [ 778649] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,299 [ 778649] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.AcceptTheirs' stub template presentation. Creating its instance 2024-04-22 12:28:18,299 [ 778649] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRepositoryActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,300 [ 778650] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Add' stub template presentation. Creating its instance 2024-04-22 12:28:18,300 [ 778650] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRenameBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,302 [ 778652] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.New.Branch.In.Log' stub template presentation. Creating its instance 2024-04-22 12:28:18,302 [ 778652] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stash.ChangesBrowser.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,302 [ 778652] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutWithRebaseAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,302 [ 778652] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.List' template presentation. Showing its action-id instead 2024-04-22 12:28:18,303 [ 778653] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Merge' stub template presentation. Creating its instance 2024-04-22 12:28:18,303 [ 778653] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MainToolbarQuickActions.VCS' template presentation. Showing its action-id instead 2024-04-22 12:28:18,304 [ 778654] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitShowDiffWithBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,304 [ 778654] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCompareWithBranchAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,306 [ 778656] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Details.Reload' stub template presentation. Creating its instance 2024-04-22 12:28:18,306 [ 778656] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.List.Reload' stub template presentation. Creating its instance 2024-04-22 12:28:18,306 [ 778656] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.ToolWindow.List.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,307 [ 778657] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.MarkNotViewed' stub template presentation. Creating its instance 2024-04-22 12:28:18,307 [ 778657] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Show' stub template presentation. Creating its instance 2024-04-22 12:28:18,307 [ 778657] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.MarkViewed' stub template presentation. Creating its instance 2024-04-22 12:28:18,307 [ 778657] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,308 [ 778658] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,308 [ 778658] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,308 [ 778658] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.Pull.Request.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,308 [ 778658] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Details.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,309 [ 778659] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Review.Submit' stub template presentation. Creating its instance 2024-04-22 12:28:18,309 [ 778659] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Show' stub template presentation. Creating its instance 2024-04-22 12:28:18,310 [ 778660] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Update' stub template presentation. Creating its instance 2024-04-22 12:28:18,310 [ 778660] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarRestartPopup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,310 [ 778660] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.inlayContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,310 [ 778660] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-2' template presentation. Showing its action-id instead 2024-04-22 12:28:18,310 [ 778660] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-3' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '03d95f43-ddbf-4a60-b04f-5dab740418f8-1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '67402381-f79c-4874-8d46-547c510bef05-1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarPopup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'b1c67cbf-f5e6-4858-9c60-937d4a66b662-1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,311 [ 778661] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarErrorPopup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,312 [ 778662] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '737c0ae1-4ea6-47ea-89f3-02ad35b7a3e3-1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,313 [ 778663] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.MarkViewed' stub template presentation. Creating its instance 2024-04-22 12:28:18,313 [ 778663] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.MarkNotViewed' stub template presentation. Creating its instance 2024-04-22 12:28:18,313 [ 778663] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Details.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,313 [ 778663] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.MergeRequest.Review.Submit' stub template presentation. Creating its instance 2024-04-22 12:28:18,313 [ 778663] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.List.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,314 [ 778664] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Review.Editor.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,314 [ 778664] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,314 [ 778664] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Timeline.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,314 [ 778664] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Timeline.Error.Popup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,316 [ 778666] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ToolbarDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:28:18,316 [ 778666] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ModuleMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,317 [ 778667] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.DependencyAnalyzer.OpenConfig' stub template presentation. Creating its instance 2024-04-22 12:28:18,317 [ 778667] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ProjectMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,317 [ 778667] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.RefreshDependencies' stub template presentation. Creating its instance 2024-04-22 12:28:18,317 [ 778667] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.RightPanel' template presentation. Showing its action-id instead 2024-04-22 12:28:18,318 [ 778668] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ViewDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:28:18,318 [ 778668] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.CenterPanel' template presentation. Showing its action-id instead 2024-04-22 12:28:18,318 [ 778668] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.DependencyAnalyzer.GoTo' stub template presentation. Creating its instance 2024-04-22 12:28:18,318 [ 778668] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.LeftPanel' template presentation. Showing its action-id instead 2024-04-22 12:28:18,319 [ 778669] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ProjectViewDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:28:18,319 [ 778669] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.DependencyMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,319 [ 778669] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,319 [ 778669] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GenerateGradleDslGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,322 [ 778672] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AddGradleDslPluginAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,322 [ 778672] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GroovyGenerateGroup1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,323 [ 778673] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailViewActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,323 [ 778673] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.EditorToolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,323 [ 778673] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailsPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,324 [ 778674] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailsToolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,324 [ 778674] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ImageViewActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,324 [ 778674] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.EditorPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,324 [ 778674] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'junit.exclude.group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,325 [ 778675] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'junit.add.to.pattern.group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,325 [ 778675] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Debugger.ThreadsPanelPopup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,325 [ 778675] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StructureViewCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,325 [ 778675] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaDebuggerActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,326 [ 778676] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'UsageGrouping.Package' stub template presentation. Creating its instance 2024-04-22 12:28:18,327 [ 778677] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExcludeFromValidation' stub template presentation. Creating its instance 2024-04-22 12:28:18,327 [ 778677] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaSoftExit' stub template presentation. Creating its instance 2024-04-22 12:28:18,327 [ 778677] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RefactoringMenu4' template presentation. Showing its action-id instead 2024-04-22 12:28:18,328 [ 778678] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.Documentation.IDEA' template presentation. Showing its action-id instead 2024-04-22 12:28:18,328 [ 778678] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.ImportFrom.Group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,328 [ 778678] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowPackageDepsGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,328 [ 778678] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorTabCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,328 [ 778678] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuDebugJava' template presentation. Showing its action-id instead 2024-04-22 12:28:18,329 [ 778679] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuAnalyze' template presentation. Showing its action-id instead 2024-04-22 12:28:18,329 [ 778679] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MemoryView.ClassesPopupActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,330 [ 778680] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaControlBreak' stub template presentation. Creating its instance 2024-04-22 12:28:18,330 [ 778680] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaGenerateGroup2' template presentation. Showing its action-id instead 2024-04-22 12:28:18,331 [ 778681] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaGenerateGroup1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,331 [ 778681] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.BuildMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,331 [ 778681] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompilerErrorViewPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,331 [ 778681] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewJavaSpecialFile' template presentation. Showing its action-id instead 2024-04-22 12:28:18,332 [ 778682] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PackageFile' stub template presentation. Creating its instance 2024-04-22 12:28:18,332 [ 778682] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaMethodHierarchyPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,332 [ 778682] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CommanderPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,332 [ 778682] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MigrationMenu1' template presentation. Showing its action-id instead 2024-04-22 12:28:18,333 [ 778683] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'InspectCodeActionInPopupMenus' template presentation. Showing its action-id instead 2024-04-22 12:28:18,333 [ 778683] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RefactoringMenuRenameFile' template presentation. Showing its action-id instead 2024-04-22 12:28:18,333 [ 778683] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Debugger.Representation' template presentation. Showing its action-id instead 2024-04-22 12:28:18,333 [ 778683] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,333 [ 778683] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaNewProjectOrModuleGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,335 [ 778685] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'idea.java.decompiler.action.group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,336 [ 778686] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkGeneratedSourceRoot' stub template presentation. Creating its instance 2024-04-22 12:28:18,336 [ 778686] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.QuickStart.IDEA' template presentation. Showing its action-id instead 2024-04-22 12:28:18,336 [ 778686] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkGeneratedSourceRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,336 [ 778686] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'UnmarkGeneratedSourceRoot' stub template presentation. Creating its instance 2024-04-22 12:28:18,337 [ 778687] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkSourceRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,337 [ 778687] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.MarkRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,338 [ 778688] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Kotlin.XDebugger.Actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,338 [ 778688] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'KotlinGenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,339 [ 778689] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ConvertJavaToKotlinGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,339 [ 778689] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.EditorContextMenuGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,339 [ 778689] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.InsertGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,340 [ 778690] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,340 [ 778690] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableColumnActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,340 [ 778690] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableRowActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,341 [ 778691] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.MQ.Unapplied' template presentation. Showing its action-id instead 2024-04-22 12:28:18,342 [ 778692] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.Commit.And.Push.Executor' stub template presentation. Creating its instance 2024-04-22 12:28:18,342 [ 778692] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Mq.Patches.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,342 [ 778692] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.Log.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,342 [ 778692] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Mq.Patches.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,343 [ 778693] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DevKit.ThemeEditorToolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,344 [ 778694] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CombinePropertiesFilesAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,344 [ 778694] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShGenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,345 [ 778695] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Svn.WorkingCopiesView.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:28:18,345 [ 778695] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SubversionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,345 [ 778695] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SubversionUpdateActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,346 [ 778696] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'task.actions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,346 [ 778696] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'tasks.group' template presentation. Showing its action-id instead 2024-04-22 12:28:18,346 [ 778696] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'working.context' template presentation. Showing its action-id instead 2024-04-22 12:28:18,347 [ 778697] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.NextSplitter' stub template presentation. Creating its instance 2024-04-22 12:28:18,348 [ 778698] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.SplitVertically' stub template presentation. Creating its instance 2024-04-22 12:28:18,348 [ 778698] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.SplitHorizontally' stub template presentation. Creating its instance 2024-04-22 12:28:18,348 [ 778698] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'TerminalToolwindowActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,348 [ 778698] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.PromptContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,349 [ 778699] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.OutputContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:28:18,349 [ 778699] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.PrevSplitter' stub template presentation. Creating its instance 2024-04-22 12:28:18,349 [ 778699] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'addToTempGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,349 [ 778699] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'excludeGroup' template presentation. Showing its action-id instead 2024-04-22 12:28:18,350 [ 778700] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Dev.PsiViewerActions' template presentation. Showing its action-id instead 2024-04-22 12:28:18,439 [ 778789] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditInspectionSettings' stub template presentation. Creating its instance 2024-04-22 12:28:18,440 [ 778790] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableMinimap' stub template presentation. Creating its instance 2024-04-22 12:28:18,440 [ 778790] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.RefreshFileHistory' stub template presentation. Creating its instance 2024-04-22 12:28:18,441 [ 778791] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleInlayHintsGloballyAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,442 [ 778792] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableDeclarativeInlayAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,442 [ 778792] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.ReformatCommitMessage' stub template presentation. Creating its instance 2024-04-22 12:28:18,444 [ 778794] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DuplicatesForm.SendToRight' template presentation. Showing its action-id instead 2024-04-22 12:28:18,444 [ 778794] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateUnitTestsToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:28:18,446 [ 778796] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableInspection' stub template presentation. Creating its instance 2024-04-22 12:28:18,447 [ 778797] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'LightEditOpenFileInProject' stub template presentation. Creating its instance 2024-04-22 12:28:18,447 [ 778797] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DuplicatesForm.SendToLeft' template presentation. Showing its action-id instead 2024-04-22 12:28:18,448 [ 778798] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ValidateXml' template presentation. Showing its action-id instead 2024-04-22 12:28:18,448 [ 778798] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RevealIn' stub template presentation. Creating its instance 2024-04-22 12:28:18,448 [ 778798] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateProjectToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:28:18,449 [ 778799] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SeverityEditorDialog' stub template presentation. Creating its instance 2024-04-22 12:28:18,452 [ 778802] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleMinimap' stub template presentation. Creating its instance 2024-04-22 12:28:18,453 [ 778803] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'plugin.InstallFromDiskAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,454 [ 778804] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MoveMinimap' stub template presentation. Creating its instance 2024-04-22 12:28:18,455 [ 778805] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RunInspectionOn' stub template presentation. Creating its instance 2024-04-22 12:28:18,455 [ 778805] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateNuGetToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:28:18,458 [ 778808] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CodeVision.ShowMore' stub template presentation. Creating its instance 2024-04-22 12:28:18,458 [ 778808] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateFavoritesToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:28:18,459 [ 778809] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ConsoleView.ClearAll' stub template presentation. Creating its instance 2024-04-22 12:28:18,459 [ 778809] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.CleanRun' template presentation. Showing its action-id instead 2024-04-22 12:28:18,459 [ 778809] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PauseOutput' stub template presentation. Creating its instance 2024-04-22 12:28:18,460 [ 778810] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkNotificationsAsRead' stub template presentation. Creating its instance 2024-04-22 12:28:18,460 [ 778810] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'OpenMinimapSettings' stub template presentation. Creating its instance 2024-04-22 12:28:18,461 [ 778811] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Code.Review.Editor.Show.Diff' stub template presentation. Creating its instance 2024-04-22 12:28:18,461 [ 778811] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SwitchHeaderSource' template presentation. Showing its action-id instead 2024-04-22 12:28:18,462 [ 778812] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'XDebugger.Attach.Dialog.ShowOnlyMyProcessesToggleAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,463 [ 778813] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CustomizeUI' stub template presentation. Creating its instance 2024-04-22 12:28:18,463 [ 778813] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'InactiveStopActionPlaceholder' template presentation. Showing its action-id instead 2024-04-22 12:28:18,499 [ 778849] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:18,576 [ 778926] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:18,593 [ 778943] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SelectProjectAction' stub template presentation. Creating its instance 2024-04-22 12:28:18,609 [ 778959] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="android.device.liveedit.status" class="com.android.tools.idea.editors.liveedit.ui.LiveEditNotificationGroup" 2024-04-22 12:28:18,609 [ 778959] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.liveedit.status' stub template presentation. Creating its instance 2024-04-22 12:28:19,686 [ 780036] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:19,819 [ 780169] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:20,171 [ 780521] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:20,309 [ 780659] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:20,441 [ 780791] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:20,937 [ 781287] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:21,088 [ 781438] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:21,213 [ 781563] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:21,741 [ 782091] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:28:37,533 [ 797883] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:37,819 [ 798169] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:28:37,819 [ 798169] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:28:37,833 [ 798183] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:28:38,302 [ 798652] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:28:38,303 [ 798653] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:28:40,533 [ 800883] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:28:40,536 [ 800886] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:28:40,536 [ 800886] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:28:40,609 [ 800959] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:28:40,610 [ 800960] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:29:27,845 [ 848195] WARN - #c.i.o.u.WindowStateService - cannot find a project frame for ProjectDefault (Template) Project 2024-04-22 12:29:28,153 [ 848503] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:29:28,154 [ 848504] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:29:28,160 [ 848510] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:29:28,160 [ 848510] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:29:28,160 [ 848510] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:29:28,167 [ 848517] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:29:28,712 [ 849062] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:29:28,713 [ 849063] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:29:31,325 [ 851675] INFO - #c.i.i.ConversionServiceImpl - conversion will be performed because at least C:\IntellijProjects\kotlinBooks\.idea\workspace.xml is changed (oldLastModified=1713785199, newLastModified=1713785235) 2024-04-22 12:29:31,435 [ 851785] INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 54 ms 2024-04-22 12:29:31,457 [ 851807] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 1 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,457 [ 851807] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 2 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,461 [ 851811] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 3 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,461 [ 851811] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 4 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,463 [ 851813] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 5 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,463 [ 851813] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 6 in 0 ms: Facet manager update storage 2024-04-22 12:29:31,489 [ 851839] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 7 in 3 ms: Add module mapping 2024-04-22 12:29:31,540 [ 851890] INFO - #o.j.k.i.g.s.r.GradleBuildRootIndex - C:/IntellijProjects/kotlinBooks: null -> org.jetbrains.kotlin.idea.gradleJava.scripting.roots.Imported@67cbf558 2024-04-22 12:29:31,545 [ 851895] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:31,546 [ 851896] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:29:31,546 [ 851896] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:29:31,547 [ 851897] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 8 in 4 ms: Change entity sources to externally imported 2024-04-22 12:29:31,548 [ 851898] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 9 in 0 ms: Add project library mapping 2024-04-22 12:29:31,551 [ 851901] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:31,551 [ 851901] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 10 in 1 ms: Sync global entities with project: kotlinBooks 2024-04-22 12:29:31,579 [ 851929] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Loading Project code style 2024-04-22 12:29:31,580 [ 851930] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:29:31,580 [ 851930] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:29:31,580 [ 851930] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:29:31,580 [ 851930] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:29:31,580 [ 851930] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Project code style loaded 2024-04-22 12:29:31,590 [ 851940] INFO - #com.android.tools.idea.projectsystem.ProjectSystemService - GradleProjectSystem project system has been detected 2024-04-22 12:29:31,676 [ 852026] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:29:31,728 [ 852078] INFO - STDERR - [AWT-EventQueue-0] INFO jetbrains.exodus.env.EnvironmentImpl - Exodus environment created: C:\Users\anoua\AppData\Local\github-copilot\ai\chat-sessions\2VReuhQxB1Fwramd8Sp9UQRUL9Q 2024-04-22 12:29:31,985 [ 852335] INFO - #c.i.o.a.i.ActionUpdater - 380 ms to grab EDT for ToolWindowHeader$2#children@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2) 2024-04-22 12:29:31,991 [ 852341] INFO - c.j.cidr - clangd modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83 2024-04-22 12:29:31,991 [ 852341] INFO - c.j.cidr - clangd cpp20 modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83/cpp20 2024-04-22 12:29:31,991 [ 852341] INFO - #c.i.o.u.r.RegistryValue - Registry value 'clang.parameter.info' has changed to 'true' 2024-04-22 12:29:31,998 [ 852348] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:32,030 [ 852380] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@157a3b78 2024-04-22 12:29:32,038 [ 852388] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Initializing DumbServiceMergingTaskQueue... 2024-04-22 12:29:32,040 [ 852390] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@1299a6c7 2024-04-22 12:29:32,041 [ 852391] INFO - #c.i.u.i.p.IncrementalProjectIndexableFilesFilterHolder - IncrementalProjectIndexableFilesFilterFactory is chosen as indexable files filter factory for project: kotlinBooks 2024-04-22 12:29:32,058 [ 852408] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@1299a6c7 2024-04-22 12:29:32,061 [ 852411] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@1031dda9 2024-04-22 12:29:32,061 [ 852411] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@1031dda9 2024-04-22 12:29:32,062 [ 852412] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@568bff56 2024-04-22 12:29:32,068 [ 852418] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@568bff56 2024-04-22 12:29:32,072 [ 852422] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@2612650b 2024-04-22 12:29:32,074 [ 852424] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@2612650b 2024-04-22 12:29:32,082 [ 852432] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-folding-kotlinBooks-5c450b83 with size 29 2024-04-22 12:29:32,097 [ 852447] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@78bf8c07 2024-04-22 12:29:32,097 [ 852447] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@78bf8c07 2024-04-22 12:29:32,103 [ 852453] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@7480d669 2024-04-22 12:29:32,104 [ 852454] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@7480d669 2024-04-22 12:29:32,104 [ 852454] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@157a3b78 2024-04-22 12:29:32,255 [ 852605] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@eb23d7f 2024-04-22 12:29:32,256 [ 852606] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@eb23d7f 2024-04-22 12:29:32,272 [ 852622] INFO - c.j.c.l.d.c.c.l.ClangDaemonContextImpl - Using clangd from: C:\Program Files\Android\Android Studio\plugins\c-clangd-plugin\bin\clang\win\x64\clangd.exe 2024-04-22 12:29:32,274 [ 852624] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:29:32,276 [ 852626] INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [] 2024-04-22 12:29:32,278 [ 852628] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Registering project to adblib channel provider: Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks) 2024-04-22 12:29:32,290 [ 852640] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Checking bundle revision: 2024.1.1 vs Studio: 2024.1.1rc4 2024-04-22 12:29:32,332 [ 852682] WARN - #com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity - Overriding OCInitialTablesBuildingActivity with HotfixForOCInitialTablesBuildingActivity 2024-04-22 12:29:32,334 [ 852684] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:29:32,345 [ 852695] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [kotlinBooks] 2024-04-22 12:29:32,449 [ 852799] INFO - #c.i.u.i.UnindexedFilesScanner - Started scanning for indexing of kotlinBooks. Reason: On project open 2024-04-22 12:29:32,449 [ 852799] INFO - #c.i.u.i.UnindexedFilesScanner - Performing delayed pushing properties tasks for kotlinBooks took 0ms; general responsiveness: ok; EDT responsiveness: ok 2024-04-22 12:29:32,454 [ 852804] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Trying to download config XML from https://developer.android.com/studio/releases/assistant/2024.1.1.xml 2024-04-22 12:29:32,462 [ 852812] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of kotlinBooks uses 3 scanning threads 2024-04-22 12:29:32,817 [ 853167] INFO - #c.i.o.v.i.p.NewMappings - Mapped Roots: 1 2024-04-22 12:29:32,817 [ 853167] INFO - #c.i.o.v.i.p.NewMappings - Detected mapped Root: [Git] - [C:/IntellijProjects/kotlinBooks] 2024-04-22 12:29:32,838 [ 853188] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:29:32,840 [ 853190] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:29:32,852 [ 853202] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@6c231f19 2024-04-22 12:29:32,878 [ 853228] INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 172 millis (read time: 169) 2024-04-22 12:29:33,022 [ 853372] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@6c231f19 2024-04-22 12:29:33,025 [ 853375] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@3624a50 2024-04-22 12:29:33,075 [ 853425] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@3624a50 2024-04-22 12:29:33,075 [ 853425] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@5766e461 2024-04-22 12:29:33,077 [ 853427] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@5766e461 2024-04-22 12:29:33,079 [ 853429] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$4157/0x0000000802245c60@18ed91ed) 2024-04-22 12:29:33,115 [ 853465] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], definitions = [KotlinInitScript] 2024-04-22 12:29:33,119 [ 853469] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:29:33,121 [ 853471] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:29:33,154 [ 853504] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], definitions = [KotlinSettingsScript] 2024-04-22 12:29:33,157 [ 853507] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:29:33,158 [ 853508] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:29:33,186 [ 853536] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], definitions = [KotlinBuildScript] 2024-04-22 12:29:33,270 [ 853620] INFO - #c.j.c.lang - [Building Activity] Symbols unloaded 2024-04-22 12:29:33,316 [ 853666] INFO - #c.j.c.lang - [Building Activity] Building symbols… finished in 236 ms 2024-04-22 12:29:33,448 [ 853798] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Remote WNA config file not found java.io.FileNotFoundException: https://developer.android.com/studio/releases/assistant/2024.1.1.xml at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996) at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.downloadConfig(WhatsNewBundleCreator.java:250) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.updateConfig(WhatsNewBundleCreator.java:237) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.isNewConfigVersion(WhatsNewBundleCreator.java:160) at com.android.tools.idea.whatsnew.assistant.WhatsNewCheckVersionTask.run(WhatsNewCheckVersionTask.kt:34) at com.intellij.openapi.progress.impl.CoreProgressManager.startTask(CoreProgressManager.java:477) at com.intellij.openapi.progress.impl.ProgressManagerImpl.startTask(ProgressManagerImpl.java:133) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcessWithProgressAsynchronously$6(CoreProgressManager.java:528) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$4(ProgressRunner.java:250) at com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(ProgressManager.java:100) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(CoreProgressManager.java:221) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(trace.kt:46) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:220) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.openapi.progress.ProgressManager.runProcess(ProgressManager.java:100) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$5(ProgressRunner.java:250) at com.intellij.openapi.progress.impl.ProgressRunner$ProgressRunnable.run(ProgressRunner.java:500) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:86) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:81) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$launchTask$18(ProgressRunner.java:466) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:29:33,575 [ 853925] INFO - #c.i.o.p.SmartModeScheduler - Post-startup activity executed. Current mode: 7 2024-04-22 12:29:33,605 [ 853955] INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 1340ms; general responsiveness: ok; EDT responsiveness: ok 2024-04-22 12:29:33,703 [ 854053] INFO - #c.j.c.lang - [Building Activity] Loading header maps… finished in 386 ms 2024-04-22 12:29:33,704 [ 854054] INFO - #c.j.c.lang - [Building Activity] Loading headers search roots… finished in 0 ms 2024-04-22 12:29:33,705 [ 854055] INFO - #c.j.c.l.m.ModuleMapLog - Loaded 0 module maps in 0 packs for 0 search roots 2024-04-22 12:29:33,705 [ 854055] INFO - #c.j.c.lang - [Building Activity] Loading module maps… finished in 1 ms 2024-04-22 12:29:33,707 [ 854057] INFO - #c.j.c.lang - [Building Activity] Collecting files finished in 2 ms 2024-04-22 12:29:33,764 [ 854114] INFO - #c.j.c.lang - Loaded 0 tables for 0 files (0 project files) 2024-04-22 12:29:33,765 [ 854115] INFO - #c.j.c.lang - [Building Activity] Loading symbols finished in 58 ms 2024-04-22 12:29:33,765 [ 854115] INFO - #c.j.c.l.m.ModuleMapLog - Building module maps for 0 (root, configuration) pairs 2024-04-22 12:29:33,788 [ 854138] INFO - #c.j.c.lang - [Building Activity] Building module maps… finished in 22 ms 2024-04-22 12:29:33,799 [ 854149] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 10 ms 2024-04-22 12:29:33,814 [ 854164] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 15 ms 2024-04-22 12:29:33,816 [ 854166] INFO - #c.j.c.l.m.ModuleMapLog - Saved 0 module maps in 0 packs 2024-04-22 12:29:33,821 [ 854171] INFO - #c.j.c.lang - [Building Activity] Saving module maps… finished in 7 ms 2024-04-22 12:29:33,821 [ 854171] INFO - #c.j.c.lang - Building symbols for 0 source files 2024-04-22 12:29:33,821 [ 854171] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 0 ms 2024-04-22 12:29:33,821 [ 854171] INFO - #c.j.c.lang - Building symbols for 0 unused headers 2024-04-22 12:29:33,822 [ 854172] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 0 ms 2024-04-22 12:29:33,822 [ 854172] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 0 ms 2024-04-22 12:29:33,822 [ 854172] INFO - #c.j.c.lang - [Building Activity] Symbols loaded 2024-04-22 12:29:33,822 [ 854172] INFO - #c.j.c.lang - Building symbols in FAST mode, 0 source files from total 0 project files 2024-04-22 12:29:33,826 [ 854176] INFO - #c.j.c.lang - Saving modified symbols for 0 files (0 tables of total 0) 2024-04-22 12:29:33,846 [ 854196] INFO - #c.j.c.lang - [Building Activity] Saving symbols… finished in 24 ms 2024-04-22 12:29:33,846 [ 854196] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$4157/0x0000000802245c60@18ed91ed) 2024-04-22 12:29:33,884 [ 854234] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:29:34,113 [ 854463] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning completed for kotlinBooks. Number of scanned files: 212426; number of files for indexing: 0 took 1647ms; general responsiveness: 0/1 sluggish, 1/1 very slow; EDT responsiveness: 1/1 sluggish 2024-04-22 12:29:34,113 [ 854463] INFO - #c.i.u.i.PerProjectIndexingQueue - Finished for kotlinBooks. No files to index with loading content. 2024-04-22 12:29:34,115 [ 854465] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:29:34,196 [ 854546] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: marking roots for initial VFS refresh 2024-04-22 12:29:34,202 [ 854552] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: starting initial VFS refresh of 147 roots 2024-04-22 12:29:34,261 [ 854611] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: initial VFS refresh finished in 58 ms 2024-04-22 12:29:34,457 [ 854807] INFO - #com.google.services.firebase.insights.client.grpc.CrashlyticsGrpcClientImpl - App Quality Insights gRpc server connected at firebasecrashlytics.googleapis.com 2024-04-22 12:29:34,467 [ 854817] INFO - #com.android.tools.idea.vitals.client.grpc.VitalsGrpcClientImpl - Play Vitals gRpc server connected at playdeveloperreporting.googleapis.com 2024-04-22 12:29:34,543 [ 854893] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:34,595 [ 854945] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 2,999,999.0 msec remaining, 0.0 msec elapsed 2024-04-22 12:29:36,295 [ 856645] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:36,928 [ 857278] INFO - #c.i.v.l.d.i.IndexDiagnosticRunner - Index diagnostic for 24 commits in [file://C:/IntellijProjects/kotlinBooks] is completed 2024-04-22 12:29:38,621 [ 858971] INFO - #o.j.j.b.i.CompilerReferenceIndex - backward reference index version doesn't exist 2024-04-22 12:29:38,622 [ 858972] INFO - #c.i.c.b.IsUpToDateCheckStartupActivity - suitable consumer is not found 2024-04-22 12:29:38,637 [ 858987] INFO - #com.android.build.diagnostic.WindowsDefenderCheckService - status check is disabled 2024-04-22 12:29:38,690 [ 859040] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Sync global entities with mutable entity storage 2024-04-22 12:29:38,693 [ 859043] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Apply JPS storage (iml files) 2024-04-22 12:29:38,716 [ 859066] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:29:38,717 [ 859067] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Changes were successfully applied 2024-04-22 12:29:38,721 [ 859071] INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Util - Workspace model loaded from cache. Syncing real project state into workspace model in 112 ms. Thread[DefaultDispatcher-worker-6,5,main] 2024-04-22 12:29:38,724 [ 859074] INFO - #com.android.tools.idea.gradle.project.AndroidGradleProjectStartupActivity - Up-to-date models found in the cache. Not invoking Gradle sync. 2024-04-22 12:29:38,735 [ 859085] INFO - #com.google.services.firebase.insights.config.FirebaseAppManager - New app states: {}. 2024-04-22 12:29:38,776 [ 859126] INFO - #c.i.o.e.s.p.IdeModifiableModelsProviderImpl - Ide modifiable models provider, create builder from version 14 2024-04-22 12:29:38,939 [ 859289] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:29:39,870 [ 860220] INFO - #com.android.tools.idea.vitals.ui.VitalsConfigurationManager - Accessible Android Vitals connections: [] 2024-04-22 12:29:40,072 [ 860422] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:30:31,354 [ 911704] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS started 2024-04-22 12:30:36,057 [ 916407] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS finished (healthy): VFSHealthCheckReport[healthy: true](FileRecordsReport[recordsChecked=283221, recordsDeleted=216, childrenChecked=282418]{nullNameIds=0, unresolvableNameIds=0, notNullContentIds=2063, unresolvableContentIds=0, unresolvableAttributesIds=0, nullParents=0, inconsistentParentChildRelationships=0, generalErrors=0), RootsReport(rootsCount=449, rootsWithParents=0, rootsDeletedButNotRemoved=0, generalErrors=0), NamesEnumeratorReport(namesChecked=148262, namesResolvedToNull=0, idsResolvedToNull=0, inconsistentNames=0, generalErrors=0), ContentEnumeratorReport(contentRecordsChecked=1746148, generalErrors=0)){timeTaken=4.690565700s} 2024-04-22 12:36:42,813 [1283163] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-code-vision-kotlinBooks-5c450b83 with size 16 2024-04-22 12:37:03,041 [1303391] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete request: prefix: "/* File: ClassWithConstructor.kt\n * Author: Anouar Doukkali\n * Created on: 1/3/2024 10:26 AM\n * Description: Demonstrate the use of a class with a primary constructor.\n * @since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**" suffix: " Represents a class with a primary constructor.\n * @property property1 The first property of the class declared as private.\n * @property property2 The second property of the class with a default value.\n * @constructor Creates a new instance of ClassWithConstructor by taking property1 and property2 as parameters.\n */\ninternal class Constructors(private val property1: String, private val property2: Int = 0)\n" metadata { string_session_id: "96a9e82c-4f44-420d-a99d-fc3497ee8ccb" user_tier: BETA } options { stop_sequences: "\n" stop_sequences: "\r\n" inference_language: KOTLIN } client: ANDROID_STUDIO additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleDataClass.kt" content: "/**\n * File: SimpleDataClass.kt\n * Author: Anouar Doukkali\n * Created on: 1/15/2024 6:31 AM\n * Description: A simple data class that holds a name and an age\n * Since: v0.1.0\n */\n\npackage kotlinlang.classes\n\n/**\n * Data class is a class that only holds data.\n *@constructor Creates a simple data class with a name\n *@property name the name of the data class\n */\ninternal data class SimpleDataClass(val name: String, var age: Int = 0)\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/SimpleClass.kt" content: "/**\n * File: SimpleClass.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: A class can be declared without any constructor parameters.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A class can be declared without any constructor parameters.\n */\ninternal class SimpleClass\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/MemberProperties.kt" content: "/**\n * File: MemberProperties.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 9:01 AM\n * Description: Demonstrate the use of member properties in Kotlin.\n * Since: v0.1.0\n */\npackage kotlinlang.classes\n\n/**\n * A constant value declared at the top level of a file.\n */\nprivate const val PI = 3.14\n\n/**\n * A class with two private properties and a late-initialized string.\n * @property pi a private property initialized by a constant value.\n * @property max a private immutable property.\n * @property sum a late-initialized string.\n */\ninternal class MemberProperties {\n private val pi = PI\n private val max = 100\n lateinit var name: String\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/conditions/ConditionEvaluator.kt" content: "/**\n * File: ConditionEvaluator.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 10:24 AM\n * Description: This class encapsulates the evaluation of various conditions.\n * Since: v0.1.0\n */\npackage kotlinlang.conditions\n\n/**\n * This class encapsulates the evaluation of various conditions.\n *\n * @property number The number to be evaluated. Can be null.\n * @property first The first string to be evaluated in pair.\n * @property second The second string to be evaluated in pair.\n */\nclass ConditionEvaluator(private val number: Int?, private val first: String, private val second: String) {\n\n /**\n * Evaluates the number property based on various conditions and prints the result.\n */\n fun evaluateNumber() {\n when (number) {\n 1 -> println(\"one\")\n 2 -> println(\"two\")\n 3, 4, 5 -> println(\"medium\")\n is Int -> {\n println(\"it\'s an int\")\n println(number)\n }\n null -> println(\"it\'s a null\")\n else -> println(\"something else\")\n }\n }\n\n /**\n * Evaluates the number property based on its value and prints the result.\n */\n fun evaluateNumberConditions() {\n when {\n number != null && number > 0 && (number % 2) == 0 -> println(\"even positive number\")\n number != null && number > 0 -> println(\"positive number\")\n number != null && number < 0 -> println(\"negative number\")\n else -> println(\"zero\")\n }\n }\n\n /**\n * Evaluates the pair of strings (first and second properties) and prints the result.\n */\n fun evaluateStringPair() {\n when (setOf(first, second)) {\n setOf(\"one\", \"two\") -> println(\"one and two\")\n setOf(\"red\", \"blue\") -> println(\"red and blue\")\n }\n }\n\n /**\n * Converts the number property to a string representation and returns it.\n *\n * @return A string that represents the number property.\n */\n fun numberToString(): String {\n return when (number) {\n 1 -> \"one\"\n 2 -> \"two\"\n else -> \"something else\"\n }\n }\n\n /**\n * Checks if a given integer is greater than 10 and returns a specific value based on the check.\n *\n * @param a The integer to check.\n * @return 11 if the integer is greater than 10, otherwise 9.\n */\n fun ifElseReturn(a: Int): Int {\n return if (a > 10) 11 else 9\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/collectionsOperations/lists/FlatOperations.kt" content: "/*\n * File: FlatOperations.kt\n * Author: Anouar Doukkali\n * Created on: 4/20/2024 3:33 AM\n * Description: This file contains the implementation of the FlatOperations class.\n * Since: v0.1.0\n */\n\npackage kotlinlang.collectionsOperations.lists\n\n/**\n * This class provides methods to perform various flatMap operations on lists.\n */\ninternal class FlatOperations {\n \n /**\n * This function takes two lists and returns a new list of strings.\n * Each string is a combination of an element from the first list and an element from the second list.\n * The combination is in the format \"element1 : element2\".\n *\n * @param myList1 The first list of elements.\n * @param myList2 The second list of elements.\n * @return A new list of strings, each string is a combination of an element from myList1,\n * and an element from myList2.\n */\n fun flatMapOfTwoLists(myList1: List, myList2: List): List {\n return myList1.flatMap { a -> myList2.map { b -> \"$a : $b\" } }\n }\n \n /**\n * This function takes a list and returns a new list of pairs.\n * Each pair is a combination of two elements from the input list.\n *\n * @param myList The input list of elements.\n * @return A new list of pairs, each pair is a combination of two elements from myList.\n */\n fun flatMapSameList(myList: List): List> {\n return myList.flatMap { a -> myList.map { b -> a to b } }\n }\n \n /**\n * This function takes a variable number of lists and returns a new list,\n * that is a combination of all the input lists.\n * @param myLists The input lists of elements.\n * @return A new list that is a combination of all the input lists.\n */\n fun flatLists(vararg myLists: List): List {\n return listOf(*myLists).flatten()\n }\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/dokka" content: "#!/usr/bin/env bash\n\n#------------------------ Check for @version in modified files ------------------------\n# Extract the version number from build.gradle.kts\nVERSION=$(grep -Eo \'version\\s*=\\s*\"[^\"]+\"\' build.gradle.kts | sed -E \'s/version\\s*=\\s*\"([^\"]+)\"/\\1/\')\n\n# Find all modified .kt files\nMODIFIED_FILES=$(git diff --cached --name-only --diff-filter=ACM | grep \'\\.kt$\')\n\n# Check if the version number was found\nif [ -z \"$VERSION\" ]; then\n # If version number was not found, check if any modified file contains @version\n for file in $MODIFIED_FILES; do\n if grep -q \"@version\" \"$file\"; then\n echo \"Error: @version found in $file but unable to extract version from build.gradle.kts.\"\n exit 1\n fi\n done\nelse\n # If version number was found, replace @version with the extracted version in all modified files\n for file in $MODIFIED_FILES; do\n sed -i \"s/@version/${VERSION}/g\" \"$file\"\n git add \"$file\"\n done\nfi" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/scripts/hooks/pre-commit" content: "#!/usr/bin/env bash\n\nsource .git/hooks/lock-main-branch\nsource .git/hooks/detekt\nsource .git/hooks/dokka" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataStructures/lists/Lists.kt" content: "package kotlinlang.dataStructures.lists\n\n/**\n * This file demonstrates how to create and initialize lists in Kotlin.\n * @see ListsTest\n */\n@Suppress(\"unused\")\nprivate fun initializeLists() {\n // initialization of immutable lists\n val alphabets: List = listOf(\"a\", \"b\", \"c\", \"d\", \"e\") // explicit type declaration\n val numbers = listOf(1, 2, 3, 4, 5, 6, 7) // explicit type declaration\n val chars = listOf(\'a\', \'b\', \'c\', \'d\', \'e\') // the type of the list in inferred to be Char\n val chars2 = List(10) { \'a\' + it } // create a list of chars a,b,c,d,etc. using lambda,\'it\' refer to size\n val empty = List(5) { 0 } // a list of Int instances with default size and values of \'0\'s\n val lambda = List(10) { it } // the indexes are the value of the list\n val casting: List = mutableListOf(1, 2, 3) // declaring a list using covariance\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/ShortType.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Short` type.\n */\ninternal class ShortType {\n\n /**\n * @return The maximum value of a `Short`.\n */\n fun shortMAXValue() = Short.MAX_VALUE\n\n /**\n * @return The minimum value of a `Short`.\n */\n fun shortMINValue() = Short.MIN_VALUE\n\n /**\n * Adds two `Short` values together result as an Int.\n * @param a The first `Short` value.\n * @param b The second `Short` value.\n * @return The sum of the two `Short` values.\n */\n fun addShorts(a: Short, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } additional_files { path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/dataTypes/primitives/Bytes.kt" content: "package kotlinlang.dataTypes.primitives\n\n/**\n * A class that provides utility methods for the `Byte` type.\n */\ninternal class Bytes {\n /**\n * @return The maximum value of a `Byte`.\n */\n fun byteMAXValue() = Byte.MAX_VALUE\n\n /**\n * @return The minimum value of a `Byte`.\n */\n fun byteMINValue() = Byte.MIN_VALUE\n\n /**\n * Adds two bytes together will result as an Int.\n * @param a The first byte.\n * @param b The second byte.\n * @return The sum of the two bytes as an Int.\n */\n fun addBytes(a: Byte, b: Byte) = a + b\n\n /**\n * Adds a byte to a short will result as an Int.\n *\n * @param a The byte.\n * @param b The short.\n * @return The sum of the byte and the short as an Int.\n */\n fun addToShort(a: Byte, b: Short) = a + b\n}\n" included_reason: RECENTLY_OPENED } current_file_path: "C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt" 2024-04-22 12:37:04,319 [1304669] INFO - #com.android.studio.ml.aida.AidaModelProvider - complete response: metadata { rpc_global_id: 5522674525359968159 server_experiment_ids: 1714244 server_experiment_ids: 97511269 server_experiment_ids: 48841080 server_experiment_ids: 1706538 server_experiment_ids: 97543149 server_experiment_ids: 1714244 server_experiment_ids: 97511162 inference_option_metadata { model_id: "codesmith_completion_4b" 2: 1 } } 2024-04-22 12:37:20,224 [1320574] INFO - #c.i.o.a.i.ActionPopupMenuImpl - isPopupOrMainMenuPlace(StickyLine)==false. Use ActionPlaces.getPopupPlace. 2024-04-22 12:37:31,253 [1331603] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:37:34,440 [1334790] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:37:42,713 [1343063] INFO - #c.i.a.AnalysisScope - Scanning scope took 1 ms 2024-04-22 12:37:52,817 [1353167] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:37:52,821 [1353171] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:37:52,821 [1353171] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:37:52,821 [1353171] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:38:13,236 [1373586] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:38:13,239 [1373589] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:38:13,239 [1373589] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:38:13,240 [1373590] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:38:16,541 [1376891] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:38:16,544 [1376894] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:38:16,545 [1376895] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:38:16,545 [1376895] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:38:23,084 [1383434] INFO - #c.i.i.p.DisabledPluginsState - Plugins to disable: [izhangzhihao.rainbow.brackets] 2024-04-22 12:38:23,093 [1383443] INFO - #c.i.i.p.DynamicPlugins - Plugins to unload: [PluginDescriptor(name=Rainbow Brackets, id=izhangzhihao.rainbow.brackets, descriptorPath=plugin.xml, path=~\AppData\Roaming\Google\AndroidStudioPreview2024.1\plugins\intellij-rainbow-brackets, version=2024.2.3-241, package=null, isBundled=false)] 2024-04-22 12:38:23,093 [1383443] INFO - #c.i.i.p.DynamicPlugins - Plugin izhangzhihao.rainbow.brackets is explicitly marked as requiring restart 2024-04-22 12:38:23,952 [1384302] WARN - #c.i.o.o.e.ConfigurableCardPanel - auto-dispose 'Plugins' id=preferences.pluginManager 2024-04-22 12:38:25,172 [1385522] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:38:25,173 [1385523] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:38:25,182 [1385532] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:38:25,183 [1385533] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:38:25,183 [1385533] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:38:25,190 [1385540] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:38:25,406 [1385756] INFO - #c.i.o.w.i.WindowManagerImpl - === Release(true) frame on closed project === 2024-04-22 12:38:25,434 [1385784] INFO - #com.android.tools.idea.adb.AdbService - Ddmlib can be terminated as all projects have been closed 2024-04-22 12:38:25,438 [1385788] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:38:25,441 [1385791] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Unregistering project from adblib channel provider: Project(name=kotlinBooks, containerState=DISPOSE_IN_PROGRESS, componentStore=C:\IntellijProjects\kotlinBooks) (disposed) 2024-04-22 12:38:25,449 [1385799] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Watcher terminated with exit code 0 2024-04-22 12:38:25,464 [1385814] INFO - #c.i.d.PerformanceWatcherImpl - Too many threads: 35 created in the global Application pool. (reasonable.application.thread.pool.size=30, available processors: 4); thread dump is saved to 'C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\log\threadDumps-newPooledThread\threadDump-20240422-123825-1713785905462.txt' 2024-04-22 12:38:25,468 [1385818] INFO - #o.j.k.i.s.r.KotlinCompilerReferenceIndexStorage - KCRI storage is closed (didn't exist) 2024-04-22 12:38:25,468 [1385818] INFO - #c.i.c.b.CompilerReferenceServiceBase - backward reference index reader is closed (didn't exist) 2024-04-22 12:38:25,491 [1385841] INFO - #c.i.u.s.SvgCacheManager - SVG icon cache is closed 2024-04-22 12:38:25,496 [1385846] INFO - #o.j.i.BuiltInServer - web server stopped 2024-04-22 12:38:25,507 [1385857] INFO - #com.android.tools.idea.adb.AdbService - Disposing AdbService 2024-04-22 12:38:25,540 [1385890] INFO - #com.android.adblib.impl.SessionDeviceTracker - trackDevices() failed, will retry in 2000 millis, connection id=4 java.io.IOException: The specified network name is no longer available at java.base/sun.nio.ch.Iocp.translateErrorToIOException(Iocp.java:299) at java.base/sun.nio.ch.Iocp$EventHandlerTask.run(Iocp.java:389) at java.base/sun.nio.ch.AsynchronousChannelGroupImpl$1.run(AsynchronousChannelGroupImpl.java:113) at com.intellij.util.concurrency.BoundedTaskExecutor.doRun(BoundedTaskExecutor.java:244) at com.intellij.util.concurrency.BoundedTaskExecutor.access$200(BoundedTaskExecutor.java:30) at com.intellij.util.concurrency.BoundedTaskExecutor$1.executeFirstTaskAndHelpQueue(BoundedTaskExecutor.java:222) at com.intellij.util.ConcurrencyUtil.runUnderThreadName(ConcurrencyUtil.java:218) at com.intellij.util.concurrency.BoundedTaskExecutor$1.run(BoundedTaskExecutor.java:210) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:38:25,544 [1385894] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:38:25,544 [1385894] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:38:25,544 [1385894] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:38:25,561 [1385911] INFO - #c.i.p.s.SerializationManagerImpl - Start shutting down C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\index\rep.names 2024-04-22 12:38:25,561 [1385911] INFO - #c.i.p.s.SerializationManagerImpl - Finished shutting down C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\index\rep.names 2024-04-22 12:38:25,562 [1385912] INFO - #c.i.o.f.i.FileTypeDetectionService - 257 auto-detected files. Detection took 1932 ms 2024-04-22 12:38:25,564 [1385914] INFO - #c.i.u.i.FileBasedIndexImpl - Index dispose started 2024-04-22 12:38:25,647 [1385997] INFO - #c.i.p.s.StubIndexImpl - StubIndexExtension-s were unloaded 2024-04-22 12:38:25,648 [1385998] INFO - #c.i.u.i.FileBasedIndexImpl - Index dispose completed in 84ms. 2024-04-22 12:38:25,684 [1386034] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 3 2024-04-22 12:38:25,685 [1386035] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 4 2024-04-22 12:38:25,685 [1386035] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 5 2024-04-22 12:38:25,685 [1386035] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 6 2024-04-22 12:38:25,685 [1386035] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 7 2024-04-22 12:38:25,685 [1386035] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 8 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 9 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 10 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 11 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 12 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 13 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 14 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 15 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 16 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 17 2024-04-22 12:38:25,686 [1386036] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 18 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 19 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 20 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 21 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 22 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 23 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 24 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 25 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 26 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 27 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 28 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 29 2024-04-22 12:38:25,687 [1386037] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 30 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 31 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 32 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 33 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 34 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 35 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 36 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 37 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 38 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 39 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 40 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 41 2024-04-22 12:38:25,688 [1386038] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 42 2024-04-22 12:38:25,689 [1386039] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 43 2024-04-22 12:38:25,689 [1386039] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 44 2024-04-22 12:38:25,689 [1386039] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 45 2024-04-22 12:38:25,689 [1386039] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 46 2024-04-22 12:38:25,689 [1386039] WARN - org.eclipse.lsp4j.jsonrpc.RemoteEndpoint - Unmatched cancel notification for request id 47 2024-04-22 12:38:25,693 [1386043] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose started 2024-04-22 12:38:25,696 [1386046] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS closing 2024-04-22 12:38:25,731 [1386081] INFO - #c.i.o.v.n.p.PersistentFSImpl - VFS dispose completed in 37 ms. 2024-04-22 12:38:25,738 [1386088] INFO - #c.i.u.Restarter - run restarter: [C:\Program Files\Android\Android Studio\bin\restarter.exe, 5812, 1, C:\Program Files\Android\Android Studio\bin\studio64.exe] 2024-04-22 12:38:25,758 [1386108] INFO - #c.i.p.i.b.AppStarter - ------------------------------------------------------ IDE SHUTDOWN ------------------------------------------------------ 2024-04-22 12:38:29,258 [ 7] INFO - #c.i.p.i.b.AppStarter - ------------------------------------------------------ IDE STARTED ------------------------------------------------------ 2024-04-22 12:38:29,320 [ 69] INFO - #c.i.i.p.PluginManager - Loaded bundled plugins: IDEA CORE (241.14494.240), TextMate Bundles (241.14494.240.2411.11731683), Images (241.14494.240.2411.11731683), Copyright (241.14494.240.2411.11731683), EditorConfig (241.14494.240.2411.11731683), YAML (241.14494.240.2411.11731683), JetBrains maven model api classes (241.14494.240.2411.11731683), JetBrains Repository Search (241.14494.240.2411.11731683), Maven server api classes (241.14494.240.2411.11731683), Markdown (241.14494.240.2411.11731683), Terminal (241.14494.240.2411.11731683), Mercurial (241.14494.240.2411.11731683), Relational Dataflow Analysis (241.14494.240.2411.11731683), Properties (241.14494.240.2411.11731683), Gradle (241.14494.240.2411.11731683), NetBeans Keymap (241.14494.240.2411.11731683), com.intellij.dev (241.14494.240.2411.11731683), Java (241.14494.240.2411.11731683), Plugin DevKit (241.14494.240.2411.11731683), Java Bytecode Decompiler (241.14494.240.2411.11731683), Java Stream Debugger (241.14494.240.2411.11731683), Task Management (241.14494.240.2411.11731683), JUnit (241.14494.240.2411.11731683), CIDR Debugger (241.14494.240.2411.11731683), CIDR Base (241.14494.240.2411.11731683), Clangd Support (241.14494.240.2411.11731683), C/C++ Language Support via Classic Engine (241.14494.240.2411.11731683), Clangd-CLion Bridge (241.14494.240.2411.11731683), Shell Script (241.14494.240.2411.11731683), HTML Tools (241.14494.240.2411.11731683), IntelliLang (241.14494.240.2411.11731683), Groovy (241.14494.240.2411.11731683), Kotlin (241.14494.240.2411.11731683-AS), Visual Studio Keymap (241.14494.240.2411.11731683), Machine Learning Code Completion (241.14494.240.2411.11731683), Machine Learning Code Completion Models (241.14494.240.2411.11731683), Turbo Complete (241.14494.240.2411.11731683), Toml (241.14494.240.2411.11731683), WebP Support (241.14494.240.2411.11731683), Smali Support (241.14494.240.2411.11731683), Java Internationalization (241.14494.240.2411.11731683), TestNG (241.14494.240.2411.11731683), Code Coverage for Java (241.14494.240.2411.11731683), Java IDE Customization (241.14494.240.2411.11731683), Eclipse Keymap (241.14494.240.2411.11731683), GitHub (241.14494.240.2411.11731683), Gradle-Java (241.14494.240.2411.11731683), GitLab (241.14494.240.2411.11731683), Android (241.14494.240.2411.11731683), Android SDK Upgrade Assistant (241.14494.240.2411.11731683), Android Design Tools (241.14494.240.2411.11731683), Jetpack Compose (241.14494.240.2411.11731683), Test Recorder (241.14494.240.2411.11731683), Firebase Services (241.14494.240.2411.11731683), Firebase Testing (241.14494.240.2411.11731683), App Links Assistant (241.14494.240.2411.11731683), Git (241.14494.240.2411.11731683), Git for App Insights (241.14494.240.2411.11731683), Google Cloud Tools For Android Studio (241.14494.240.2411.11731683), Configuration Script (241.14494.240.2411.11731683), Android NDK Support (241.14494.240.2411.11731683), Android APK Support (241.14494.240.2411.11731683), Device Streaming (241.14494.240.2411.11731683), Subversion (241.14494.240.2411.11731683), Gemini (241.14494.240.2411.11731683), ClangConfig (241.14494.240.2411.11731683), ClangFormat (241.14494.240.2411.11731683) 2024-04-22 12:38:29,321 [ 70] INFO - #c.i.i.p.PluginManager - Loaded custom plugins: detekt (2.4.1), JetBrains Marketplace Licensing (241.14494.288), Kotest (1.3.74-241.9959-EAP-CANDIDATE-SNAPSHOT), GitHub Copilot (1.5.2.5345), SonarLint (10.4.2.78113), Codiumate - Code, test and review with confidence - by CodiumAI (0.7.32) 2024-04-22 12:38:29,321 [ 70] INFO - #c.i.i.p.PluginManager - Disabled plugins: Rainbow Brackets (2024.2.3-241) 2024-04-22 12:38:29,363 [ 112] INFO - #c.i.u.i.PageCacheUtils - File page caching params: 2024-04-22 12:38:29,363 [ 112] INFO - #c.i.u.i.PageCacheUtils - DEFAULT_PAGE_SIZE: 10485760 2024-04-22 12:38:29,364 [ 113] INFO - #c.i.u.i.PageCacheUtils - Direct memory to use, max: 3200253952 2024-04-22 12:38:29,364 [ 113] INFO - #c.i.u.i.PageCacheUtils - FilePageCache: regular + lock-free (LOCK_FREE_PAGE_CACHE_ENABLED:true) 2024-04-22 12:38:29,364 [ 113] INFO - #c.i.u.i.PageCacheUtils - NEW_PAGE_CACHE_MEMORY_FRACTION: 0.20000000298023224 2024-04-22 12:38:29,364 [ 113] INFO - #c.i.u.i.PageCacheUtils - Regular FilePageCache: 503316478 bytes 2024-04-22 12:38:29,364 [ 113] INFO - #c.i.u.i.PageCacheUtils - New FilePageCache: 125829122 bytes (+ up to 10.0% overflow) 2024-04-22 12:38:29,365 [ 114] INFO - #c.i.u.i.PageCacheUtils - DirectByteBuffers pool: 104857600 bytes 2024-04-22 12:38:29,365 [ 114] INFO - #c.i.p.i.b.AppStarter - JNA library (64-bit) loaded in 42 ms 2024-04-22 12:38:29,368 [ 117] INFO - #c.i.p.i.b.AppStarter - IDE: Android Studio (build #AI-241.14494.240.2411.11731683, Thu, 18 Apr 2024 07:33:00 GMT) 2024-04-22 12:38:29,368 [ 117] INFO - #c.i.p.i.b.AppStarter - OS: Windows (10.0) 2024-04-22 12:38:29,368 [ 117] INFO - #c.i.p.i.b.AppStarter - JRE: 17.0.10+0--11609105, amd64 (JetBrains s.r.o.) 2024-04-22 12:38:29,369 [ 118] INFO - #c.i.p.i.b.AppStarter - JVM: 17.0.10+0--11609105 (OpenJDK 64-Bit Server VM) 2024-04-22 12:38:29,371 [ 120] INFO - #c.i.p.i.b.AppStarter - PID: 13288 2024-04-22 12:38:29,372 [ 121] INFO - #c.i.p.i.b.AppStarter - JVM options: [exit, -XX:ErrorFile=C:\Users\anoua\\java_error_in_studio64_%p.log, -XX:HeapDumpPath=C:\Users\anoua\\java_error_in_studio64.hprof, -Xms128m, -Xmx3072m, -XX:ReservedCodeCacheSize=512m, -XX:+IgnoreUnrecognizedVMOptions, -XX:+UseG1GC, -XX:SoftRefLRUPolicyMSPerMB=50, -XX:CICompilerCount=2, -XX:+HeapDumpOnOutOfMemoryError, -XX:-OmitStackTraceInFastThrow, -ea, -Dsun.io.useCanonCaches=false, -Djdk.http.auth.tunneling.disabledSchemes="", -Djdk.attach.allowAttachSelf=true, -Djdk.module.illegalAccess.silent=true, -Dkotlinx.coroutines.debug=off, -XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log, -XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof, --add-opens=java.base/jdk.internal.org.objectweb.asm=ALL-UNNAMED, --add-opens=java.base/jdk.internal.org.objectweb.asm.tree=ALL-UNNAMED, -Didea.kotlin.plugin.use.k2=false, -Djb.vmOptionsFile=C:\Program Files\JetBrains\Activate\vmoptions\studio.vmoptions, -Djava.system.class.loader=com.intellij.util.lang.PathClassLoader, -Didea.vendor.name=Google, -Didea.paths.selector=AndroidStudioPreview2024.1, -Djna.boot.library.path=C:\Program Files\Android\Android Studio/lib/jna/amd64, -Dpty4j.preferred.native.folder=C:\Program Files\Android\Android Studio/lib/pty4j, -Djna.nosys=true, -Djna.noclasspath=true, -Didea.platform.prefix=AndroidStudio, -XX:FlightRecorderOptions=stackdepth=256, --add-opens=java.base/sun.net.www.protocol.https=ALL-UNNAMED, -Didea.required.plugins.id=org.jetbrains.kotlin, -Djava.security.manager=allow, -Dintellij.custom.startup.error.reporting.url=https://issuetracker.google.com/issues/new?component=192708, -Dsplash=true, -Daether.connector.resumeDownloads=false, --add-opens=java.base/java.io=ALL-UNNAMED, --add-opens=java.base/java.lang=ALL-UNNAMED, --add-opens=java.base/java.lang.ref=ALL-UNNAMED, --add-opens=java.base/java.lang.reflect=ALL-UNNAMED, --add-opens=java.base/java.net=ALL-UNNAMED, --add-opens=java.base/java.nio=ALL-UNNAMED, --add-opens=java.base/java.nio.charset=ALL-UNNAMED, --add-opens=java.base/java.text=ALL-UNNAMED, --add-opens=java.base/java.time=ALL-UNNAMED, --add-opens=java.base/java.util=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED, --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED, --add-opens=java.base/jdk.internal.vm=ALL-UNNAMED, --add-opens=java.base/sun.nio.ch=ALL-UNNAMED, --add-opens=java.base/sun.nio.fs=ALL-UNNAMED, --add-opens=java.base/sun.security.ssl=ALL-UNNAMED, --add-opens=java.base/sun.security.util=ALL-UNNAMED, --add-opens=java.base/sun.net.dns=ALL-UNNAMED, --add-opens=java.desktop/java.awt=ALL-UNNAMED, --add-opens=java.desktop/java.awt.dnd.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.event=ALL-UNNAMED, --add-opens=java.desktop/java.awt.image=ALL-UNNAMED, --add-opens=java.desktop/java.awt.peer=ALL-UNNAMED, --add-opens=java.desktop/java.awt.font=ALL-UNNAMED, --add-opens=java.desktop/javax.swing=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.plaf.basic=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text=ALL-UNNAMED, --add-opens=java.desktop/javax.swing.text.html=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.datatransfer=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.image=ALL-UNNAMED, --add-opens=java.desktop/sun.awt.windows=ALL-UNNAMED, --add-opens=java.desktop/sun.awt=ALL-UNNAMED, --add-opens=java.desktop/sun.font=ALL-UNNAMED, --add-opens=java.desktop/sun.java2d=ALL-UNNAMED, --add-opens=java.desktop/sun.swing=ALL-UNNAMED, --add-opens=java.desktop/com.sun.java.swing=ALL-UNNAMED, --add-opens=jdk.attach/sun.tools.attach=ALL-UNNAMED, --add-opens=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED, --add-opens=jdk.internal.jvmstat/sun.jvmstat.monitor=ALL-UNNAMED, --add-opens=jdk.jdi/com.sun.tools.jdi=ALL-UNNAMED, -Dide.native.launcher=true] 2024-04-22 12:38:29,372 [ 121] INFO - #c.i.p.i.b.AppStarter - args: 2024-04-22 12:38:29,373 [ 122] INFO - #c.i.p.i.b.AppStarter - library path: C:\Program Files\Android\Android Studio\bin;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Users\anoua\AppData\Local\Microsoft\WindowsApps;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2023.2.1\bin;C:\Users\anoua\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\anoua\AppData\Local\Programs\Fiddler;C:\jdk-21.0.1\bin;C:\Users\anoua\AppData\Local\JetBrains\Toolbox\scripts;. 2024-04-22 12:38:29,373 [ 122] INFO - #c.i.p.i.b.AppStarter - boot library path: C:\Program Files\Android\Android Studio\jbr\bin 2024-04-22 12:38:29,388 [ 137] INFO - #c.i.p.i.b.AppStarter - locale=en_US JNU=Cp1252 file.encoding=Cp1252 idea.config.path=C:\Users\anoua\AppData\Roaming\Google\AndroidStudioPreview2024.1 idea.system.path=C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1 idea.plugins.path=C:\Users\anoua\AppData\Roaming\Google\AndroidStudioPreview2024.1\plugins idea.log.path=C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\log 2024-04-22 12:38:29,398 [ 147] INFO - #c.i.p.i.b.AppStarter - CPU cores: 4; ForkJoinPool.commonPool: java.util.concurrent.ForkJoinPool@17e9455[Running, parallelism = 3, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]; factory: com.intellij.concurrency.IdeaForkJoinWorkerThreadFactory@25480b2 2024-04-22 12:38:29,736 [ 485] INFO - c.i.p.i.IdeFingerprint - Calculated dependencies fingerprint in 51 ms (hash=1mxd4k9otcewr, buildTime=1713425580, appVersion=AI-241.14494.240.2411.11731683) 2024-04-22 12:38:30,627 [ 1376] INFO - #c.i.a.o.PathMacrosImpl - Loaded path macros: {} 2024-04-22 12:38:30,775 [ 1524] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses 'fast' names enumerator (over mmapped file) 2024-04-22 12:38:30,777 [ 1526] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses streamlined attributes storage (over mmapped file) 2024-04-22 12:38:30,782 [ 1531] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS uses content storage over memory-mapped file, with compression algo: LZ4[ > 8000b ] 2024-04-22 12:38:30,797 [ 1546] INFO - #c.i.o.u.r.RegistryManager - Registry values changed by user: ide.experimental.ui = true, ide.experimental.ui.inter.font = false, ide.instant.shutdown = false, idea.plugins.compatible.build = 2024-04-22 12:38:30,865 [ 1614] INFO - #c.i.o.v.n.p.FSRecords - VFS health-check enabled: first after 600000 ms, and each following 3600000 ms, wrap in RA: true 2024-04-22 12:38:31,061 [ 1810] INFO - #c.i.o.v.n.p.PersistentFSLoader - VFS: impl (expected) version=846397, 283221 file records, 1795 content blobs 2024-04-22 12:38:31,078 [ 1827] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.stats.TypingLatencyTracker requests org.jetbrains.android.AndroidPluginDisposable instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:31,080 [ 1829] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS initialized: 405 ms, 0 failed attempts, 0 error(s) were recovered 2024-04-22 12:38:31,085 [ 1834] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.stats.TypingLatencyTracker requests com.android.tools.idea.concurrency.AndroidExecutors instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:31,138 [ 1887] WARN - #c.i.s.ComponentManagerImpl - com.android.tools.idea.flags.StudioFlags requests com.android.tools.idea.flags.StudioFlagSettings instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:31,356 [ 2105] INFO - #com.android.tools.idea.serverflags.ServerFlagInitializer - Enabled server flags: analytics/surveys/followup, analytics/surveys/feature/ANDROID_PROJECT_VIEW_UNSELECTED, analytics/surveys/feature/DOWNLOAD_INFO_VIEW_SURVEY, analytics/surveys/feature/KOTLIN_SUPPORT_DECLINED_EVENT, analytics/surveys/feature/UPGRADE_ASSISTANT_CTA_OLD_AGP_DISMISSED, diagnostics/forced_gc, diagnostics/memory_usage_reporting, exceptions/ClassCastException, exceptions/ClassNotFoundException, exceptions/PluginException-0073ff27, exceptions/b_256873104, exceptions/b_287116550_1, exceptions/b_287116550_2, exceptions/b_300548532, exceptions/b_300550343, exceptions/b_300614573, exceptions/b_300908560, exceptions/b_312786405, exceptions/b_318878495, studio_flags/directaccess.enable, studio_flags/profiler.keyboard.event, studio_flags/rundebug.adblib.migration.ddmlib.ideviceusage.tracker, studio_flags/studiobot.completions.per.hour, studio_flags/studiobot.conversations.per.hour, studio_flags/studiobot.generations.per.hour, studio_flags/studiobot.inline.code.completion.file.context.enabled 2024-04-22 12:38:31,656 [ 2405] WARN - #c.i.n.i.NotificationGroupManagerImpl - Notification group Logcat is already registered (group=com.intellij.notification.NotificationGroup@6b6fe98e). Plugin descriptor: PluginDescriptor(name=Android, id=org.jetbrains.android, descriptorPath=plugin.xml, path=C:\Program Files\Android\Android Studio\plugins\android, version=241.14494.240.2411.11731683, package=null, isBundled=true) 2024-04-22 12:38:31,694 [ 2443] INFO - #c.i.o.v.n.p.FSRecordsImpl - VFS scanned: file-by-name index was populated 2024-04-22 12:38:32,232 [ 2981] INFO - #c.i.u.n.s.CertificateManager - Default SSL context initialized 2024-04-22 12:38:32,285 [ 3034] INFO - #c.i.i.p.ExpiredPluginsState - Plugins to skip: [] 2024-04-22 12:38:32,552 [ 3301] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Starting file watcher: C:\Program Files\Android\Android Studio\bin\fsnotifier.exe 2024-04-22 12:38:32,799 [ 3548] INFO - com.android.tools.instrumentation.threading.agent.Agent - Threading agent has been loaded. 2024-04-22 12:38:32,838 [ 3587] INFO - #c.i.o.v.i.l.NativeFileWatcherImpl - Native file watcher is operational. 2024-04-22 12:38:32,853 [ 3602] INFO - #o.j.i.BuiltInServerManager - built-in server started, port 63342 2024-04-22 12:38:32,864 [ 3613] INFO - #c.i.o.v.i.w.WslFileWatcher - WSL file watcher: C:\Program Files\Android\Android Studio\bin\fsnotifier-wsl 2024-04-22 12:38:32,994 [ 3743] INFO - #com.android.tools.idea.instrumentation.threading.ThreadingChecker - ThreadingChecker listener has been installed (after threading agent was dynamically loaded). 2024-04-22 12:38:33,188 [ 3937] INFO - #c.i.w.i.i.WorkspaceModelImpl - Load workspace model from cache in 583 ms 2024-04-22 12:38:33,305 [ 4054] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Load global workspace model from cache in 26 ms 2024-04-22 12:38:33,775 [ 4524] INFO - #c.i.u.i.FileBasedIndexImpl - Indices to be built:FilenameIndex(v = 258) 2024-04-22 12:38:33,779 [ 4528] INFO - #c.i.u.i.FileBasedIndexImpl - Using nice flusher for indexes 2024-04-22 12:38:33,836 [ 4585] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 1419 ms. Initialized indexes: [FrameworkDetectionIndex, FilenameIndex, TodoIndex, IdIndex, Trigram.Index, fileIncludes, DomFileIndex, RelaxSymbolIndex, XmlTagNames, XmlNamespaces, html5.custom.attributes.index, SchemaTypeInheritance, json.file.root.values, filetypes, editorconfig.index.name, xmlProperties, java.auto.module.name, java.source.module.name, java.null.method.argument, java.fun.expression, yaml.keys.name, java.binary.plus.expression, bytecodeAnalysis, IdeaPluginRegistrationIndex, PluginIdModuleIndex, PluginIdDependenciesIndex, devkit.ExtensionPointIndex, devkit.ExtensionPointClassIndex, clang.format.lightIndex, Stubs, org.jetbrains.kotlin.idea.versions.KotlinJvmMetadataVersionIndex, org.jetbrains.kotlin.idea.versions.KotlinJsMetadataVersionIndex, FileNameWithoutExtensionIndex, HtmlTagIdIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinClassFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinJavaScriptMetaFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinMetadataFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinMetadataFilePackageIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinModuleMappingIndex, KotlinPackageSourcesMemberNamesIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinJvmModuleAnnotationsIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinBuiltInsMetadataIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinStdlibIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinShortClassNameFileIndex, org.jetbrains.kotlin.idea.vfilefinder.KotlinPartialPackageNamesIndex, KotlinTopLevelCallableByPackageShortNameIndex, KotlinTopLevelClassLikeDeclarationByPackageShortNameIndex, org.jetbrains.kotlin.idea.vfilefinder.KlibMetaFileIndex, KotlinBinaryRootToPackageIndex, BindingXmlIndex, NavXmlIndex, com.android.tools.idea.model.AndroidManifestIndex.NAME, android.ndk.jni.nativemethodindex, com.android.studio.ml.aiexclude.AiExcludeIndex, com.android.tools.idea.dagger.index.DaggerIndex]. 2024-04-22 12:38:33,840 [ 4589] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 1 in 1 ms: Facet manager update storage 2024-04-22 12:38:33,845 [ 4594] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 2 in 0 ms: Facet manager update storage 2024-04-22 12:38:33,851 [ 4600] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 3 in 0 ms: Facet manager update storage 2024-04-22 12:38:33,852 [ 4601] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 4 in 0 ms: Facet manager update storage 2024-04-22 12:38:33,853 [ 4602] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 5 in 0 ms: Facet manager update storage 2024-04-22 12:38:33,853 [ 4602] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 6 in 0 ms: Facet manager update storage 2024-04-22 12:38:33,877 [ 4626] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 7 in 20 ms: Add module mapping 2024-04-22 12:38:34,094 [ 4843] INFO - #c.i.u.i.IndexDataInitializer - Index data initialization done: 256 ms. Initialized stub indexes: {java.field.name, org.jetbrains.kotlin.idea.stubindex.KotlinAnnotationsIndex, org.jetbrains.kotlin.idea.stubindex.KotlinSubclassObjectNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFunctionShortNameIndex, gr.class.fqn.s, KotlinOverridableInternalMembersShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinExactPackagesIndex, gr.annot.members, KotlinTopLevelExtensionsByReceiverTypeIndex, gr.field.name, gr.annot.method.name, org.jetbrains.kotlin.idea.stubindex.KotlinTypeAliasShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelFunctionFqnNameIndex, java.module.name, org.jetbrains.kotlin.idea.stubindex.KotlinPropertyShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinClassShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinInnerTypeAliasClassIdIndex, org.jetbrains.kotlin.idea.stubindex.KotlinMultifileClassPartIndex, KotlinTopLevelTypeAliasByPackageIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFileFacadeFqNameIndex, dom.elementClass, properties.index, org.jetbrains.kotlin.idea.stubindex.KotlinFilePartClassIndex, markdown.header.anchor, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelPropertyFqnNameIndex, KotlinFileFacadeClassByPackageIndex, kotlin.primeIndexKey, java.annotations, java.anonymous.baseref, KotlinProbablyNothingFunctionShortNameIndex, org.jetbrains.kotlin.idea.stubindex.KotlinFileFacadeShortNameIndex, gr.script.class, gr.script.fqn.s, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelClassByPackageIndex, org.jetbrains.kotlin.idea.stubindex.KotlinSuperClassIndex, java.method.parameter.types, java.class.extlist, org.jetbrains.kotlin.idea.stubindex.KotlinJvmNameAnnotationIndex, java.unnamed.class, dom.namespaceKey, KotlinTopLevelFunctionByPackageIndex, KotlinExtensionsInObjectsByReceiverTypeIndex, markdown.header, org.jetbrains.kotlin.idea.stubindex.KotlinFullClassNameIndex, KotlinProbablyNothingPropertyShortNameIndex, gr.method.name, jvm.static.member.type, java.class.shortname, org.jetbrains.kotlin.idea.stubindex.KotlinTopLevelTypeAliasFqNameIndex, java.class.fqn, org.jetbrains.kotlin.idea.stubindex.KotlinScriptFqnIndex, gr.anonymous.class, KotlinTopLevelPropertyByPackageIndex, KotlinTypeAliasByExpansionShortNameIndex, gr.class.super, jvm.static.member.name, java.method.name, KotlinProbablyContractedFunctionShortNameIndex}. 2024-04-22 12:38:34,099 [ 4848] INFO - #c.i.u.i.StaleIndexesChecker - clearing stale id = 278366, path = C:/Users/anoua/AppData/Roaming/Google/AndroidStudioPreview2024.1/workspace/2VReuhQxB1Fwramd8Sp9UQRUL9Q.xml 2024-04-22 12:38:34,124 [ 4873] INFO - #c.i.o.v.n.p.d.e.DurableEnumeratorFactory - [enumerator.mmapped]: .valueHashToId (in memory) was filled (43 records) 2024-04-22 12:38:34,161 [ 4910] INFO - #c.i.p.s.StubUpdatingIndexStorage - Not updating IndexingStampInfo. inputId=278366,result=true 2024-04-22 12:38:34,164 [ 4913] WARN - #c.i.s.ComponentManagerImpl - org.jetbrains.kotlin.idea.gradleJava.scripting.roots.GradleBuildRootDataSerializer requests com.intellij.util.gist.storage.GistStorage instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:34,192 [ 4941] INFO - #c.i.u.i.StaleIndexesChecker - clearing stale id = 278364, path = C:/IntellijProjects/kotlinBooks/.idea/workspace.xml 2024-04-22 12:38:34,195 [ 4944] INFO - #c.i.p.s.StubUpdatingIndexStorage - Not updating IndexingStampInfo. inputId=278364,result=true 2024-04-22 12:38:34,196 [ 4945] INFO - #c.i.u.i.StaleIndexesChecker - clearing stale id = 279363, path = C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt 2024-04-22 12:38:34,217 [ 4966] INFO - #c.i.p.s.StubUpdatingIndexStorage - Not updating IndexingStampInfo. inputId=279363,result=true 2024-04-22 12:38:34,323 [ 5072] INFO - #o.j.k.i.g.s.r.GradleBuildRootIndex - C:/IntellijProjects/kotlinBooks: null -> org.jetbrains.kotlin.idea.gradleJava.scripting.roots.Imported@3e43e7e7 2024-04-22 12:38:34,440 [ 5189] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] script definitions aren't loaded yet. They should be loaded by invoking GradleScriptDefinitionsContributor.reloadIfNeeded from KotlinDslSyncListener: workingDir=C:/IntellijProjects/kotlinBooks gradleHome=C:/Users/anoua/.gradle/wrapper/dists/gradle-8.7-bin/bhs2wmbdwecv87pi65oeuq5iu/gradle-8.7 2024-04-22 12:38:34,468 [ 5217] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:34,495 [ 5244] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 8 in 75 ms: Change entity sources to externally imported 2024-04-22 12:38:34,523 [ 5272] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated silently to version 9 in 0 ms: Add project library mapping 2024-04-22 12:38:34,576 [ 5325] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:34,576 [ 5325] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 10 in 9 ms: Sync global entities with project: kotlinBooks 2024-04-22 12:38:34,915 [ 5664] WARN - #c.i.u.j.JBCefApp - JCefAppConfig.class is not from a JBR module, url: jar:file:/C:/Program%20Files/Android/Android%20Studio/lib/lib.jar!/com/jetbrains/cef/JCefAppConfig.class (Use JBR bundled with the IDE) 2024-04-22 12:38:35,082 [ 5831] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:38:35,082 [ 5831] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:38:35,087 [ 5836] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:38:35,087 [ 5836] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:38:35,370 [ 6119] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Loading Project code style 2024-04-22 12:38:35,374 [ 6123] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:38:35,374 [ 6123] INFO - #c.i.p.c.CustomCodeStyleSettings - Loaded org.jetbrains.kotlin.idea.core.formatter.KotlinCodeStyleSettings 2024-04-22 12:38:35,374 [ 6123] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:38:35,374 [ 6123] INFO - #c.i.p.c.CommonCodeStyleSettings - Loaded Kotlin common code style settings 2024-04-22 12:38:35,375 [ 6124] INFO - #c.i.p.c.ProjectCodeStyleSettingsManager - Project code style loaded 2024-04-22 12:38:35,405 [ 6154] INFO - #com.android.tools.idea.projectsystem.ProjectSystemService - GradleProjectSystem project system has been detected 2024-04-22 12:38:35,569 [ 6318] WARN - #c.i.u.x.Binding - No accessors for java.awt.Color. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:38:35,737 [ 6486] INFO - #c.i.o.a.i.NonBlockingReadActionImpl - OTel monitoring for NonBlockingReadAction is enabled 2024-04-22 12:38:36,091 [ 6840] WARN - #c.i.s.ComponentManagerImpl - com.github.copilot.platform.state.ToolWindowRegistrationSettings requests com.github.copilot.platform.state.ToolWindowRegistrationSettings instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:36,449 [ 7198] INFO - #com.android.tools.idea.adblib.AndroidAdbServerChannelProvider - Registering project to adblib channel provider: Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks) 2024-04-22 12:38:36,801 [ 7550] INFO - c.j.cidr - clangd modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83 2024-04-22 12:38:36,802 [ 7551] INFO - c.j.cidr - clangd cpp20 modules path: C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1/caches/clangd_modules/5c450b83/cpp20 2024-04-22 12:38:36,811 [ 7560] INFO - #c.i.o.u.r.RegistryValue - Registry value 'clang.parameter.info' has changed to 'true' 2024-04-22 12:38:36,871 [ 7620] INFO - #com.android.tools.idea.adb.AdbService - Terminating ADB connection 2024-04-22 12:38:36,873 [ 7622] INFO - #com.android.tools.idea.adb.AdbService - ADB connection successfully terminated 2024-04-22 12:38:36,883 [ 7632] INFO - #com.android.tools.idea.adb.AdbService - Initializing adb using: C:\Users\anoua\AppData\Local\Android\Sdk\platform-tools\adb.exe 2024-04-22 12:38:36,932 [ 7681] INFO - #com.android.tools.idea.adb.AdbService - 'adblib.migration.ddmlib.idevicemanager' flag is set to true 2024-04-22 12:38:37,108 [ 7857] INFO - #c.i.o.a.i.ActionUpdater - 1177 ms to grab EDT for ToolWindowHeader$2#children@ToolwindowTitle (com.intellij.toolWindow.ToolWindowHeader$2) 2024-04-22 12:38:37,330 [ 8079] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@1e17e78f 2024-04-22 12:38:37,341 [ 8090] INFO - #c.i.o.p.DumbServiceMergingTaskQueue - Initializing DumbServiceMergingTaskQueue... 2024-04-22 12:38:37,705 [ 8454] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@6fd0a90f 2024-04-22 12:38:37,852 [ 8601] INFO - #c.i.u.i.p.IncrementalProjectIndexableFilesFilterHolder - IncrementalProjectIndexableFilesFilterFactory is chosen as indexable files filter factory for project: kotlinBooks 2024-04-22 12:38:38,157 [ 8906] INFO - #copilot - [agent] GitHub Copilot Language Server 1.178.0 initialized 2024-04-22 12:38:38,540 [ 9289] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.ProjectFileBasedIndexStartupActivity@6fd0a90f 2024-04-22 12:38:38,559 [ 9308] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@4f079136 2024-04-22 12:38:38,559 [ 9308] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.FileBasedIndexInfrastructureExtensionStartup@4f079136 2024-04-22 12:38:38,568 [ 9317] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@325aa154 2024-04-22 12:38:38,585 [ 9334] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.externalDependencies.impl.CheckRequiredPluginsActivity@325aa154 2024-04-22 12:38:38,635 [ 9384] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@fa583db 2024-04-22 12:38:38,677 [ 9426] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.util.indexing.DumbModeWhileScanningSubscriber@fa583db 2024-04-22 12:38:38,689 [ 9438] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@7739feef 2024-04-22 12:38:38,698 [ 9447] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.intellij.ide.projectWizard.generators.SdkPreIndexingRequiredForSmartModeActivity@7739feef 2024-04-22 12:38:38,703 [ 9452] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Running task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@695e508c 2024-04-22 12:38:38,707 [ 9456] INFO - #c.i.o.p.InitialDumbTaskRequiredForSmartMode - Finished task required for smart mode: com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PopulateCachesActivity@695e508c 2024-04-22 12:38:38,707 [ 9456] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.openapi.project.InitialDumbTaskRequiredForSmartMode@1e17e78f 2024-04-22 12:38:38,874 [ 9623] WARN - #com.android.ddmlib - * daemon not running; starting now at tcp:5037 2024-04-22 12:38:38,927 [ 9676] WARN - #com.android.ddmlib - * daemon started successfully 2024-04-22 12:38:39,033 [ 9782] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@df5828d 2024-04-22 12:38:39,037 [ 9786] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.intellij.util.indexing.UnindexedFilesScanner$2@df5828d 2024-04-22 12:38:39,038 [ 9787] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:38:39,181 [ 9930] INFO - #c.i.u.i.UnindexedFilesScanner - Started scanning for indexing of kotlinBooks. Reason: On project open 2024-04-22 12:38:39,197 [ 9946] INFO - #c.i.u.i.UnindexedFilesScanner - Performing delayed pushing properties tasks for kotlinBooks took 9ms; general responsiveness: ok; EDT responsiveness: ok 2024-04-22 12:38:39,489 [ 10238] INFO - #com.android.ddmlib - Connected to adb for device monitoring 2024-04-22 12:38:39,574 [ 10323] INFO - #c.i.o.a.i.ActionUpdater - 590 ms to grab EDT for DockToolWindowAction#presentation@ToolwindowTitle (com.intellij.openapi.wm.impl.DockToolWindowAction) 2024-04-22 12:38:39,574 [ 10323] INFO - #c.i.o.a.i.ActionUpdater - 590 ms to grab EDT for ExpandAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.ExpandAllAction) 2024-04-22 12:38:39,575 [ 10324] INFO - #c.i.o.a.i.ActionUpdater - 590 ms to grab EDT for CollapseAllAction#presentation@ToolwindowTitle (com.intellij.ide.actions.CollapseAllAction) 2024-04-22 12:38:39,656 [ 10405] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:38:39,737 [ 10486] WARN - #c.i.s.ComponentManagerImpl - com.android.studio.ml.aida.AidaModelProviderKt requests com.intellij.openapi.updateSettings.impl.UpdateSettings instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:38:39,751 [ 10500] WARN - #com.android.studio.ml.experimental.GeminiLongContextModelProvider - Cannot instantiate Gemini 1.5 Pro model without a Gemini api key 2024-04-22 12:38:40,038 [ 10787] INFO - #com.android.tools.idea.adb.AdbService - Successfully connected to adb 2024-04-22 12:38:40,186 [ 10935] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 4,998.0 msec remaining, 1.0 msec elapsed 2024-04-22 12:38:40,214 [ 10963] INFO - #com.android.adblib.impl.services.TrackDevicesService - "host:track-devices-proto-binary" - opening connection to ADB server, timeout: 4,999.0 msec remaining, 0.0 msec elapsed 2024-04-22 12:38:40,726 [ 11475] INFO - #c.i.o.a.i.ActionUpdater - 954 ms to grab EDT for FontEditorPreview$RestorePreviewTextAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$RestorePreviewTextAction) 2024-04-22 12:38:40,726 [ 11475] INFO - #c.i.o.a.i.ActionUpdater - 955 ms to grab EDT for FontEditorPreview$ToggleBoldFontAction#presentation@ContextToolbar (com.intellij.application.options.colors.FontEditorPreview$ToggleBoldFontAction) 2024-04-22 12:38:40,871 [ 11620] INFO - #c.i.o.u.i.UpdateCheckerService - channel: eap 2024-04-22 12:38:40,875 [ 11624] INFO - #c.i.o.u.i.UpdateCheckerService - channel set to 'eap' by com.android.tools.idea.AndroidStudioUpdateStrategyCustomization 2024-04-22 12:38:41,092 [ 11841] INFO - c.j.c.l.d.c.c.l.ClangDaemonContextImpl - Using clangd from: C:\Program Files\Android\Android Studio\plugins\c-clangd-plugin\bin\clang\win\x64\clangd.exe 2024-04-22 12:38:41,258 [ 12007] INFO - #c.i.o.v.i.p.NewMappings - VCS Root: [Git] - [] 2024-04-22 12:38:41,266 [ 12015] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:41,466 [ 12215] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Checking bundle revision: 2024.1.1 vs Studio: 2024.1.1rc4 2024-04-22 12:38:41,478 [ 12227] WARN - #c.i.u.x.Binding - No accessors for java.time.ZonedDateTime. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:38:41,484 [ 12233] WARN - #c.i.i.s.i.StartupManagerImpl - Migrate org.sonarlint.intellij.StartServicesOnProjectOpened to ProjectActivity [Plugin: org.sonarlint.idea] com.intellij.diagnostic.PluginException: Migrate org.sonarlint.intellij.StartServicesOnProjectOpened to ProjectActivity [Plugin: org.sonarlint.idea] at com.intellij.ide.startup.impl.StartupManagerImpl.runPostStartupActivities(StartupManagerImpl.kt:275) at com.intellij.ide.startup.impl.StartupManagerImpl.access$runPostStartupActivities(StartupManagerImpl.kt:68) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invokeSuspend(StartupManagerImpl.kt:191) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3$2.invoke(StartupManagerImpl.kt) at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) at kotlinx.coroutines.BuildersKt__Builders_commonKt.withContext(Builders.common.kt:167) at kotlinx.coroutines.BuildersKt.withContext(Unknown Source) at com.intellij.ide.startup.impl.StartupManagerImpl$runPostStartupActivities$3.invokeSuspend(StartupManagerImpl.kt:190) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at kotlinx.coroutines.scheduling.CoroutineScheduler.runSafely(CoroutineScheduler.kt:584) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.executeTask(CoroutineScheduler.kt:793) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.runWorker(CoroutineScheduler.kt:697) at kotlinx.coroutines.scheduling.CoroutineScheduler$Worker.run(CoroutineScheduler.kt:684) 2024-04-22 12:38:41,517 [ 12266] INFO - #git4idea.commands.GitHandler - [.] git version 2024-04-22 12:38:41,665 [ 12414] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [kotlinBooks] 2024-04-22 12:38:41,709 [ 12458] WARN - #com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity - Overriding OCInitialTablesBuildingActivity with HotfixForOCInitialTablesBuildingActivity 2024-04-22 12:38:42,077 [ 12826] INFO - #c.i.o.v.i.p.NewMappings - Mapped Roots: 1 2024-04-22 12:38:42,077 [ 12826] INFO - #c.i.o.v.i.p.NewMappings - Detected mapped Root: [Git] - [C:/IntellijProjects/kotlinBooks] 2024-04-22 12:38:42,089 [ 12838] INFO - #git4idea.commands.GitHandler - git version 2.44.0.windows.1 2024-04-22 12:38:42,212 [ 12961] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Trying to download config XML from https://developer.android.com/studio/releases/assistant/2024.1.1.xml 2024-04-22 12:38:42,251 [ 13000] INFO - #c.i.u.i.d.AppIndexingDependenciesService - Invalidating all indexing flags. Reason: App fingerprint changed: FingerprintImpl(fingerprint=-4885275988749851142) to FingerprintImpl(fingerprint=7756045203624690555) 2024-04-22 12:38:42,273 [ 13022] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@6097984f 2024-04-22 12:38:42,371 [ 13120] INFO - #git4idea.config.GitExecutableManager - Git version for C:\Program Files\Git\cmd\git.exe: 2.44.0.0 (MSYS) 2024-04-22 12:38:42,717 [ 13466] INFO - #com.android.studio.ml.aida.AidaModelProvider - No geo-lock detected for Studio Bot 2024-04-22 12:38:42,728 [ 13477] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$PruneTask@6097984f 2024-04-22 12:38:42,728 [ 13477] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@172eaa80 2024-04-22 12:38:42,907 [ 13656] INFO - #com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator - Remote WNA config file not found java.io.FileNotFoundException: https://developer.android.com/studio/releases/assistant/2024.1.1.xml at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1996) at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:224) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.downloadConfig(WhatsNewBundleCreator.java:250) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.updateConfig(WhatsNewBundleCreator.java:237) at com.android.tools.idea.whatsnew.assistant.WhatsNewBundleCreator.isNewConfigVersion(WhatsNewBundleCreator.java:160) at com.android.tools.idea.whatsnew.assistant.WhatsNewCheckVersionTask.run(WhatsNewCheckVersionTask.kt:34) at com.intellij.openapi.progress.impl.CoreProgressManager.startTask(CoreProgressManager.java:477) at com.intellij.openapi.progress.impl.ProgressManagerImpl.startTask(ProgressManagerImpl.java:133) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcessWithProgressAsynchronously$6(CoreProgressManager.java:528) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$4(ProgressRunner.java:250) at com.intellij.openapi.progress.ProgressManager.lambda$runProcess$0(ProgressManager.java:100) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$1(CoreProgressManager.java:221) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.use(trace.kt:46) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:220) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.openapi.progress.ProgressManager.runProcess(ProgressManager.java:100) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$submit$5(ProgressRunner.java:250) at com.intellij.openapi.progress.impl.ProgressRunner$ProgressRunnable.run(ProgressRunner.java:500) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext$runAsCoroutine$1.invoke(propagation.kt:81) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:86) at com.intellij.util.concurrency.ChildContext.runAsCoroutine(propagation.kt:81) at com.intellij.openapi.progress.impl.ProgressRunner.lambda$launchTask$18(ProgressRunner.java:466) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:702) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1$1.run(Executors.java:699) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.util.concurrent.Executors$PrivilegedThreadFactory$1.run(Executors.java:699) at java.base/java.lang.Thread.run(Thread.java:840) 2024-04-22 12:38:42,917 [ 13666] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.idea.res.ResourceFolderRepositoryFileCacheImpl$ManageLruProjectFilesTask@172eaa80 2024-04-22 12:38:42,920 [ 13669] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@331a154b 2024-04-22 12:38:43,034 [ 13783] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning of kotlinBooks uses 3 scanning threads 2024-04-22 12:38:43,106 [ 13855] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) com.android.tools.ndk.HotfixForOCInitialTablesBuildingActivity$runActivity$1@331a154b 2024-04-22 12:38:43,109 [ 13858] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$3356/0x0000000801f1e978@80c673) 2024-04-22 12:38:43,129 [ 13878] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-folding-kotlinBooks-5c450b83 with size 29 2024-04-22 12:38:43,429 [ 14178] INFO - #c.j.c.lang - [Building Activity] Symbols unloaded 2024-04-22 12:38:43,591 [ 14340] INFO - #c.j.c.lang - [Building Activity] Building symbols… finished in 165 ms 2024-04-22 12:38:44,961 [ 15710] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.SdkEntity from files 2024-04-22 12:38:44,981 [ 15730] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Loading global entities com.intellij.platform.workspace.jps.entities.LibraryEntity from files 2024-04-22 12:38:45,126 [ 15875] INFO - #c.i.c.CompilerWorkspaceConfiguration - Available processors: 4 2024-04-22 12:38:45,175 [ 15924] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:38:45,199 [ 15948] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:38:45,361 [ 16110] INFO - #c.i.o.e.s.p.m.ExternalProjectsDataStorage - Load external projects data in 2503 millis (read time: 2490) 2024-04-22 12:38:45,369 [ 16118] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinInitScript], definitions = [KotlinInitScript] 2024-04-22 12:38:45,374 [ 16123] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:38:45,376 [ 16125] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:38:45,406 [ 16155] INFO - #c.i.o.p.SmartModeScheduler - Post-startup activity executed. Current mode: 7 2024-04-22 12:38:45,491 [ 16240] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinSettingsScript], definitions = [KotlinSettingsScript] 2024-04-22 12:38:45,495 [ 16244] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:38:45,497 [ 16246] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loading script definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], classpath = [C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-core-api-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-extensions-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-shared-runtime-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\gradle-kotlin-dsl-tooling-models-8.7.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-stdlib-1.9.22.jar, C:\Users\anoua\.gradle\wrapper\dists\gradle-8.7-bin\bhs2wmbdwecv87pi65oeuq5iu\gradle-8.7\lib\kotlin-compiler-embeddable-1.9.22.jar] 2024-04-22 12:38:45,603 [ 16352] INFO - #o.j.k.i.script - [KOTLIN_SCRIPTING] Loaded definitions: classes = [org.gradle.kotlin.dsl.KotlinBuildScript], definitions = [KotlinBuildScript] 2024-04-22 12:38:45,670 [ 16419] INFO - #c.j.c.lang - [Building Activity] Loading header maps… finished in 2 s 17 ms 2024-04-22 12:38:45,690 [ 16439] INFO - #c.i.i.s.IdeStartupScripts - 0 startup script(s) found 2024-04-22 12:38:45,928 [ 16677] INFO - #c.i.d.PerformanceWatcherImpl - Post-startup activities under progress took 4824ms; general responsiveness: 0/10 sluggish, 10/10 very slow; EDT responsiveness: ok 2024-04-22 12:38:46,017 [ 16766] INFO - #com.android.tools.idea.imports.GMavenIndexRepository - HTTP not modified since the last request for URL: https://dl.google.com/android/studio/gmaven/index/release/v0.1/classes-v0.1.json.gz (etag: "27ab8c8"). 2024-04-22 12:38:46,018 [ 16767] INFO - #com.android.tools.idea.imports.GMavenIndexRepository - Kept the old disk cache with an old ETag header: "27ab8c8". 2024-04-22 12:38:46,197 [ 16946] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:46,212 [ 16961] INFO - #c.i.w.i.i.WorkspaceModelImpl - Project model updated to version 12 in 17 ms: Sync global entities with project: kotlinBooks 2024-04-22 12:38:46,212 [ 16961] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Global model updated to version 2 in 22 ms: Sync global entities with state 2024-04-22 12:38:46,303 [ 17052] INFO - #c.j.c.lang - [Building Activity] Loading headers search roots… finished in 628 ms 2024-04-22 12:38:46,671 [ 17420] INFO - #com.github.copilot.chat.window.CopilotChatToolWindow - Chat enabled: true 2024-04-22 12:38:46,763 [ 17512] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scheduling indexing of Constructors.kt by request of indexes: [Trigram.Index->NOT_INDEXED,org.jetbrains.kotlin.idea.vfilefinder.KotlinShortClassNameFileIndex->NOT_INDEXED,org.jetbrains.kotlin.idea.vfilefinder.KotlinPartialPackageNamesIndex->NOT_INDEXED,KotlinTopLevelCallableByPackageShortNameIndex->NOT_INDEXED,KotlinTopLevelClassLikeDeclarationByPackageShortNameIndex->NOT_INDEXED,com.android.tools.idea.dagger.index.DaggerIndex->NOT_INDEXED,IdIndex->NOT_INDEXED,filetypes->NOT_INDEXED,Stubs->NOT_INDEXED,FileNameWithoutExtensionIndex->NOT_INDEXED,KotlinPackageSourcesMemberNamesIndex->NOT_INDEXED,android.ndk.jni.nativemethodindex->NOT_INDEXED,]. Scanner has updated file Constructors.kt with appliers: [SingleIndexValueApplier{indexId=filetypes, inputId=279363, fileInfo='Constructors.kt(id=279363)'}, SingleIndexValueApplier{indexId=FileNameWithoutExtensionIndex, inputId=279363, fileInfo='Constructors.kt(id=279363)'}] and removers: []; 2024-04-22 12:38:46,813 [ 17562] INFO - #c.j.c.l.m.ModuleMapLog - Loaded 0 module maps in 0 packs for 0 search roots 2024-04-22 12:38:46,813 [ 17562] INFO - #c.j.c.lang - [Building Activity] Loading module maps… finished in 501 ms 2024-04-22 12:38:46,843 [ 17592] INFO - STDERR - SLF4J: A SLF4J service provider failed to instantiate: 2024-04-22 12:38:46,844 [ 17593] INFO - STDERR - org.slf4j.spi.SLF4JServiceProvider: org.slf4j.jul.JULServiceProvider not a subtype 2024-04-22 12:38:47,104 [ 17853] INFO - STDERR - [DefaultDispatcher-worker-19] INFO jetbrains.exodus.io.FileDataWriter - Uninterruptible file channel will be used 2024-04-22 12:38:47,105 [ 17854] INFO - STDERR - [DefaultDispatcher-worker-19] WARN jetbrains.exodus.io.FileDataWriter - Can't open directory channel. Log directory fsync won't be performed. 2024-04-22 12:38:47,568 [ 18317] INFO - STDERR - [DefaultDispatcher-worker-19] INFO jetbrains.exodus.env.EnvironmentImpl - Exodus environment created: C:\Users\anoua\AppData\Local\github-copilot\ai\chat-sessions\2VReuhQxB1Fwramd8Sp9UQRUL9Q 2024-04-22 12:38:48,087 [ 18836] INFO - #c.j.c.lang - [Building Activity] Collecting files finished in 1 s 272 ms 2024-04-22 12:38:50,314 [ 21063] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:50,520 [ 21269] INFO - #c.j.c.lang - Loaded 0 tables for 0 files (0 project files) 2024-04-22 12:38:50,520 [ 21269] INFO - #c.j.c.lang - [Building Activity] Loading symbols finished in 2 s 431 ms 2024-04-22 12:38:50,551 [ 21300] INFO - #c.j.c.l.m.ModuleMapLog - Building module maps for 0 (root, configuration) pairs 2024-04-22 12:38:50,559 [ 21308] INFO - #c.j.c.lang - [Building Activity] Building module maps… finished in 1 ms 2024-04-22 12:38:50,560 [ 21309] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 0 ms 2024-04-22 12:38:50,570 [ 21319] INFO - #c.j.c.lang - [Building Activity] Processing module maps… finished in 7 ms 2024-04-22 12:38:50,573 [ 21322] INFO - #c.j.c.l.m.ModuleMapLog - Saved 0 module maps in 0 packs 2024-04-22 12:38:50,575 [ 21324] INFO - #c.j.c.lang - [Building Activity] Saving module maps… finished in 4 ms 2024-04-22 12:38:50,577 [ 21326] INFO - #c.j.c.lang - Building symbols for 0 source files 2024-04-22 12:38:50,588 [ 21337] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 1 ms 2024-04-22 12:38:50,588 [ 21337] INFO - #c.j.c.lang - Building symbols for 0 unused headers 2024-04-22 12:38:50,589 [ 21338] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 1 ms 2024-04-22 12:38:50,589 [ 21338] INFO - #c.j.c.lang - [Building Activity] Updating symbols… finished in 1 ms 2024-04-22 12:38:50,590 [ 21339] INFO - #c.j.c.lang - [Building Activity] Symbols loaded 2024-04-22 12:38:50,635 [ 21384] INFO - #c.i.v.l.d.i.IndexDiagnosticRunner - Index diagnostic for 24 commits in [file://C:/IntellijProjects/kotlinBooks] is completed 2024-04-22 12:38:50,636 [ 21385] INFO - #c.j.c.lang - Building symbols in FAST mode, 0 source files from total 0 project files 2024-04-22 12:38:50,638 [ 21387] INFO - #c.j.c.lang - Saving modified symbols for 0 files (0 tables of total 0) 2024-04-22 12:38:50,640 [ 21389] INFO - #c.j.c.lang - [Building Activity] Saving symbols… finished in 3 ms 2024-04-22 12:38:50,652 [ 21401] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) rebuildSymbols (com.jetbrains.cidr.lang.symbols.symtable.building.OCSymbolTablesBuildingActivity$$Lambda$3356/0x0000000801f1e978@80c673) 2024-04-22 12:38:50,658 [ 21407] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:38:50,855 [ 21604] WARN - #c.i.u.x.Binding - No accessors for org.jetbrains.kotlin.cli.common.arguments.InternalArgument. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:38:51,291 [ 22040] INFO - #com.android.build.diagnostic.WindowsDefenderCheckService - status check is disabled 2024-04-22 12:38:51,300 [ 22049] INFO - #o.j.j.b.i.CompilerReferenceIndex - backward reference index version doesn't exist 2024-04-22 12:38:51,344 [ 22093] INFO - #c.i.c.b.IsUpToDateCheckStartupActivity - suitable consumer is not found 2024-04-22 12:38:51,386 [ 22135] INFO - #c.i.w.i.i.GlobalWorkspaceModel - Sync global entities with mutable entity storage 2024-04-22 12:38:51,404 [ 22153] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Apply JPS storage (iml files) 2024-04-22 12:38:51,518 [ 22267] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:51,522 [ 22271] INFO - #c.i.w.i.i.j.s.JpsProjectModelSynchronizer - Attempt 1: Changes were successfully applied 2024-04-22 12:38:51,535 [ 22284] INFO - #c.i.w.i.i.j.s.DelayedProjectSynchronizer$Util - Workspace model loaded from cache. Syncing real project state into workspace model in 579 ms. Thread[DefaultDispatcher-worker-98,6,main] 2024-04-22 12:38:51,589 [ 22338] INFO - #com.android.tools.idea.gradle.project.AndroidGradleProjectStartupActivity - Up-to-date models found in the cache. Not invoking Gradle sync. 2024-04-22 12:38:51,792 [ 22541] INFO - #com.google.services.firebase.insights.config.FirebaseAppManager - New app states: {}. 2024-04-22 12:38:51,794 [ 22543] INFO - #com.android.tools.idea.vitals.client.grpc.VitalsGrpcClientImpl - Play Vitals gRpc server connected at playdeveloperreporting.googleapis.com 2024-04-22 12:38:51,795 [ 22544] WARN - #c.i.u.x.Binding - No accessors for com.android.gmdcodecompletion.managedvirtual.ManagedVirtualDeviceCatalog. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:38:51,851 [ 22600] WARN - #c.i.u.x.Binding - No accessors for com.android.gmdcodecompletion.ftl.FtlDeviceCatalog. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:38:52,303 [ 23052] INFO - #c.i.o.e.s.p.IdeModifiableModelsProviderImpl - Ide modifiable models provider, create builder from version 14 2024-04-22 12:38:54,571 [ 25320] SEVERE - #c.i.c.d.i.PassExecutorService - Kotlin resolution encountered a problem while analyzing KDocName: Descriptor wasn't found for declaration CLASS --------------------------------------------------- KotlinFullClassNameIndex has 'kotlinlang.classes.Constructors' key. No value for it in KotlinSourceFilterScope(delegate=Module-with-dependencies:kotlinBooks.app.main compile-only:false include-libraries:false include-other-modules:false include-tests:false, filter=RootKindFilter(includeProjectSourceFiles=true, includeLibraryClassFiles=false, includeLibrarySourceFiles=false, includeScriptDependencies=false, includeScriptsOutsideSourceRoots=true, includeResources=false)). Everything scope has 0 objects. Please try File -> Repair IDE org.jetbrains.kotlin.idea.caches.resolve.KotlinIdeaResolutionException: Kotlin resolution encountered a problem while analyzing KDocName: Descriptor wasn't found for declaration CLASS --------------------------------------------------- KotlinFullClassNameIndex has 'kotlinlang.classes.Constructors' key. No value for it in KotlinSourceFilterScope(delegate=Module-with-dependencies:kotlinBooks.app.main compile-only:false include-libraries:false include-other-modules:false include-tests:false, filter=RootKindFilter(includeProjectSourceFiles=true, includeLibraryClassFiles=false, includeLibrarySourceFiles=false, includeScriptDependencies=false, includeScriptsOutsideSourceRoots=true, includeResources=false)). Everything scope has 0 objects. Please try File -> Repair IDE at org.jetbrains.kotlin.idea.caches.resolve.ResolutionFacadeWithDebugInfo.analyze(ResolutionFacadeWithDebugInfo.kt:270) at org.jetbrains.kotlin.idea.caches.resolve.ExtendedResolutionApiKt.analyze(ExtendedResolutionApi.kt:124) at org.jetbrains.kotlin.idea.caches.resolve.ExtendedResolutionApiKt.safeAnalyzeNonSourceRootCode(ExtendedResolutionApi.kt:158) at org.jetbrains.kotlin.idea.caches.resolve.ExtendedResolutionApiKt.safeAnalyzeNonSourceRootCode(ExtendedResolutionApi.kt:152) at org.jetbrains.kotlin.idea.references.KtFe10ReferenceResolutionHelperImpl.partialAnalyze(KtFe10ReferenceResolutionHelperImpl.kt:48) at org.jetbrains.kotlin.references.fe10.base.KtFe10PolyVariantResolver.resolveToPsiElements(KtFe10PolyVariantResolver.kt:27) at org.jetbrains.kotlin.references.fe10.base.KtFe10PolyVariantResolver.resolve(KtFe10PolyVariantResolver.kt:73) at org.jetbrains.kotlin.references.fe10.base.KtFe10PolyVariantResolver.resolve(KtFe10PolyVariantResolver.kt:22) at com.intellij.psi.impl.source.resolve.ResolveCache.lambda$resolveWithCaching$1(ResolveCache.java:159) at com.intellij.openapi.util.Computable.get(Computable.java:16) at com.intellij.psi.impl.source.resolve.ResolveCache.lambda$loggingResolver$4(ResolveCache.java:234) at com.intellij.openapi.util.Computable.get(Computable.java:16) at com.intellij.psi.impl.source.resolve.ResolveCache.resolve(ResolveCache.java:213) at com.intellij.psi.impl.source.resolve.ResolveCache.resolveWithCaching(ResolveCache.java:158) at com.intellij.psi.impl.source.resolve.ResolveCache.resolveWithCaching(ResolveCache.java:145) at org.jetbrains.kotlin.idea.references.AbstractKtReference.multiResolve(KtReference.kt:32) at org.jetbrains.kotlin.idea.references.KDocReference.resolve(KDocReference.kt:18) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.getTargetElement(KDocRenderer.kt:151) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.appendHyperlink(KDocRenderer.kt:113) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.access$appendHyperlink(KDocRenderer.kt:52) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer$appendTagList$1.invoke(KDocRenderer.kt:292) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer$appendTagList$1.invoke(KDocRenderer.kt:285) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.appendSection(KDocRenderer.kt:190) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.appendTagList(KDocRenderer.kt:285) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.appendKDocSections(KDocRenderer.kt:69) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.access$appendKDocSections(KDocRenderer.kt:52) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer$renderKDoc$1$2.invoke(KDocRenderer.kt:100) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer$renderKDoc$1$2.invoke(KDocRenderer.kt:99) at org.jetbrains.kotlin.idea.kdoc.Placeholder.apply(Template.kt:39) at org.jetbrains.kotlin.idea.kdoc.TemplateKt.insert(Template.kt:81) at org.jetbrains.kotlin.idea.kdoc.KDocTemplate$DescriptionBodyTemplate$Kotlin.apply(KDocTemplate.kt:49) at org.jetbrains.kotlin.idea.kdoc.KDocTemplate$DescriptionBodyTemplate$Kotlin.apply(KDocTemplate.kt:37) at org.jetbrains.kotlin.idea.kdoc.TemplateKt.insert(Template.kt:104) at org.jetbrains.kotlin.idea.kdoc.KDocRenderer.renderKDoc(KDocRenderer.kt:95) at org.jetbrains.kotlin.idea.KotlinDocumentationProvider.generateRenderedDoc(KotlinDocumentationProvider.kt:170) at com.intellij.lang.documentation.CompositeDocumentationProvider.generateRenderedDoc(CompositeDocumentationProvider.java:159) at com.intellij.codeInsight.documentation.render.PsiCommentInlineDocumentation.renderText(PsiCommentInlineDocumentation.java:45) at com.intellij.codeInsight.documentation.render.DocRenderPassFactory.calcText(DocRenderPassFactory.java:107) at com.intellij.codeInsight.documentation.render.DocRenderPassFactory.calculateItemsToRender(DocRenderPassFactory.java:84) at com.intellij.codeInsight.documentation.render.DocRenderPassFactory$DocRenderPass.doCollectInformation(DocRenderPassFactory.java:66) at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:55) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$2(PassExecutorService.java:418) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.runWithSpanIgnoreThrows(trace.kt:109) at com.intellij.platform.diagnostic.telemetry.helpers.TraceUtil.runWithSpanThrows(TraceUtil.java:34) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$3(PassExecutorService.java:413) at com.intellij.openapi.application.impl.RwLockHolder.tryRunReadAction(RwLockHolder.kt:310) at com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(ApplicationImpl.java:958) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$4(PassExecutorService.java:404) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.doRun(PassExecutorService.java:403) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$0(PassExecutorService.java:379) at com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.cacheFileTypesInside(FileTypeManagerImpl.java:795) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$1(PassExecutorService.java:379) at com.intellij.openapi.application.impl.ReadMostlyRWLock.executeByImpatientReader(ReadMostlyRWLock.java:199) at com.intellij.openapi.application.impl.RwLockHolder.executeByImpatientReader(RwLockHolder.kt:491) at com.intellij.openapi.application.impl.ApplicationImpl.executeByImpatientReader(ApplicationImpl.java:182) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:377) at com.intellij.concurrency.JobLauncherImpl$VoidForkJoinTask$1.exec(JobLauncherImpl.java:190) at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) Caused by: org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException: Descriptor wasn't found for declaration CLASS --------------------------------------------------- KotlinFullClassNameIndex has 'kotlinlang.classes.Constructors' key. No value for it in KotlinSourceFilterScope(delegate=Module-with-dependencies:kotlinBooks.app.main compile-only:false include-libraries:false include-other-modules:false include-tests:false, filter=RootKindFilter(includeProjectSourceFiles=true, includeLibraryClassFiles=false, includeLibrarySourceFiles=false, includeScriptDependencies=false, includeScriptsOutsideSourceRoots=true, includeResources=false)). Everything scope has 0 objects. Please try File -> Repair IDE at org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.resolve.lazy.LazyDeclarationResolver.resolveToDescriptor(LazyDeclarationResolver.kt:91) at org.jetbrains.kotlin.resolve.lazy.ResolveSession.resolveToDescriptor(ResolveSession.java:368) at org.jetbrains.kotlin.idea.project.ResolveElementCache.resolveToElement(ResolveElementCache.kt:287) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyze$3.invoke(ModuleResolutionFacadeImpl.kt:53) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyze$3.invoke(ModuleResolutionFacadeImpl.kt:52) at com.intellij.openapi.progress.impl.CancellationCheck.withCancellationCheck(CancellationCheck.kt:59) at com.intellij.openapi.progress.impl.CancellationCheck$Companion.runWithCancellationCheck(CancellationCheck.kt:105) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWithCancellationCheck(ApplicationUtils.kt:63) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl.analyze(ModuleResolutionFacadeImpl.kt:52) at org.jetbrains.kotlin.idea.caches.resolve.ResolutionFacadeWithDebugInfo.analyze(ResolutionFacadeWithDebugInfo.kt:43) ... 66 more 2024-04-22 12:38:54,589 [ 25338] SEVERE - #c.i.c.d.i.PassExecutorService - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:38:54,589 [ 25338] SEVERE - #c.i.c.d.i.PassExecutorService - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:38:54,589 [ 25338] SEVERE - #c.i.c.d.i.PassExecutorService - OS: Windows 10 2024-04-22 12:38:54,591 [ 25340] SEVERE - #c.i.c.d.i.PassExecutorService - Plugin to blame: Kotlin version: 241.14494.240.2411.11731683-AS 2024-04-22 12:38:54,591 [ 25340] SEVERE - #c.i.c.d.i.PassExecutorService - Last Action: 2024-04-22 12:38:54,599 [ 25348] WARN - #o.j.k.c.r.KotlinCacheService - Front-end Internal error: Failed to analyze declaration Constructors File being compiled: (9,1) in C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt The root cause org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException was thrown at: org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) org.jetbrains.kotlin.util.KotlinFrontEndException: Front-end Internal error: Failed to analyze declaration Constructors File being compiled: (9,1) in C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt The root cause org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException was thrown at: org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitDeclaration(ExceptionWrappingKtVisitorVoid.kt:43) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitDeclaration(KtVisitorVoid.java:461) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitDeclaration(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitNamedDeclaration(KtVisitor.java:416) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:385) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:973) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitClassOrObject(KtVisitor.java:41) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:37) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:473) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitClass(KtVisitor.java:33) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:33) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:467) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtClass.accept(KtClass.kt:22) at org.jetbrains.kotlin.psi.KtElementImplStub.accept(KtElementImplStub.java:49) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.registerDeclarations(LazyTopDownAnalyzer.kt:80) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitKtFile(LazyTopDownAnalyzer.kt:98) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:521) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtFile.accept(KtFile.kt:41) at org.jetbrains.kotlin.psi.KtCommonFile.accept(KtCommonFile.kt:244) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitElement(ExceptionWrappingKtVisitorVoid.kt:27) at com.intellij.psi.PsiElementVisitor.visitFile(PsiElementVisitor.java:51) at org.jetbrains.kotlin.psi.KtVisitor.visitKtFile(KtVisitor.java:73) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:69) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:521) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtFile.accept(KtFile.kt:41) at org.jetbrains.kotlin.psi.KtCommonFile.accept(KtCommonFile.kt:244) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer.analyzeDeclarations(LazyTopDownAnalyzer.kt:203) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer.analyzeDeclarations$default(LazyTopDownAnalyzer.kt:58) at org.jetbrains.kotlin.idea.caches.resolve.KotlinResolveDataProvider.analyze(PerFileAnalysisCache.kt:639) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.analyze(PerFileAnalysisCache.kt:306) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.performAnalyze(PerFileAnalysisCache.kt:154) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.access$performAnalyze(PerFileAnalysisCache.kt:63) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.getAnalysisResults$kotlin_base_fe10_analysis(PerFileAnalysisCache.kt:138) at org.jetbrains.kotlin.idea.caches.resolve.ProjectResolutionFacade.analysisResultForElement(ProjectResolutionFacade.kt:253) at org.jetbrains.kotlin.idea.caches.resolve.ProjectResolutionFacade.getAnalysisResultsForElement$kotlin_base_fe10_analysis(ProjectResolutionFacade.kt:226) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyzeWithAllCompilerChecks$1.invoke(ModuleResolutionFacadeImpl.kt:79) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyzeWithAllCompilerChecks$1.invoke(ModuleResolutionFacadeImpl.kt:78) at com.intellij.openapi.progress.impl.CancellationCheck.withCancellationCheck(CancellationCheck.kt:59) at com.intellij.openapi.progress.impl.CancellationCheck$Companion.runWithCancellationCheck(CancellationCheck.kt:105) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWithCancellationCheck(ApplicationUtils.kt:63) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl.analyzeWithAllCompilerChecks(ModuleResolutionFacadeImpl.kt:78) at org.jetbrains.kotlin.idea.caches.resolve.ResolutionFacadeWithDebugInfo.analyzeWithAllCompilerChecks(ResolutionFacadeWithDebugInfo.kt:58) at org.jetbrains.kotlin.idea.caches.resolve.ResolutionUtils.analyzeWithAllCompilerChecks(ResolutionUtils.kt:170) at org.jetbrains.kotlin.idea.highlighter.AbstractKotlinHighlightVisitor.analyze(AbstractKotlinHighlightVisitor.kt:113) at org.jetbrains.kotlin.idea.highlighter.AbstractKotlinHighlightVisitor.analyze(AbstractKotlinHighlightVisitor.kt:57) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.analyzeByVisitors(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.lambda$analyzeByVisitors$9(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.DefaultHighlightVisitor.analyze(DefaultHighlightVisitor.java:55) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.analyzeByVisitors(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.lambda$collectHighlights$8(GeneralHighlightingPass.java:299) at com.intellij.codeInsight.daemon.impl.AnnotatorRunner.lambda$runAnnotatorsAsync$2(AnnotatorRunner.java:81) at com.intellij.concurrency.JobLauncherImpl.procInOrderAsync(JobLauncherImpl.java:537) at com.intellij.codeInsight.daemon.impl.AnnotatorRunner.runAnnotatorsAsync(AnnotatorRunner.java:76) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.collectHighlights(GeneralHighlightingPass.java:335) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.collectInformationWithProgress(GeneralHighlightingPass.java:241) at com.intellij.codeInsight.daemon.impl.ProgressableTextEditorHighlightingPass.doCollectInformation(ProgressableTextEditorHighlightingPass.java:80) at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:55) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$2(PassExecutorService.java:418) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.runWithSpanIgnoreThrows(trace.kt:109) at com.intellij.platform.diagnostic.telemetry.helpers.TraceUtil.runWithSpanThrows(TraceUtil.java:34) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$3(PassExecutorService.java:413) at com.intellij.openapi.application.impl.RwLockHolder.tryRunReadAction(RwLockHolder.kt:310) at com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(ApplicationImpl.java:958) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$4(PassExecutorService.java:404) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.doRun(PassExecutorService.java:403) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$0(PassExecutorService.java:379) at com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.cacheFileTypesInside(FileTypeManagerImpl.java:795) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$1(PassExecutorService.java:379) at com.intellij.openapi.application.impl.ReadMostlyRWLock.executeByImpatientReader(ReadMostlyRWLock.java:199) at com.intellij.openapi.application.impl.RwLockHolder.executeByImpatientReader(RwLockHolder.kt:491) at com.intellij.openapi.application.impl.ApplicationImpl.executeByImpatientReader(ApplicationImpl.java:182) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:377) at com.intellij.concurrency.JobLauncherImpl$VoidForkJoinTask$1.exec(JobLauncherImpl.java:190) at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) Caused by: org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException: Descriptor wasn't found for declaration CLASS --------------------------------------------------- KotlinFullClassNameIndex has 'kotlinlang.classes.Constructors' key. No value for it in KotlinSourceFilterScope(delegate=Module-with-dependencies:kotlinBooks.app.main compile-only:false include-libraries:false include-other-modules:false include-tests:false, filter=RootKindFilter(includeProjectSourceFiles=true, includeLibraryClassFiles=false, includeLibrarySourceFiles=false, includeScriptDependencies=false, includeScriptsOutsideSourceRoots=true, includeResources=false)). Everything scope has 0 objects. Please try File -> Repair IDE at org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.resolve.lazy.LazyDeclarationResolver.findClassDescriptor(LazyDeclarationResolver.kt:88) at org.jetbrains.kotlin.resolve.lazy.LazyDeclarationResolver.getClassDescriptor(LazyDeclarationResolver.kt:62) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitClassOrObject(LazyTopDownAnalyzer.kt:120) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitClass(LazyTopDownAnalyzer.kt:148) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:467) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtClass.accept(KtClass.kt:22) at org.jetbrains.kotlin.psi.KtElementImplStub.accept(KtElementImplStub.java:49) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitDeclaration(ExceptionWrappingKtVisitorVoid.kt:32) ... 87 more 2024-04-22 12:38:55,412 [ 26161] INFO - #com.android.tools.idea.vitals.ui.VitalsConfigurationManager - Accessible Android Vitals connections: [] 2024-04-22 12:38:55,820 [ 26569] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:38:57,509 [ 28258] INFO - #c.i.w.i.i.EntitiesOrphanageImpl - Update orphanage. 0 modules added 2024-04-22 12:38:57,621 [ 28370] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/addons_list-6.xml 2024-04-22 12:38:57,819 [ 28568] INFO - #c.i.u.i.IndexingReasonExplanationLogger - Scanner has updated file workspace.xml with appliers: [SingleIndexValueApplier{indexId=filetypes, inputId=278364, fileInfo='workspace.xml(id=278364)'}] and removers: []; 2024-04-22 12:38:58,026 [ 28775] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/repository2-3.xml 2024-04-22 12:38:58,026 [ 28775] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android/sys-img2-4.xml 2024-04-22 12:38:58,029 [ 28778] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis/sys-img2-4.xml 2024-04-22 12:38:58,032 [ 28781] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/repository2-2.xml 2024-04-22 12:38:58,032 [ 28781] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-automotive-distantdisplay/sys-img2-4.xml 2024-04-22 12:38:58,032 [ 28781] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-wear/sys-img2-4.xml 2024-04-22 12:38:58,034 [ 28783] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_atd/sys-img2-4.xml 2024-04-22 12:38:58,035 [ 28784] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-automotive/sys-img2-4.xml 2024-04-22 12:38:58,034 [ 28783] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/aosp_atd/sys-img2-4.xml 2024-04-22 12:38:58,037 [ 28786] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-desktop/sys-img2-4.xml 2024-04-22 12:38:58,037 [ 28786] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google-tv/sys-img2-4.xml 2024-04-22 12:38:58,039 [ 28788] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-tv/sys-img2-4.xml 2024-04-22 12:38:58,039 [ 28788] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis_playstore/sys-img2-4.xml 2024-04-22 12:38:58,039 [ 28788] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/android-wear-cn/sys-img2-4.xml 2024-04-22 12:38:58,080 [ 28829] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/aosp_tablet/sys-img2-4.xml 2024-04-22 12:38:58,080 [ 28829] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_apis_tablet/sys-img2-4.xml 2024-04-22 12:38:58,080 [ 28829] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/glass/addon2-3.xml 2024-04-22 12:38:58,083 [ 28832] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/addon2-3.xml 2024-04-22 12:38:58,084 [ 28833] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/extras/intel/addon2-3.xml 2024-04-22 12:38:58,085 [ 28834] INFO - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Downloading https://dl.google.com/android/repository/sys-img/google_playstore_tablet/sys-img2-4.xml 2024-04-22 12:38:59,885 [ 30634] WARN - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Errors during XML parse: 2024-04-22 12:38:59,886 [ 30635] WARN - #com.android.tools.idea.progress.RepoProgressIndicatorAdapter - Additionally, the fallback loader failed to parse the XML. 2024-04-22 12:39:00,839 [ 31588] WARN - #o.j.k.i.h.AbstractKotlinHighlightVisitor - failed to analyze: org.jetbrains.kotlin.util.KotlinFrontEndException: Front-end Internal error: Failed to analyze declaration Constructors File being compiled: (9,1) in C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt The root cause org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException was thrown at: org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) java.lang.IllegalStateException: failed to analyze: org.jetbrains.kotlin.util.KotlinFrontEndException: Front-end Internal error: Failed to analyze declaration Constructors File being compiled: (9,1) in C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt The root cause org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException was thrown at: org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.analyzer.AnalysisResult.throwIfError(AnalysisResult.kt:56) at org.jetbrains.kotlin.idea.highlighter.AbstractKotlinHighlightVisitor.analyze(AbstractKotlinHighlightVisitor.kt:135) at org.jetbrains.kotlin.idea.highlighter.AbstractKotlinHighlightVisitor.analyze(AbstractKotlinHighlightVisitor.kt:57) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.analyzeByVisitors(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.lambda$analyzeByVisitors$9(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.DefaultHighlightVisitor.analyze(DefaultHighlightVisitor.java:55) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.analyzeByVisitors(GeneralHighlightingPass.java:350) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.lambda$collectHighlights$8(GeneralHighlightingPass.java:299) at com.intellij.codeInsight.daemon.impl.AnnotatorRunner.lambda$runAnnotatorsAsync$2(AnnotatorRunner.java:81) at com.intellij.concurrency.JobLauncherImpl.procInOrderAsync(JobLauncherImpl.java:537) at com.intellij.codeInsight.daemon.impl.AnnotatorRunner.runAnnotatorsAsync(AnnotatorRunner.java:76) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.collectHighlights(GeneralHighlightingPass.java:335) at com.intellij.codeInsight.daemon.impl.GeneralHighlightingPass.collectInformationWithProgress(GeneralHighlightingPass.java:241) at com.intellij.codeInsight.daemon.impl.ProgressableTextEditorHighlightingPass.doCollectInformation(ProgressableTextEditorHighlightingPass.java:80) at com.intellij.codeHighlighting.TextEditorHighlightingPass.collectInformation(TextEditorHighlightingPass.java:55) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$2(PassExecutorService.java:418) at com.intellij.platform.diagnostic.telemetry.helpers.TraceKt.runWithSpanIgnoreThrows(trace.kt:109) at com.intellij.platform.diagnostic.telemetry.helpers.TraceUtil.runWithSpanThrows(TraceUtil.java:34) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$3(PassExecutorService.java:413) at com.intellij.openapi.application.impl.RwLockHolder.tryRunReadAction(RwLockHolder.kt:310) at com.intellij.openapi.application.impl.ApplicationImpl.tryRunReadAction(ApplicationImpl.java:958) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$doRun$4(PassExecutorService.java:404) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.doRun(PassExecutorService.java:403) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$0(PassExecutorService.java:379) at com.intellij.openapi.fileTypes.impl.FileTypeManagerImpl.cacheFileTypesInside(FileTypeManagerImpl.java:795) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.lambda$run$1(PassExecutorService.java:379) at com.intellij.openapi.application.impl.ReadMostlyRWLock.executeByImpatientReader(ReadMostlyRWLock.java:199) at com.intellij.openapi.application.impl.RwLockHolder.executeByImpatientReader(RwLockHolder.kt:491) at com.intellij.openapi.application.impl.ApplicationImpl.executeByImpatientReader(ApplicationImpl.java:182) at com.intellij.codeInsight.daemon.impl.PassExecutorService$ScheduledPass.run(PassExecutorService.java:377) at com.intellij.concurrency.JobLauncherImpl$VoidForkJoinTask$1.exec(JobLauncherImpl.java:190) at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) Caused by: org.jetbrains.kotlin.util.KotlinFrontEndException: Front-end Internal error: Failed to analyze declaration Constructors File being compiled: (9,1) in C:/IntellijProjects/kotlinBooks/app/src/main/kotlin/kotlinlang/classes/Constructors.kt The root cause org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException was thrown at: org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitDeclaration(ExceptionWrappingKtVisitorVoid.kt:43) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitDeclaration(KtVisitorVoid.java:461) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitDeclaration(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitNamedDeclaration(KtVisitor.java:416) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:385) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:973) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitNamedDeclaration(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitClassOrObject(KtVisitor.java:41) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:37) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:473) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClassOrObject(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtVisitor.visitClass(KtVisitor.java:33) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:33) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:467) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtClass.accept(KtClass.kt:22) at org.jetbrains.kotlin.psi.KtElementImplStub.accept(KtElementImplStub.java:49) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.registerDeclarations(LazyTopDownAnalyzer.kt:80) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitKtFile(LazyTopDownAnalyzer.kt:98) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:521) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtFile.accept(KtFile.kt:41) at org.jetbrains.kotlin.psi.KtCommonFile.accept(KtCommonFile.kt:244) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitElement(ExceptionWrappingKtVisitorVoid.kt:27) at com.intellij.psi.PsiElementVisitor.visitFile(PsiElementVisitor.java:51) at org.jetbrains.kotlin.psi.KtVisitor.visitKtFile(KtVisitor.java:73) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:69) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:521) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitKtFile(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtFile.accept(KtFile.kt:41) at org.jetbrains.kotlin.psi.KtCommonFile.accept(KtCommonFile.kt:244) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer.analyzeDeclarations(LazyTopDownAnalyzer.kt:203) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer.analyzeDeclarations$default(LazyTopDownAnalyzer.kt:58) at org.jetbrains.kotlin.idea.caches.resolve.KotlinResolveDataProvider.analyze(PerFileAnalysisCache.kt:639) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.analyze(PerFileAnalysisCache.kt:306) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.performAnalyze(PerFileAnalysisCache.kt:154) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.access$performAnalyze(PerFileAnalysisCache.kt:63) at org.jetbrains.kotlin.idea.caches.resolve.PerFileAnalysisCache.getAnalysisResults$kotlin_base_fe10_analysis(PerFileAnalysisCache.kt:138) at org.jetbrains.kotlin.idea.caches.resolve.ProjectResolutionFacade.analysisResultForElement(ProjectResolutionFacade.kt:253) at org.jetbrains.kotlin.idea.caches.resolve.ProjectResolutionFacade.getAnalysisResultsForElement$kotlin_base_fe10_analysis(ProjectResolutionFacade.kt:226) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyzeWithAllCompilerChecks$1.invoke(ModuleResolutionFacadeImpl.kt:79) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl$analyzeWithAllCompilerChecks$1.invoke(ModuleResolutionFacadeImpl.kt:78) at com.intellij.openapi.progress.impl.CancellationCheck.withCancellationCheck(CancellationCheck.kt:59) at com.intellij.openapi.progress.impl.CancellationCheck$Companion.runWithCancellationCheck(CancellationCheck.kt:105) at org.jetbrains.kotlin.idea.util.application.ApplicationUtilsKt.runWithCancellationCheck(ApplicationUtils.kt:63) at org.jetbrains.kotlin.idea.caches.resolve.ModuleResolutionFacadeImpl.analyzeWithAllCompilerChecks(ModuleResolutionFacadeImpl.kt:78) at org.jetbrains.kotlin.idea.caches.resolve.ResolutionFacadeWithDebugInfo.analyzeWithAllCompilerChecks(ResolutionFacadeWithDebugInfo.kt:58) at org.jetbrains.kotlin.idea.caches.resolve.ResolutionUtils.analyzeWithAllCompilerChecks(ResolutionUtils.kt:170) at org.jetbrains.kotlin.idea.highlighter.AbstractKotlinHighlightVisitor.analyze(AbstractKotlinHighlightVisitor.kt:113) ... 39 more Caused by: org.jetbrains.kotlin.resolve.lazy.NoDescriptorForDeclarationException: Descriptor wasn't found for declaration CLASS --------------------------------------------------- KotlinFullClassNameIndex has 'kotlinlang.classes.Constructors' key. No value for it in KotlinSourceFilterScope(delegate=Module-with-dependencies:kotlinBooks.app.main compile-only:false include-libraries:false include-other-modules:false include-tests:false, filter=RootKindFilter(includeProjectSourceFiles=true, includeLibraryClassFiles=false, includeLibrarySourceFiles=false, includeScriptDependencies=false, includeScriptsOutsideSourceRoots=true, includeResources=false)). Everything scope has 0 objects. Please try File -> Repair IDE at org.jetbrains.kotlin.idea.project.IdeaAbsentDescriptorHandler.diagnoseDescriptorNotFound(IdeaLocalDescriptorResolver.kt:41) at org.jetbrains.kotlin.resolve.lazy.LazyDeclarationResolver.findClassDescriptor(LazyDeclarationResolver.kt:88) at org.jetbrains.kotlin.resolve.lazy.LazyDeclarationResolver.getClassDescriptor(LazyDeclarationResolver.kt:62) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitClassOrObject(LazyTopDownAnalyzer.kt:120) at org.jetbrains.kotlin.resolve.LazyTopDownAnalyzer$analyzeDeclarations$1.visitClass(LazyTopDownAnalyzer.kt:148) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:467) at org.jetbrains.kotlin.psi.KtVisitorVoid.visitClass(KtVisitorVoid.java:21) at org.jetbrains.kotlin.psi.KtClass.accept(KtClass.kt:22) at org.jetbrains.kotlin.psi.KtElementImplStub.accept(KtElementImplStub.java:49) at org.jetbrains.kotlin.resolve.ExceptionWrappingKtVisitorVoid.visitDeclaration(ExceptionWrappingKtVisitorVoid.kt:32) ... 87 more 2024-04-22 12:39:01,636 [ 32385] INFO - #c.i.u.i.UnindexedFilesScanner - Scanning completed for kotlinBooks. Number of scanned files: 212426; number of files for indexing: 1 took 22438ms; general responsiveness: 2/27 sluggish, 13/27 very slow; EDT responsiveness: 1/16 sluggish, 1/16 very slow 2024-04-22 12:39:01,637 [ 32386] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: marking roots for initial VFS refresh 2024-04-22 12:39:01,650 [ 32399] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: starting initial VFS refresh of 147 roots 2024-04-22 12:39:01,691 [ 32440] INFO - #c.i.o.p.DumbServiceImpl - enter dumb mode [kotlinBooks] 2024-04-22 12:39:01,710 [ 32459] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: UnindexedFilesScanner[kotlinBooks] 2024-04-22 12:39:01,730 [ 32479] INFO - #c.i.o.p.MergingQueueGuiExecutor - Running task: (dumb mode task) UnindexedFilesIndexer[kotlinBooks, 1 iterators, reason: On project open] 2024-04-22 12:39:01,802 [ 32551] INFO - #c.i.u.i.c.IndexUpdateRunner - Using 3 indexing and 0 writing threads for indexing 2024-04-22 12:39:01,953 [ 32702] INFO - #c.i.o.p.InitialVfsRefreshService - 5c450b83: initial VFS refresh finished in 302 ms 2024-04-22 12:39:02,240 [ 32989] INFO - #c.i.u.i.ProjectChangedFilesScanner - Retrieving changed during indexing files of kotlinBooks : 0 to update, calculated in 13ms 2024-04-22 12:39:02,240 [ 32989] INFO - #c.i.u.i.UnindexedFilesIndexer - Finished for kotlinBooks. Unindexed files update took 463ms; general responsiveness: ok; EDT responsiveness: ok 2024-04-22 12:39:02,244 [ 32993] INFO - #c.i.o.p.MergingQueueGuiExecutor - Task finished: (dumb mode task) UnindexedFilesIndexer[kotlinBooks, 1 iterators, reason: On project open] 2024-04-22 12:39:02,249 [ 32998] INFO - #c.i.o.p.DumbServiceImpl - exit dumb mode [kotlinBooks] 2024-04-22 12:39:03,361 [ 34110] INFO - #com.google.services.firebase.insights.client.grpc.CrashlyticsGrpcClientImpl - App Quality Insights gRpc server connected at firebasecrashlytics.googleapis.com 2024-04-22 12:39:03,645 [ 34394] INFO - #com.android.tools.idea.insights.events.actions.ActionDispatcher - Dispatching actions CancelFetches 2024-04-22 12:39:04,835 [ 35584] INFO - #c.i.u.i.ManagedPersistentCache - created persistent map persistent-code-vision-kotlinBooks-5c450b83 with size 16 2024-04-22 12:39:05,569 [ 36318] INFO - STDERR - SLF4J: A SLF4J service provider failed to instantiate: 2024-04-22 12:39:05,570 [ 36319] INFO - STDERR - org.slf4j.spi.SLF4JServiceProvider: org.slf4j.jul.JULServiceProvider not a subtype 2024-04-22 12:39:07,233 [ 37982] WARN - #c.i.o.m.LanguageLevelUtil - File not found: api23.txt 2024-04-22 12:39:11,177 [ 41926] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:39:11,194 [ 41943] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:39:11,194 [ 41943] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:39:11,194 [ 41943] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:39:22,723 [ 53472] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:39:22,724 [ 53473] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:39:22,724 [ 53473] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:39:30,726 [ 61475] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:39:30,727 [ 61476] SEVERE - #c.i.u.SlowOperations - Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. java.lang.Throwable: Slow operations are prohibited on EDT. See SlowOperations.assertSlowOperationsAreAllowed javadoc. at com.intellij.openapi.diagnostic.Logger.error(Logger.java:376) at com.intellij.util.SlowOperations.assertSlowOperationsAreAllowed(SlowOperations.java:106) at com.intellij.openapi.vfs.newvfs.persistent.FSRecordsImpl.update(FSRecordsImpl.java:728) at com.intellij.openapi.vfs.newvfs.persistent.PersistentFSImpl.findChildInfo(PersistentFSImpl.java:673) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findInPersistence(VirtualDirectoryImpl.java:157) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.doFindChild(VirtualDirectoryImpl.java:139) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:85) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:534) at com.intellij.openapi.vfs.newvfs.impl.VirtualDirectoryImpl.findChild(VirtualDirectoryImpl.java:51) at com.intellij.openapi.vfs.newvfs.VfsImplUtil.findFileByPath(VfsImplUtil.java:56) at com.intellij.openapi.vfs.impl.local.LocalFileSystemBase.findFileByPath(LocalFileSystemBase.java:115) at com.intellij.openapi.vfs.VfsUtil.findFile(VfsUtil.java:202) at com.intellij.openapi.vfs.VfsUtil.findFileByIoFile(VfsUtil.java:197) at com.android.tools.idea.gradle.util.PropertiesFiles.getProperties(PropertiesFiles.java:59) at com.android.tools.idea.gradle.util.GradleProperties.(GradleProperties.java:50) at com.android.tools.idea.memorysettings.GradleUserProperties.getProperties(GradleUserProperties.java:89) at com.android.tools.idea.memorysettings.GradleUserProperties.(GradleUserProperties.java:41) at com.android.tools.idea.memorysettings.DaemonMemorySettings.(DaemonMemorySettings.java:55) at com.android.tools.idea.memorysettings.GradleComponent.setUI(GradleComponent.java:83) at com.android.tools.idea.memorysettings.GradleComponent.(GradleComponent.java:53) at com.android.tools.idea.memorysettings.MemorySettingsGradleToken.createBuildSystemComponent(MemorySettingsGradleToken.java:34) at com.android.tools.idea.memorysettings.MemorySettingsGradleToken.createBuildSystemComponent(MemorySettingsGradleToken.java:29) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.createUIComponents(MemorySettingsConfigurable.java:329) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.$$$setupUI$$$(MemorySettingsConfigurable.java) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable$MyComponent.(MemorySettingsConfigurable.java:129) at com.android.tools.idea.memorysettings.MemorySettingsConfigurable.(MemorySettingsConfigurable.java:59) at com.android.tools.idea.memorysettings.MemorySettingsConfigurableProvider.createConfigurable(MemorySettingsConfigurableProvider.java:32) at com.intellij.openapi.options.ConfigurableEP$ProviderProducer.createElement(ConfigurableEP.java:406) at com.intellij.openapi.options.ConfigurableEP.createConfigurable(ConfigurableEP.java:338) at com.intellij.openapi.options.ex.ConfigurableWrapper.createConfigurable(ConfigurableWrapper.java:39) at com.intellij.openapi.options.ex.ConfigurableWrapper.getConfigurable(ConfigurableWrapper.java:116) at com.intellij.openapi.options.ex.ConfigurableWrapper.cast(ConfigurableWrapper.java:95) at com.intellij.openapi.options.newEditor.SettingsTreeView.findConfigurableProject(SettingsTreeView.java:350) at com.intellij.openapi.options.newEditor.SettingsTreeView$MyRenderer.getTreeCellRendererComponent(SettingsTreeView.java:650) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$NodeDimensionsHandler.getNodeDimensions(BasicTreeUI.java:3223) at java.desktop/javax.swing.tree.AbstractLayoutCache.getNodeDimensions(AbstractLayoutCache.java:497) at java.desktop/javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize(VariableHeightLayoutCache.java:1344) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.createNodeAt(VariableHeightLayoutCache.java:767) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.treeNodesInserted(VariableHeightLayoutCache.java:476) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$Handler.treeNodesInserted(BasicTreeUI.java:4368) at com.intellij.util.ui.tree.TreeModelListenerList.treeNodesInserted(TreeModelListenerList.java:85) at com.intellij.ui.tree.AsyncTreeModel.treeNodesInserted(AsyncTreeModel.java:371) at com.intellij.ui.tree.AsyncTreeModel$CmdGetChildren.applyNodeToUiTree(AsyncTreeModel.java:747) at com.intellij.ui.tree.AsyncTreeModel$Command.applyToUiTree(AsyncTreeModel.java:500) at com.intellij.ui.tree.AsyncTreeModel.lambda$applyToUiTree$13(AsyncTreeModel.java:303) at com.intellij.util.concurrency.Invoker$Task.run(Invoker.java:381) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$runProcess$2(CoreProgressManager.java:217) at com.intellij.openapi.progress.impl.CoreProgressManager.lambda$executeProcessUnderProgress$13(CoreProgressManager.java:660) at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:735) at com.intellij.openapi.progress.impl.CoreProgressManager.computeUnderProgress(CoreProgressManager.java:691) at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:659) at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:79) at com.intellij.openapi.progress.impl.CoreProgressManager.runProcess(CoreProgressManager.java:202) at com.intellij.util.concurrency.Invoker.startTask(Invoker.java:236) at com.intellij.util.concurrency.Invoker.invokeSafely(Invoker.java:194) at com.intellij.util.concurrency.Invoker.lambda$offerSafely$0(Invoker.java:177) at com.intellij.openapi.application.TransactionGuardImpl$1.run(TransactionGuardImpl.java:194) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.openapi.application.impl.ApplicationImpl$2.run(ApplicationImpl.java:419) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(ApplicationImpl.java:1152) at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:81) at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:123) at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:43) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:792) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:761) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$12(IdeEventQueue.kt:593) at com.intellij.openapi.application.impl.RwLockHolder.runWithoutImplicitRead(RwLockHolder.kt:105) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:593) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:121) at java.desktop/java.awt.WaitDispatchSupport$2.run(WaitDispatchSupport.java:191) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:236) at java.desktop/java.awt.WaitDispatchSupport$4.run(WaitDispatchSupport.java:234) at java.base/java.security.AccessController.doPrivileged(AccessController.java:318) at java.desktop/java.awt.WaitDispatchSupport.enter(WaitDispatchSupport.java:234) at java.desktop/java.awt.Dialog.lambda$show$2(Dialog.java:1081) at java.desktop/sun.awt.SunToolkit.performOnMainThreadIfNeeded(SunToolkit.java:2170) at java.desktop/java.awt.Dialog.show(Dialog.java:1041) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl$MyDialog.show(DialogWrapperPeerImpl.java:894) at com.intellij.openapi.ui.impl.DialogWrapperPeerImpl.show(DialogWrapperPeerImpl.java:474) at com.intellij.openapi.ui.DialogWrapper.doShow(DialogWrapper.java:1754) at com.intellij.openapi.ui.DialogWrapper.show(DialogWrapper.java:1703) at com.intellij.ide.actions.ShowSettingsUtilImpl.showSettingsDialog(ShowSettingsUtilImpl.kt:104) at com.intellij.ide.actions.ShowSettingsAction.perform(ShowSettingsAction.java:61) at com.intellij.ide.actions.ShowSettingsAction.actionPerformed(ShowSettingsAction.java:48) at com.intellij.openapi.actionSystem.ex.ActionUtil.doPerformActionOrShowPopup(ActionUtil.kt:305) at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAwareWithCallbacks$lambda$4(ActionUtil.kt:276) at com.intellij.openapi.actionSystem.impl.ActionManagerImpl.performWithActionCallbacks(ActionManagerImpl.kt:1165) at com.intellij.openapi.actionSystem.ex.ActionUtil.performActionDumbAwareWithCallbacks(ActionUtil.kt:275) at com.intellij.ui.popup.ActionPopupStep.performActionItem(ActionPopupStep.java:264) at com.intellij.ui.popup.ActionPopupStep.lambda$onChosen$3(ActionPopupStep.java:235) at com.intellij.ui.popup.AbstractPopup.lambda$dispose$18(AbstractPopup.java:1766) at com.intellij.openapi.wm.impl.FocusManagerImpl.lambda$doWhenFocusSettlesDown$4(FocusManagerImpl.java:174) at com.intellij.util.ui.EdtInvocationManager.invokeLaterIfNeeded(EdtInvocationManager.java:33) at com.intellij.ide.IdeEventQueue.ifFocusEventsInTheQueue(IdeEventQueue.kt:226) at com.intellij.ide.IdeEventQueue.executeWhenAllFocusEventsLeftTheQueue(IdeEventQueue.kt:192) at com.intellij.openapi.wm.impl.FocusManagerImpl.doWhenFocusSettlesDown(FocusManagerImpl.java:170) at com.intellij.openapi.wm.impl.FocusManagerImpl.doWhenFocusSettlesDown(FocusManagerImpl.java:164) at com.intellij.ui.popup.AbstractPopup.dispose(AbstractPopup.java:1764) at com.intellij.ui.popup.WizardPopup.dispose(WizardPopup.java:178) at com.intellij.ui.popup.list.ListPopupImpl.dispose(ListPopupImpl.java:404) at com.intellij.ui.popup.PopupFactoryImpl$ActionGroupPopup.dispose(PopupFactoryImpl.java:295) at com.intellij.openapi.util.ObjectTree.runWithTrace(ObjectTree.java:130) at com.intellij.openapi.util.ObjectTree.executeAll(ObjectTree.java:162) at com.intellij.openapi.util.Disposer.dispose(Disposer.java:205) at com.intellij.openapi.util.Disposer.dispose(Disposer.java:193) at com.intellij.ui.popup.WizardPopup.disposeAllParents(WizardPopup.java:286) at com.intellij.ui.popup.list.ListPopupImpl.disposePopup(ListPopupImpl.java:528) at com.intellij.ui.popup.list.ListPopupImpl.handleNextStep(ListPopupImpl.java:552) at com.intellij.ui.popup.list.ListPopupImpl._handleSelect(ListPopupImpl.java:515) at com.intellij.ui.popup.list.ListPopupImpl.handleSelect(ListPopupImpl.java:446) at com.intellij.ui.popup.PopupFactoryImpl$ActionGroupPopup.handleSelect(PopupFactoryImpl.java:307) at com.intellij.ui.popup.list.ListPopupImpl$MyMouseListener.mouseReleased(ListPopupImpl.java:755) at java.desktop/java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:298) at java.desktop/java.awt.Component.processMouseEvent(Component.java:6657) at java.desktop/javax.swing.JComponent.processMouseEvent(JComponent.java:3385) at com.intellij.ui.popup.list.ListPopupImpl$MyList.processMouseEvent(ListPopupImpl.java:820) at java.desktop/java.awt.Component.processEvent(Component.java:6422) at java.desktop/java.awt.Container.processEvent(Container.java:2266) at java.desktop/java.awt.Component.dispatchEventImpl(Component.java:5027) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2324) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4969) at java.desktop/java.awt.LightweightDispatcher.processMouseEvent(Container.java:4583) at java.desktop/java.awt.LightweightDispatcher.dispatchEvent(Container.java:4524) at java.desktop/java.awt.Container.dispatchEventImpl(Container.java:2310) at java.desktop/java.awt.Window.dispatchEventImpl(Window.java:2809) at java.desktop/java.awt.Component.dispatchEvent(Component.java:4855) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:794) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:97) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:766) at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:764) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:763) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue.dispatchMouseEvent(IdeEventQueue.kt:637) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$10(IdeEventQueue.kt:584) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:584) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:114) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:39:30,738 [ 61487] SEVERE - #c.i.u.SlowOperations - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:39:30,738 [ 61487] SEVERE - #c.i.u.SlowOperations - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:39:30,738 [ 61487] SEVERE - #c.i.u.SlowOperations - OS: Windows 10 2024-04-22 12:39:30,739 [ 61488] SEVERE - #c.i.u.SlowOperations - Last Action: ShowSettings 2024-04-22 12:39:30,754 [ 61503] INFO - #com.android.tools.idea.memorysettings.MemorySettingsRecommendation - recommendation based on machine: 2048, on project: 2048 2024-04-22 12:39:30,761 [ 61510] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:39:30,835 [ 61584] WARN - #c.i.u.x.Binding - No accessors for com.intellij.platform.feedback.impl.state.DontShowAgainFeedbackState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:39:30,835 [ 61584] WARN - #c.i.u.x.Binding - No accessors for com.intellij.platform.feedback.impl.state.CommonFeedbackSurveysState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:39:31,623 [ 62372] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="Android.CreateResourcesActionGroup" class="org.jetbrains.android.actions.CreateResourceFileActionGroup" 2024-04-22 12:39:31,931 [ 62680] INFO - #c.i.i.u.c.CustomActionsSchema - Failed to find icon by URL: WebDeployment.BrowseServers 2024-04-22 12:39:31,986 [ 62735] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:32,107 [ 62856] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="Android.Designer.SwitchLayoutQualifier" class="com.android.tools.idea.uibuilder.actions.LayoutQualifierDropdownMenu" 2024-04-22 12:39:32,117 [ 62866] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="MakeTypeSelectionGroup" class="com.android.tools.idea.gradle.actions.MakeTypeSelectionGroupAction" 2024-04-22 12:39:32,117 [ 62866] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MakeTypeSelectionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,118 [ 62867] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowTips' template presentation. Showing its action-id instead 2024-04-22 12:39:32,118 [ 62867] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GenerateModuleDescriptors' template presentation. Showing its action-id instead 2024-04-22 12:39:32,119 [ 62868] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectCallstackSampleTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,119 [ 62868] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.Refresh' stub template presentation. Creating its instance 2024-04-22 12:39:32,120 [ 62869] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Device.Picker.Help' stub template presentation. Creating its instance 2024-04-22 12:39:32,120 [ 62869] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartCallstackSample' template presentation. Showing its action-id instead 2024-04-22 12:39:32,121 [ 62870] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarSecondary' template presentation. Showing its action-id instead 2024-04-22 12:39:32,121 [ 62870] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarVirtualDevice' template presentation. Showing its action-id instead 2024-04-22 12:39:32,123 [ 62872] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.OpenStringResourceEditor' stub template presentation. Creating its instance 2024-04-22 12:39:32,123 [ 62872] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Library.Properties' template presentation. Showing its action-id instead 2024-04-22 12:39:32,124 [ 62873] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ChangeGradleJdkLocation' stub template presentation. Creating its instance 2024-04-22 12:39:32,124 [ 62873] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.AttachProject' template presentation. Showing its action-id instead 2024-04-22 12:39:32,124 [ 62873] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Logcat.PopupActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,124 [ 62873] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.RunAndroidSdkManager' stub template presentation. Creating its instance 2024-04-22 12:39:32,124 [ 62873] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidToolsGroupExtension' template presentation. Showing its action-id instead 2024-04-22 12:39:32,125 [ 62874] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.NewScript' template presentation. Showing its action-id instead 2024-04-22 12:39:32,125 [ 62874] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.NavBarToolBar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,125 [ 62874] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartHeapDump' template presentation. Showing its action-id instead 2024-04-22 12:39:32,126 [ 62875] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectSystemTraceTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,126 [ 62875] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.RefreshAllProjects' template presentation. Showing its action-id instead 2024-04-22 12:39:32,127 [ 62876] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.status' template presentation. Showing its action-id instead 2024-04-22 12:39:32,128 [ 62877] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfileWithLowOverhead' stub template presentation. Creating its instance 2024-04-22 12:39:32,128 [ 62877] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.quarter.hour' template presentation. Showing its action-id instead 2024-04-22 12:39:32,129 [ 62878] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfilerSelectProcess' template presentation. Showing its action-id instead 2024-04-22 12:39:32,130 [ 62879] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer.show' stub template presentation. Creating its instance 2024-04-22 12:39:32,130 [ 62879] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer.CopyValue' stub template presentation. Creating its instance 2024-04-22 12:39:32,131 [ 62880] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewHtmlFile' template presentation. Showing its action-id instead 2024-04-22 12:39:32,131 [ 62880] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GradleProjectStructureActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,132 [ 62881] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.deploy.RunWithoutBuild' stub template presentation. Creating its instance 2024-04-22 12:39:32,132 [ 62881] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.emulator.wear.health.services' template presentation. Showing its action-id instead 2024-04-22 12:39:32,134 [ 62883] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.SplitVertical' stub template presentation. Creating its instance 2024-04-22 12:39:32,134 [ 62883] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WhatsNewAction' template presentation. Showing its action-id instead 2024-04-22 12:39:32,137 [ 62886] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.MoveTabLeft' stub template presentation. Creating its instance 2024-04-22 12:39:32,137 [ 62886] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Build' template presentation. Showing its action-id instead 2024-04-22 12:39:32,137 [ 62886] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompileDirty' template presentation. Showing its action-id instead 2024-04-22 12:39:32,137 [ 62886] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectHeapDumpTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,138 [ 62887] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.SelectProjectDataToImport' template presentation. Showing its action-id instead 2024-04-22 12:39:32,138 [ 62887] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ResourceExplorer' template presentation. Showing its action-id instead 2024-04-22 12:39:32,138 [ 62887] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AddFrameworkSupport' template presentation. Showing its action-id instead 2024-04-22 12:39:32,138 [ 62887] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.deploy.DebugWithoutBuild' stub template presentation. Creating its instance 2024-04-22 12:39:32,138 [ 62887] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ImportExternalProject' template presentation. Showing its action-id instead 2024-04-22 12:39:32,139 [ 62888] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.CheckResources.Make' template presentation. Showing its action-id instead 2024-04-22 12:39:32,139 [ 62888] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewPackageInfo' template presentation. Showing its action-id instead 2024-04-22 12:39:32,139 [ 62888] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager' template presentation. Showing its action-id instead 2024-04-22 12:39:32,139 [ 62888] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ShowThumbnails' template presentation. Showing its action-id instead 2024-04-22 12:39:32,140 [ 62889] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PsdProjectStructureActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,140 [ 62889] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ConvertToNinePatch' stub template presentation. Creating its instance 2024-04-22 12:39:32,141 [ 62890] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfilerSelectDevice' template presentation. Showing its action-id instead 2024-04-22 12:39:32,141 [ 62890] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.reservation.extend.half.hour' template presentation. Showing its action-id instead 2024-04-22 12:39:32,142 [ 62891] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartSystemTrace' template presentation. Showing its action-id instead 2024-04-22 12:39:32,142 [ 62891] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectNativeAllocationsTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,142 [ 62891] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartProfilerTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,143 [ 62892] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.RenameTab' stub template presentation. Creating its instance 2024-04-22 12:39:32,144 [ 62893] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopProfilerTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,144 [ 62893] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.SplitHorizontal' stub template presentation. Creating its instance 2024-04-22 12:39:32,144 [ 62893] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager.TypeSpecificActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,145 [ 62894] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SetProfilingStartingPointToNow' template presentation. Showing its action-id instead 2024-04-22 12:39:32,145 [ 62894] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compile' template presentation. Showing its action-id instead 2024-04-22 12:39:32,145 [ 62894] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'BuildArtifact' template presentation. Showing its action-id instead 2024-04-22 12:39:32,145 [ 62894] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Diagnostics' template presentation. Showing its action-id instead 2024-04-22 12:39:32,146 [ 62895] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopProfilingSession' template presentation. Showing its action-id instead 2024-04-22 12:39:32,146 [ 62895] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.ProfileWithCompleteData' stub template presentation. Creating its instance 2024-04-22 12:39:32,146 [ 62895] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalSystem.DetachProject' template presentation. Showing its action-id instead 2024-04-22 12:39:32,146 [ 62895] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StreamingToolbarPhysicalDevice' template presentation. Showing its action-id instead 2024-04-22 12:39:32,146 [ 62895] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompileProject' template presentation. Showing its action-id instead 2024-04-22 12:39:32,147 [ 62896] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopNativeAllocations' template presentation. Showing its action-id instead 2024-04-22 12:39:32,147 [ 62896] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidToolbarMakeGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,148 [ 62897] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SelectLiveViewTask' template presentation. Showing its action-id instead 2024-04-22 12:39:32,148 [ 62897] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Streaming' template presentation. Showing its action-id instead 2024-04-22 12:39:32,148 [ 62897] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StartNativeAllocations' template presentation. Showing its action-id instead 2024-04-22 12:39:32,149 [ 62898] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Profile' stub template presentation. Creating its instance 2024-04-22 12:39:32,149 [ 62898] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.StopCpuCapture' template presentation. Showing its action-id instead 2024-04-22 12:39:32,149 [ 62898] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SaveFileAsTemplate' template presentation. Showing its action-id instead 2024-04-22 12:39:32,150 [ 62899] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'LibraryProperties' stub template presentation. Creating its instance 2024-04-22 12:39:32,150 [ 62899] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Adtui.ZoomActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,150 [ 62899] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.AndroidStudio.apkProfilingAndDebugging' stub template presentation. Creating its instance 2024-04-22 12:39:32,150 [ 62899] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.CheckResources.Rebuild' template presentation. Showing its action-id instead 2024-04-22 12:39:32,151 [ 62900] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.ShowLogcat' stub template presentation. Creating its instance 2024-04-22 12:39:32,151 [ 62900] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeviceManager2' template presentation. Showing its action-id instead 2024-04-22 12:39:32,151 [ 62900] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleLayoutInspectorActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,151 [ 62900] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.DeployActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,152 [ 62901] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.SetProfilingStartingPointToProcessStart' template presentation. Showing its action-id instead 2024-04-22 12:39:32,152 [ 62901] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SplittingTabsToolWindow.MoveTabRight' stub template presentation. Creating its instance 2024-04-22 12:39:32,152 [ 62901] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.MainToolBarActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,153 [ 62902] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Compose.Live.Edit.ManualLiveEdit' stub template presentation. Creating its instance 2024-04-22 12:39:32,153 [ 62902] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Groovy.NewClass' template presentation. Showing its action-id instead 2024-04-22 12:39:32,153 [ 62902] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AndroidDeviceManagerPlaceholder' template presentation. Showing its action-id instead 2024-04-22 12:39:32,156 [ 62905] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PasteWithNewIds' stub template presentation. Creating its instance 2024-04-22 12:39:32,156 [ 62905] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.ToolsActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,157 [ 62906] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.ReRunUiCheckModeAction' template presentation. Showing its action-id instead 2024-04-22 12:39:32,157 [ 62906] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.IssuePanel.ToolbarActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,157 [ 62906] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.CommonActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,157 [ 62906] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.Designer.IssuePanel.TreePopup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,159 [ 62908] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.ProjectView.ShowFilesUnknownToCMake' stub template presentation. Creating its instance 2024-04-22 12:39:32,159 [ 62908] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.NewGroup.After' template presentation. Showing its action-id instead 2024-04-22 12:39:32,159 [ 62908] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExternalCppProject' template presentation. Showing its action-id instead 2024-04-22 12:39:32,159 [ 62908] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CPP.ProjectView.After' template presentation. Showing its action-id instead 2024-04-22 12:39:32,160 [ 62909] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.Cpp.GenerateDefinitionsGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,160 [ 62909] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.Cpp.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,161 [ 62910] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.ExtractClassMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,161 [ 62910] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.IntroduceGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,161 [ 62910] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.GenerateMethodsGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,161 [ 62910] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ImportsHierarchyMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,161 [ 62910] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.DeclareGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,162 [ 62911] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.RefactoringMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,162 [ 62911] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,162 [ 62911] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.ObjC.ConvertGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,162 [ 62911] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.SwitchHeaderSourceGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,163 [ 62912] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Lang.NewGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,163 [ 62912] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Frames.Tree.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,164 [ 62913] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,164 [ 62913] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.MemoryDocGutterActionGroup' stub template presentation. Creating its instance 2024-04-22 12:39:32,164 [ 62913] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.DataViewSettings.Popup.Wrapper' template presentation. Showing its action-id instead 2024-04-22 12:39:32,164 [ 62913] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadGroup.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,164 [ 62913] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Settings.FramePresentation.Appender' template presentation. Showing its action-id instead 2024-04-22 12:39:32,165 [ 62914] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkGroup.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,165 [ 62914] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadDebuggingActionsGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,165 [ 62914] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.RegisterSets.Group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,166 [ 62915] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkDebuggingActions.TopToolbar3.Extra' template presentation. Showing its action-id instead 2024-04-22 12:39:32,166 [ 62915] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ForkGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,166 [ 62915] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FreezeThreadDebuggingActions.TopToolbar3.Extra' template presentation. Showing its action-id instead 2024-04-22 12:39:32,166 [ 62915] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.WatchExpressions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,166 [ 62915] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Util.Diagnostics' template presentation. Showing its action-id instead 2024-04-22 12:39:32,167 [ 62916] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.Registers.Group.Wrapper' template presentation. Showing its action-id instead 2024-04-22 12:39:32,167 [ 62916] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.FramePresentation' template presentation. Showing its action-id instead 2024-04-22 12:39:32,167 [ 62916] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ToggleMemoryDocAddresses' stub template presentation. Creating its instance 2024-04-22 12:39:32,167 [ 62916] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CIDR.Debugger.ValueGroup.DataViewSettings' template presentation. Showing its action-id instead 2024-04-22 12:39:32,169 [ 62918] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowTypeHintSettings' template presentation. Showing its action-id instead 2024-04-22 12:39:32,170 [ 62919] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CodiumAI.Commit.Button' template presentation. Showing its action-id instead 2024-04-22 12:39:32,171 [ 62920] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ai.codium.ui.actions.TestSelectedCodeContextMenuAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,172 [ 62921] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewEditorConfigFile' stub template presentation. Creating its instance 2024-04-22 12:39:32,174 [ 62923] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Add.No.Content' stub template presentation. Creating its instance 2024-04-22 12:39:32,174 [ 62923] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupGroupByPrefixAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,174 [ 62923] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Tree.Menu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,175 [ 62924] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPullBranchAction$WithMerge' stub template presentation. Creating its instance 2024-04-22 12:39:32,176 [ 62925] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMergeBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,176 [ 62925] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Experimental.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,176 [ 62925] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Reword.ToolbarActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,178 [ 62927] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.BranchOperationGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,179 [ 62928] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Stash.Files' stub template presentation. Creating its instance 2024-04-22 12:39:32,179 [ 62928] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.AcceptYours' stub template presentation. Creating its instance 2024-04-22 12:39:32,180 [ 62929] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu.FileActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,180 [ 62929] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.Popup.SpeedSearch' template presentation. Showing its action-id instead 2024-04-22 12:39:32,180 [ 62929] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.Popup.Settings' stub template presentation. Creating its instance 2024-04-22 12:39:32,180 [ 62929] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,181 [ 62930] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPullBranchAction$WithRebase' stub template presentation. Creating its instance 2024-04-22 12:39:32,181 [ 62930] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Hosting.Copy.Link.Group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,181 [ 62930] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Commit.And.Push.Executor' stub template presentation. Creating its instance 2024-04-22 12:39:32,182 [ 62931] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Branches.GroupBy.Repository' stub template presentation. Creating its instance 2024-04-22 12:39:32,182 [ 62931] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupResizeAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,182 [ 62931] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,183 [ 62932] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupShowRecentBranchesAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,183 [ 62932] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Local.File.Menu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,184 [ 62933] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRebaseBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,184 [ 62933] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.Conflicts' template presentation. Showing its action-id instead 2024-04-22 12:39:32,184 [ 62933] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutFromInputAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,185 [ 62934] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.Merge' stub template presentation. Creating its instance 2024-04-22 12:39:32,185 [ 62934] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.ContextMenu.CheckoutBrowse' template presentation. Showing its action-id instead 2024-04-22 12:39:32,185 [ 62934] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.LogContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,185 [ 62934] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Hosting.Open.In.Browser.Group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,185 [ 62934] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.FileActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,186 [ 62935] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,186 [ 62935] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Log.Branches.GroupBy.Directory' stub template presentation. Creating its instance 2024-04-22 12:39:32,187 [ 62936] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,187 [ 62936] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branch' template presentation. Showing its action-id instead 2024-04-22 12:39:32,187 [ 62936] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.ChangesView.AcceptTheirs' stub template presentation. Creating its instance 2024-04-22 12:39:32,188 [ 62937] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Reset' stub template presentation. Creating its instance 2024-04-22 12:39:32,188 [ 62937] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="GitBranchesTreePopupFilterSeparatorWithText" class="git4idea.ui.branch.popup.GitBranchesTreePopupFilterSeparatorWithText" 2024-04-22 12:39:32,188 [ 62937] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupFilterSeparatorWithText' template presentation. Showing its action-id instead 2024-04-22 12:39:32,189 [ 62938] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMergeRebaseWidgetGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,189 [ 62938] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitMainToolbarQuickActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,190 [ 62939] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitBranchesTreePopupTrackReposSynchronouslyAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,190 [ 62939] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitUpdateSelectedBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,190 [ 62939] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.ToolbarWidget.CreateRepository' template presentation. Showing its action-id instead 2024-04-22 12:39:32,191 [ 62940] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutAsNewBranch' stub template presentation. Creating its instance 2024-04-22 12:39:32,191 [ 62940] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitNewBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,191 [ 62940] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitDeleteBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,192 [ 62941] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitPushBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,192 [ 62941] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.FileHistory.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,193 [ 62942] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.AcceptYours' stub template presentation. Creating its instance 2024-04-22 12:39:32,193 [ 62942] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.ToggleIgnored' stub template presentation. Creating its instance 2024-04-22 12:39:32,194 [ 62943] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stash.Operations.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,195 [ 62944] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Revert' stub template presentation. Creating its instance 2024-04-22 12:39:32,195 [ 62944] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Ongoing.Rebase.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,195 [ 62944] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.OpenExcludeFile' stub template presentation. Creating its instance 2024-04-22 12:39:32,195 [ 62944] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.MainMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,196 [ 62945] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.AcceptTheirs' stub template presentation. Creating its instance 2024-04-22 12:39:32,196 [ 62945] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRepositoryActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,197 [ 62946] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Add' stub template presentation. Creating its instance 2024-04-22 12:39:32,197 [ 62946] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitRenameBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,199 [ 62948] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.New.Branch.In.Log' stub template presentation. Creating its instance 2024-04-22 12:39:32,199 [ 62948] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stash.ChangesBrowser.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,200 [ 62949] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCheckoutWithRebaseAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,200 [ 62949] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Branches.List' template presentation. Showing its action-id instead 2024-04-22 12:39:32,200 [ 62949] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Git.Stage.Merge' stub template presentation. Creating its instance 2024-04-22 12:39:32,201 [ 62950] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MainToolbarQuickActions.VCS' template presentation. Showing its action-id instead 2024-04-22 12:39:32,201 [ 62950] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitShowDiffWithBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,202 [ 62951] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitCompareWithBranchAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,203 [ 62952] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Details.Reload' stub template presentation. Creating its instance 2024-04-22 12:39:32,204 [ 62953] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.List.Reload' stub template presentation. Creating its instance 2024-04-22 12:39:32,204 [ 62953] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.ToolWindow.List.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,204 [ 62953] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.MarkNotViewed' stub template presentation. Creating its instance 2024-04-22 12:39:32,205 [ 62954] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Show' stub template presentation. Creating its instance 2024-04-22 12:39:32,205 [ 62954] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.MarkViewed' stub template presentation. Creating its instance 2024-04-22 12:39:32,205 [ 62954] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,205 [ 62954] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,205 [ 62954] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Changes.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,206 [ 62955] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.Pull.Request.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,206 [ 62955] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Details.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,206 [ 62955] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Review.Submit' stub template presentation. Creating its instance 2024-04-22 12:39:32,207 [ 62956] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Show' stub template presentation. Creating its instance 2024-04-22 12:39:32,207 [ 62956] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Github.PullRequest.Timeline.Update' stub template presentation. Creating its instance 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarRestartPopup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.inlayContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-2' template presentation. Showing its action-id instead 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-3' template presentation. Showing its action-id instead 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'a4104b3b-533b-424c-872f-670335beb11b-1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,208 [ 62957] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '03d95f43-ddbf-4a60-b04f-5dab740418f8-1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,209 [ 62958] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '67402381-f79c-4874-8d46-547c510bef05-1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,209 [ 62958] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarPopup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,209 [ 62958] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'b1c67cbf-f5e6-4858-9c60-937d4a66b662-1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,209 [ 62958] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'copilot.statusBarErrorPopup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,209 [ 62958] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in '737c0ae1-4ea6-47ea-89f3-02ad35b7a3e3-1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,210 [ 62959] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.MarkViewed' stub template presentation. Creating its instance 2024-04-22 12:39:32,211 [ 62960] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.MarkNotViewed' stub template presentation. Creating its instance 2024-04-22 12:39:32,211 [ 62960] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Details.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,211 [ 62960] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.MergeRequest.Review.Submit' stub template presentation. Creating its instance 2024-04-22 12:39:32,211 [ 62960] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.List.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,212 [ 62961] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Review.Editor.Branch.Popup.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,212 [ 62961] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Changes.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,212 [ 62961] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Timeline.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,212 [ 62961] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GitLab.Merge.Request.Timeline.Error.Popup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,214 [ 62963] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ToolbarDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:39:32,214 [ 62963] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ModuleMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,214 [ 62963] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.DependencyAnalyzer.OpenConfig' stub template presentation. Creating its instance 2024-04-22 12:39:32,215 [ 62964] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ProjectMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,215 [ 62964] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.RefreshDependencies' stub template presentation. Creating its instance 2024-04-22 12:39:32,215 [ 62964] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.RightPanel' template presentation. Showing its action-id instead 2024-04-22 12:39:32,215 [ 62964] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ViewDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:39:32,215 [ 62964] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.CenterPanel' template presentation. Showing its action-id instead 2024-04-22 12:39:32,216 [ 62965] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.DependencyAnalyzer.GoTo' stub template presentation. Creating its instance 2024-04-22 12:39:32,216 [ 62965] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.ActionsToolbar.LeftPanel' template presentation. Showing its action-id instead 2024-04-22 12:39:32,217 [ 62966] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.ProjectViewDependencyAnalyzer' stub template presentation. Creating its instance 2024-04-22 12:39:32,217 [ 62966] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.View.DependencyMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,217 [ 62966] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Gradle.GenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,217 [ 62966] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GenerateGradleDslGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,220 [ 62969] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'AddGradleDslPluginAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,220 [ 62969] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'GroovyGenerateGroup1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,221 [ 62970] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailViewActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,221 [ 62970] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.EditorToolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,221 [ 62970] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailsPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,222 [ 62971] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ThumbnailsToolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,222 [ 62971] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.ImageViewActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,222 [ 62971] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Images.EditorPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,222 [ 62971] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'junit.exclude.group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,223 [ 62972] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'junit.add.to.pattern.group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,223 [ 62972] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Debugger.ThreadsPanelPopup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,223 [ 62972] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'StructureViewCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,223 [ 62972] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaDebuggerActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,224 [ 62973] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'UsageGrouping.Package' stub template presentation. Creating its instance 2024-04-22 12:39:32,224 [ 62973] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ExcludeFromValidation' stub template presentation. Creating its instance 2024-04-22 12:39:32,225 [ 62974] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaSoftExit' stub template presentation. Creating its instance 2024-04-22 12:39:32,225 [ 62974] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RefactoringMenu4' template presentation. Showing its action-id instead 2024-04-22 12:39:32,225 [ 62974] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.Documentation.IDEA' template presentation. Showing its action-id instead 2024-04-22 12:39:32,226 [ 62975] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.ImportFrom.Group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,226 [ 62975] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShowPackageDepsGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,226 [ 62975] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorTabCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,226 [ 62975] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuDebugJava' template presentation. Showing its action-id instead 2024-04-22 12:39:32,227 [ 62976] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditorPopupMenuAnalyze' template presentation. Showing its action-id instead 2024-04-22 12:39:32,227 [ 62976] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MemoryView.ClassesPopupActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,228 [ 62977] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaControlBreak' stub template presentation. Creating its instance 2024-04-22 12:39:32,228 [ 62977] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaGenerateGroup2' template presentation. Showing its action-id instead 2024-04-22 12:39:32,228 [ 62977] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaGenerateGroup1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,229 [ 62978] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.BuildMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,229 [ 62978] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CompilerErrorViewPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,229 [ 62978] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'NewJavaSpecialFile' template presentation. Showing its action-id instead 2024-04-22 12:39:32,230 [ 62979] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PackageFile' stub template presentation. Creating its instance 2024-04-22 12:39:32,230 [ 62979] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaMethodHierarchyPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,230 [ 62979] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CommanderPopupMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,230 [ 62979] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MigrationMenu1' template presentation. Showing its action-id instead 2024-04-22 12:39:32,231 [ 62980] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'InspectCodeActionInPopupMenus' template presentation. Showing its action-id instead 2024-04-22 12:39:32,231 [ 62980] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RefactoringMenuRenameFile' template presentation. Showing its action-id instead 2024-04-22 12:39:32,231 [ 62980] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Debugger.Representation' template presentation. Showing its action-id instead 2024-04-22 12:39:32,231 [ 62980] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaCompileGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,231 [ 62980] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'JavaNewProjectOrModuleGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,232 [ 62981] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'idea.java.decompiler.action.group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,233 [ 62982] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkGeneratedSourceRoot' stub template presentation. Creating its instance 2024-04-22 12:39:32,233 [ 62982] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'WelcomeScreen.QuickStart.IDEA' template presentation. Showing its action-id instead 2024-04-22 12:39:32,234 [ 62983] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkGeneratedSourceRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,234 [ 62983] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'UnmarkGeneratedSourceRoot' stub template presentation. Creating its instance 2024-04-22 12:39:32,235 [ 62984] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkSourceRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,235 [ 62984] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Java.MarkRootGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,236 [ 62985] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Kotlin.XDebugger.Actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,236 [ 62985] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'KotlinGenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,236 [ 62985] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ConvertJavaToKotlinGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,237 [ 62986] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.EditorContextMenuGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,237 [ 62986] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.InsertGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,238 [ 62987] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,238 [ 62987] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableColumnActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,238 [ 62987] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Markdown.TableRowActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,239 [ 62988] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.MQ.Unapplied' template presentation. Showing its action-id instead 2024-04-22 12:39:32,239 [ 62988] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.Commit.And.Push.Executor' stub template presentation. Creating its instance 2024-04-22 12:39:32,240 [ 62989] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Mq.Patches.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,240 [ 62989] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Hg.Log.ContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,240 [ 62989] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Mq.Patches.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,241 [ 62990] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DevKit.ThemeEditorToolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,241 [ 62990] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CombinePropertiesFilesAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,242 [ 62991] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ShGenerateGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,242 [ 62991] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Svn.WorkingCopiesView.Toolbar' template presentation. Showing its action-id instead 2024-04-22 12:39:32,243 [ 62992] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SubversionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,243 [ 62992] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SubversionUpdateActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,243 [ 62992] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'task.actions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,244 [ 62993] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'tasks.group' template presentation. Showing its action-id instead 2024-04-22 12:39:32,244 [ 62993] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'working.context' template presentation. Showing its action-id instead 2024-04-22 12:39:32,245 [ 62994] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.NextSplitter' stub template presentation. Creating its instance 2024-04-22 12:39:32,246 [ 62995] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.SplitVertically' stub template presentation. Creating its instance 2024-04-22 12:39:32,246 [ 62995] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.SplitHorizontally' stub template presentation. Creating its instance 2024-04-22 12:39:32,246 [ 62995] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'TerminalToolwindowActionGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,246 [ 62995] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.PromptContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,246 [ 62995] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.OutputContextMenu' template presentation. Showing its action-id instead 2024-04-22 12:39:32,247 [ 62996] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Terminal.PrevSplitter' stub template presentation. Creating its instance 2024-04-22 12:39:32,247 [ 62996] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'addToTempGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,247 [ 62996] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'excludeGroup' template presentation. Showing its action-id instead 2024-04-22 12:39:32,248 [ 62997] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Dev.PsiViewerActions' template presentation. Showing its action-id instead 2024-04-22 12:39:32,348 [ 63097] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'EditInspectionSettings' stub template presentation. Creating its instance 2024-04-22 12:39:32,349 [ 63098] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableMinimap' stub template presentation. Creating its instance 2024-04-22 12:39:32,350 [ 63099] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.RefreshFileHistory' stub template presentation. Creating its instance 2024-04-22 12:39:32,350 [ 63099] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleInlayHintsGloballyAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,351 [ 63100] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableDeclarativeInlayAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,352 [ 63101] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Vcs.ReformatCommitMessage' stub template presentation. Creating its instance 2024-04-22 12:39:32,354 [ 63103] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DuplicatesForm.SendToRight' template presentation. Showing its action-id instead 2024-04-22 12:39:32,355 [ 63104] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateUnitTestsToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:39:32,356 [ 63105] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DisableInspection' stub template presentation. Creating its instance 2024-04-22 12:39:32,358 [ 63107] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'LightEditOpenFileInProject' stub template presentation. Creating its instance 2024-04-22 12:39:32,358 [ 63107] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'DuplicatesForm.SendToLeft' template presentation. Showing its action-id instead 2024-04-22 12:39:32,358 [ 63107] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ValidateXml' template presentation. Showing its action-id instead 2024-04-22 12:39:32,359 [ 63108] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RevealIn' stub template presentation. Creating its instance 2024-04-22 12:39:32,359 [ 63108] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SeverityEditorDialog' stub template presentation. Creating its instance 2024-04-22 12:39:32,363 [ 63112] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ToggleMinimap' stub template presentation. Creating its instance 2024-04-22 12:39:32,364 [ 63113] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'plugin.InstallFromDiskAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,365 [ 63114] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MoveMinimap' stub template presentation. Creating its instance 2024-04-22 12:39:32,366 [ 63115] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'RunInspectionOn' stub template presentation. Creating its instance 2024-04-22 12:39:32,366 [ 63115] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateNuGetToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:39:32,369 [ 63118] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CodeVision.ShowMore' stub template presentation. Creating its instance 2024-04-22 12:39:32,369 [ 63118] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ActivateFavoritesToolWindow' template presentation. Showing its action-id instead 2024-04-22 12:39:32,370 [ 63119] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'ConsoleView.ClearAll' stub template presentation. Creating its instance 2024-04-22 12:39:32,370 [ 63119] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Android.CleanRun' template presentation. Showing its action-id instead 2024-04-22 12:39:32,370 [ 63119] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'PauseOutput' stub template presentation. Creating its instance 2024-04-22 12:39:32,371 [ 63120] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'MarkNotificationsAsRead' stub template presentation. Creating its instance 2024-04-22 12:39:32,371 [ 63120] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'OpenMinimapSettings' stub template presentation. Creating its instance 2024-04-22 12:39:32,372 [ 63121] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'Code.Review.Editor.Show.Diff' stub template presentation. Creating its instance 2024-04-22 12:39:32,372 [ 63121] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SwitchHeaderSource' template presentation. Showing its action-id instead 2024-04-22 12:39:32,373 [ 63122] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'XDebugger.Attach.Dialog.ShowOnlyMyProcessesToggleAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,373 [ 63122] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'CustomizeUI' stub template presentation. Creating its instance 2024-04-22 12:39:32,374 [ 63123] WARN - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'InactiveStopActionPlaceholder' template presentation. Showing its action-id instead 2024-04-22 12:39:32,486 [ 63235] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:32,552 [ 63301] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:32,569 [ 63318] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'SelectProjectAction' stub template presentation. Creating its instance 2024-04-22 12:39:32,584 [ 63333] WARN - #c.i.o.a.ActionStub - ActionGroup should be registered using tag: id="android.device.liveedit.status" class="com.android.tools.idea.editors.liveedit.ui.LiveEditNotificationGroup" 2024-04-22 12:39:32,584 [ 63333] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No text in 'android.device.liveedit.status' stub template presentation. Creating its instance 2024-04-22 12:39:33,077 [ 63826] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:33,262 [ 64011] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:33,395 [ 64144] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:33,881 [ 64630] INFO - #c.i.o.k.i.u.ActionsTreeUtil - No children in 'Hg.Ignore.File' stub. Creating its instance 2024-04-22 12:39:34,170 [ 64919] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs from [C:\Users\anoua\AppData\Local\Google\AndroidStudioPreview2024.1\caches\huge-gists] ... 2024-04-22 12:39:34,171 [ 64920] INFO - #c.i.u.g.s.GistStorageImpl - Cleaning old huge-gists dirs finished 2024-04-22 12:39:38,476 [ 69225] WARN - #c.i.o.o.e.ConfigurableCardPanel - auto-dispose 'Plugins' id=preferences.pluginManager 2024-04-22 12:39:41,960 [ 72709] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:39:41,961 [ 72710] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:39:43,952 [ 74701] WARN - #c.i.u.x.Binding - No accessors for com.intellij.toolWindow.ToolWindowLayoutStorageManagerState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:39:51,322 [ 82071] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:39:51,322 [ 82071] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:39:51,593 [ 82342] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:39:51,594 [ 82343] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:40:07,809 [ 98558] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:40:07,810 [ 98559] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:40:12,565 [ 103314] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:40:12,567 [ 103316] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:40:12,878 [ 103627] INFO - #c.i.c.ComponentStoreImpl - Saving appFileTypeManager took 11 ms 2024-04-22 12:40:12,958 [ 103707] WARN - #c.i.u.x.Binding - No accessors for org.jetbrains.kotlin.idea.projectConfiguration.KotlinNotConfiguredSuppressedModulesState. This means that state class cannot be serialized properly. Please see https://jb.gg/ij-psoc 2024-04-22 12:40:12,961 [ 103710] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)DynamicElementsStorage took 12 ms, RunManager took 11 ms 2024-04-22 12:40:33,140 [ 123889] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:40:33,140 [ 123889] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:41:15,294 [ 166043] WARN - #c.i.s.ComponentManagerImpl - com.intellij.usages.UsageNodePresentation requests com.intellij.usageView.UsageTreeColorsScheme instance. Class initialization must not depend on services. Consider using instance of the service on-demand instead. 2024-04-22 12:41:15,489 [ 166238] SEVERE - #c.i.o.a.i.ActionUpdater - ChangeFontSizeAction$Decrease#presentation@GoToAction (org.intellij.plugins.markdown.ui.actions.ChangeFontSizeAction$Decrease), actionId=Markdown.Preview.DecreaseFontSize, text='Decrease Preview Font Size' java.lang.ClassCastException: class com.android.tools.idea.uibuilder.editor.multirepresentation.sourcecode.SourceCodeEditorWithMultiRepresentationPreview cannot be cast to class org.intellij.plugins.markdown.ui.preview.MarkdownEditorWithPreview (com.android.tools.idea.uibuilder.editor.multirepresentation.sourcecode.SourceCodeEditorWithMultiRepresentationPreview is in unnamed module of loader com.intellij.ide.plugins.cl.PluginClassLoader @2f84b7eb; org.intellij.plugins.markdown.ui.preview.MarkdownEditorWithPreview is in unnamed module of loader com.intellij.ide.plugins.cl.PluginClassLoader @539b98da) at org.intellij.plugins.markdown.ui.actions.MarkdownActionUtil.findSplitEditor(MarkdownActionUtil.kt:40) at org.intellij.plugins.markdown.ui.actions.MarkdownActionUtil.findSplitEditor(MarkdownActionUtil.kt:31) at org.intellij.plugins.markdown.ui.actions.MarkdownActionUtil.findMarkdownPreviewEditor(MarkdownActionUtil.kt:47) at org.intellij.plugins.markdown.ui.actions.ChangeFontSizeAction.update(ChangeFontSizeAction.kt:36) at com.intellij.openapi.actionSystem.ex.ActionUtil$performDumbAwareUpdate$runnable$1.invoke(ActionUtil.kt:162) at com.intellij.openapi.actionSystem.ex.ActionUtil$performDumbAwareUpdate$runnable$1.invoke(ActionUtil.kt:155) at com.intellij.openapi.actionSystem.ex.ActionUtil.performDumbAwareUpdate(ActionUtil.kt:180) at com.intellij.openapi.actionSystem.impl.ActionUpdater$updateAction$success$1$1$1.invoke(ActionUpdater.kt:564) at com.intellij.openapi.actionSystem.impl.ActionUpdater$updateAction$success$1$1$1.invoke(ActionUpdater.kt:563) at com.intellij.openapi.actionSystem.impl.ActionUpdater$callAction$3.invoke(ActionUpdater.kt:171) at com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$2.invoke(ActionUpdater.kt:197) at com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$deferred$1$1.invoke(ActionUpdater.kt:492) at com.intellij.openapi.progress.CoroutinesKt.blockingContextInner(coroutines.kt:320) at com.intellij.openapi.progress.CoroutinesKt.access$blockingContextInner(coroutines.kt:1) at com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invokeSuspend(coroutines.kt:197) at com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(coroutines.kt) at com.intellij.openapi.progress.CoroutinesKt$blockingContext$2.invoke(coroutines.kt) at kotlinx.coroutines.intrinsics.UndispatchedKt.startUndispatchedOrReturn(Undispatched.kt:78) at kotlinx.coroutines.CoroutineScopeKt.coroutineScope(CoroutineScope.kt:264) at com.intellij.openapi.progress.CoroutinesKt.blockingContext(coroutines.kt:196) at com.intellij.openapi.actionSystem.impl.ActionUpdater$computeOnEdt$deferred$1.invokeSuspend(ActionUpdater.kt:491) at kotlin.coroutines.jvm.internal.BaseContinuationImpl.resumeWith(ContinuationImpl.kt:33) at kotlinx.coroutines.DispatchedTask.run(DispatchedTask.kt:108) at com.intellij.openapi.application.TransactionGuardImpl$1.run(TransactionGuardImpl.java:194) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:204) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.openapi.application.impl.ApplicationImpl$2.run(ApplicationImpl.java:419) at com.intellij.openapi.application.impl.RwLockHolder.runWithEnabledImplicitRead(RwLockHolder.kt:138) at com.intellij.openapi.application.impl.RwLockHolder.runWithImplicitRead(RwLockHolder.kt:129) at com.intellij.openapi.application.impl.ApplicationImpl.runWithImplicitRead(ApplicationImpl.java:1152) at com.intellij.openapi.application.impl.FlushQueue.doRun(FlushQueue.java:81) at com.intellij.openapi.application.impl.FlushQueue.runNextEvent(FlushQueue.java:123) at com.intellij.openapi.application.impl.FlushQueue.flushNow(FlushQueue.java:43) at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:318) at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:792) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:739) at java.desktop/java.awt.EventQueue$3.run(EventQueue.java:733) at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:86) at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:761) at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.kt:698) at com.intellij.ide.IdeEventQueue._dispatchEvent$lambda$12(IdeEventQueue.kt:593) at com.intellij.openapi.application.impl.RwLockHolder.runWithoutImplicitRead(RwLockHolder.kt:105) at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.kt:593) at com.intellij.ide.IdeEventQueue.access$_dispatchEvent(IdeEventQueue.kt:77) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:362) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1$1.compute(IdeEventQueue.kt:361) at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:843) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:361) at com.intellij.ide.IdeEventQueue$dispatchEvent$processEventRunnable$1$1.invoke(IdeEventQueue.kt:356) at com.intellij.ide.IdeEventQueueKt.performActivity$lambda$1(IdeEventQueue.kt:1021) at com.intellij.openapi.application.TransactionGuardImpl.performActivity(TransactionGuardImpl.java:106) at com.intellij.ide.IdeEventQueueKt.performActivity(IdeEventQueue.kt:1021) at com.intellij.ide.IdeEventQueue.dispatchEvent$lambda$7(IdeEventQueue.kt:356) at com.intellij.openapi.application.impl.RwLockHolder.runIntendedWriteActionOnCurrentThread(RwLockHolder.kt:209) at com.intellij.openapi.application.impl.ApplicationImpl.runIntendedWriteActionOnCurrentThread(ApplicationImpl.java:830) at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.kt:398) at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:207) at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:92) 2024-04-22 12:41:15,491 [ 166240] SEVERE - #c.i.o.a.i.ActionUpdater - Android Studio Koala | 2024.1.1 Canary 6 Build #AI-241.14494.240.2411.11731683 2024-04-22 12:41:15,491 [ 166240] SEVERE - #c.i.o.a.i.ActionUpdater - JDK: 17.0.10; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o. 2024-04-22 12:41:15,491 [ 166240] SEVERE - #c.i.o.a.i.ActionUpdater - OS: Windows 10 2024-04-22 12:41:15,491 [ 166240] SEVERE - #c.i.o.a.i.ActionUpdater - Last Action: SearchEverywhere 2024-04-22 12:41:19,491 [ 170240] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:41:19,495 [ 170244] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:41:19,495 [ 170244] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:41:19,495 [ 170244] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:41:37,350 [ 188099] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:41:37,354 [ 188103] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:41:37,395 [ 188144] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:41:37,397 [ 188146] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:41:37,397 [ 188146] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:41:37,424 [ 188173] INFO - #c.i.a.o.PathMacrosImpl - Saved path macros: {} 2024-04-22 12:41:37,523 [ 188272] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)XDebuggerManager took 11 ms 2024-04-22 12:42:40,826 [ 251575] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:42:40,827 [ 251576] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:43:15,224 [ 285973] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:43:30,574 [ 301323] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:43:31,923 [ 302672] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:43:31,924 [ 302673] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:43:47,264 [ 318013] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:43:47,267 [ 318016] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:43:47,267 [ 318016] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:43:47,267 [ 318016] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:43:49,803 [ 320552] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:43:49,804 [ 320553] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:44:15,077 [ 345826] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:44:21,993 [ 352742] INFO - #c.i.i.a.TogglePresentationModeAction - Will tweak full screen mode for presentation=true 2024-04-22 12:44:22,001 [ 352750] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:44:22,015 [ 352764] INFO - #c.i.u.s.JBUIScale - User scale factor: 1.75 2024-04-22 12:44:22,460 [ 353209] INFO - #c.i.i.a.TogglePresentationModeAction - Will restore tool windows for presentation=true 2024-04-22 12:44:22,706 [ 353455] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:44:22,707 [ 353456] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:44:31,307 [ 362056] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:44:31,308 [ 362057] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:44:38,245 [ 368994] INFO - #c.i.i.a.TogglePresentationModeAction - Will tweak full screen mode for presentation=false 2024-04-22 12:44:38,249 [ 368998] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:44:38,256 [ 369005] INFO - #c.i.u.s.JBUIScale - User scale factor: 1.0 2024-04-22 12:44:38,379 [ 369128] INFO - #c.i.i.a.TogglePresentationModeAction - Will restore tool windows for presentation=false 2024-04-22 12:44:41,079 [ 371828] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:44:41,080 [ 371829] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:44:48,134 [ 378883] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:44:48,781 [ 379530] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:44:52,773 [ 383522] INFO - #c.i.o.u.r.RegistryValue - Registry value 'editor.distraction.free.mode' has changed to 'true' 2024-04-22 12:44:52,780 [ 383529] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:45:05,901 [ 396650] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:45:08,908 [ 399657] INFO - #c.i.o.u.r.RegistryValue - Registry value 'editor.distraction.free.mode' has changed to 'false' 2024-04-22 12:45:08,912 [ 399661] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:45:08,958 [ 399707] INFO - #c.i.i.a.TogglePresentationModeAction - Will restore tool windows for presentation=false 2024-04-22 12:45:10,021 [ 400770] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:45:13,845 [ 404594] INFO - #c.i.o.u.r.RegistryValue - Registry value 'editor.distraction.free.mode' has changed to 'true' 2024-04-22 12:45:13,852 [ 404601] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:45:14,304 [ 405053] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:45:14,307 [ 405056] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:45:21,029 [ 411778] INFO - #c.i.o.u.r.RegistryValue - Registry value 'editor.distraction.free.mode' has changed to 'false' 2024-04-22 12:45:21,032 [ 411781] INFO - #c.i.i.u.e.t.ExperimentalToolbarSettings - Dispatching UI settings change. 2024-04-22 12:45:21,074 [ 411823] INFO - #c.i.i.a.TogglePresentationModeAction - Will restore tool windows for presentation=false 2024-04-22 12:45:21,480 [ 412229] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:45:21,483 [ 412232] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:45:30,803 [ 421552] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:45:30,804 [ 421553] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:45:47,518 [ 438267] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:45:47,519 [ 438268] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:46:12,150 [ 462899] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:46:12,151 [ 462900] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:48:53,080 [ 623829] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - ignore deprecated groupId: language for id: preferences.language.Kotlin.scripting 2024-04-22 12:48:53,083 [ 623832] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: testing.instrumented.configuration 2024-04-22 12:48:53,083 [ 623832] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - Use to specify custom configurable group: other 2024-04-22 12:48:53,084 [ 623833] WARN - #c.i.o.o.e.ConfigurableExtensionPointUtil - use other group instead of unexpected one: project.propCompiler 2024-04-22 12:48:55,559 [ 626308] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:48:55,564 [ 626313] INFO - #com.android.tools.idea.memorysettings.MemorySettingsRecommendation - recommendation based on machine: 2048, on project: 2048 2024-04-22 12:48:55,569 [ 626318] INFO - #o.j.p.g.GradleManager - Instructing gradle to use java from C:\jdk-21.0.1 2024-04-22 12:50:07,825 [ 698574] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS started 2024-04-22 12:50:11,330 [ 702079] INFO - #c.i.o.v.n.p.FSRecords - Checking VFS finished (healthy): VFSHealthCheckReport[healthy: true](FileRecordsReport[recordsChecked=283221, recordsDeleted=216, childrenChecked=282418]{nullNameIds=0, unresolvableNameIds=0, notNullContentIds=2262, unresolvableContentIds=0, unresolvableAttributesIds=0, nullParents=0, inconsistentParentChildRelationships=0, generalErrors=0), RootsReport(rootsCount=449, rootsWithParents=0, rootsDeletedButNotRemoved=0, generalErrors=0), NamesEnumeratorReport(namesChecked=148263, namesResolvedToNull=0, idsResolvedToNull=0, inconsistentNames=0, generalErrors=0), ContentEnumeratorReport(contentRecordsChecked=1747101, generalErrors=0)){timeTaken=3.491982300s} 2024-04-22 12:52:36,138 [ 846887] WARN - #c.i.i.a.CopyTBXReferenceAction - Cannot find TBX tool for IDE: AndroidStudio 2024-04-22 12:52:39,960 [ 850709] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.SdkEntity to files 2024-04-22 12:52:39,960 [ 850709] INFO - #c.i.w.i.i.j.s.JpsGlobalModelSynchronizerImpl - Saving global entities com.intellij.platform.workspace.jps.entities.LibraryEntity to files 2024-04-22 12:52:39,968 [ 850717] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Kotlin 2024-04-22 12:52:39,968 [ 850717] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=31 for: Java 2024-04-22 12:52:39,969 [ 850718] INFO - #c.i.c.m.s.CompletionMLRankingSettings - ML Completion enabled, experiment group=13 for: Shell Script 2024-04-22 12:52:40,127 [ 850876] INFO - #c.i.c.ComponentStoreImpl - Saving Project(name=kotlinBooks, containerState=COMPONENT_CREATED, componentStore=C:\IntellijProjects\kotlinBooks)TaskManager took 15 ms