Skip to content

Commit f1fd63b

Browse files
authored
fix: remove not supported plugin 'kotlin-android-extensions' in build.gradle
kotlin-android-extensions ``` The Android extensions ('kotlin-android-extensions') compiler plugin is no longer supported. Please use kotlin parcelize and view binding. More information: https://goo.gle/kotlin-android-extensions-deprecation FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':xmartlabs_react-native-line:compileDebugKotlin'. ```
1 parent f85eaa1 commit f1fd63b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

android/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ repositories {
2222

2323
apply plugin: "com.android.library"
2424
apply plugin: "kotlin-android"
25-
apply plugin: "kotlin-android-extensions"
2625

2726
def safeExtGet(prop, fallback) {
2827
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
@@ -53,4 +52,4 @@ dependencies {
5352
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
5453
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.0.1"
5554
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1"
56-
}
55+
}

0 commit comments

Comments
 (0)