react-native-macos/packages/react-native-gradle-plugin/build.gradle.kts

31 строка
553 B
Plaintext
Исходник Обычный вид История

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
plugins {
`java-gradle-plugin`
`kotlin-dsl`
kotlin("jvm") version "1.4.20"
}
repositories {
google()
jcenter()
}
gradlePlugin {
plugins {
create("reactApp") {
id = "com.facebook.react.app"
implementationClass = "com.facebook.react.ReactAppPlugin"
}
}
}
dependencies {
implementation("com.android.tools.build:gradle:4.2.1")
}