Relative Content

Tag Archive for androidkotlingradle

Unable to Build the project

Unable to build the project, working fine in my teammate laptop cross checked with all the configuration but none of them worked help me stuck from 2 months

Unable to Build the project

Unable to build the project, working fine in my teammate laptop cross checked with all the configuration but none of them worked help me stuck from 2 months

How to use a variable in Android build.gradle.kts

Root directory build.gradle.kts extra.apply { // true: debug mode; false: distribute mode. set(“isDebug”, true) } Main module build.gradle.kts val isDebug = rootProject.extra[“isDebug”] as Boolean if (isDebug) { plugins { alias(libs.plugins.android.application) } } else { plugins { alias(libs.plugins.android.library) } } I expect to control the content in “plugins” with a boolean variable. android kotlin gradle New […]

Make editor for kotlin

I want to build a code editor for Kotlin, is there a library that checks the syntax of user code? I need libraries to do this, but if there isn’t one I would like an API or some other method that you have in mind, do you know of a way to do this?

Make editor for kolin

I want to build a code editor for Kotlin, is there a library that checks the syntax of user code? I need libraries to do this, but if there isn’t one I would like an API or some other method that you have in mind, do you know of a way to do this?

Unabale to generate merged native libs folder in android

I have genrated .aab file to upload on playstore but merged native libs folder is not genrated with it. here is my buid.gradle file code
…plugins {
id ‘com.android.application’
id ‘kotlin-android’
id ‘kotlin-android-extensions’
id ‘kotlin-kapt’
id ‘com.google.gms.google-services’
}