Skip to content

Commit

Permalink
kotlin-stdlib-* and kotlin-reflect are unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
tido64 committed Aug 16, 2023
1 parent 9e8dd59 commit 96efd68
Showing 1 changed file with 1 addition and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ buildscript {
return rootProject.ext.has(prop) ? rootProject.ext.get(prop) : defaultValue
}

ext.kotlinVersion = getExtProp("kotlinVersion", "1.7.21")

repositories {
google()
mavenCentral()
}

dependencies {
def kotlinVersion = getExtProp("kotlinVersion", "1.7.21")
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
Expand Down Expand Up @@ -64,10 +63,6 @@ android {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"

//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+"
}

0 comments on commit 96efd68

Please sign in to comment.