feat: setup example app new arch

This commit is contained in:
yungblud 2023-04-26 08:58:57 +09:00
parent 0be9de98d8
commit 7b6e76e2d0
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,5 @@
apply plugin: "com.android.application"
apply plugin: "com.facebook.react"
import com.android.build.OutputFile
import org.apache.tools.ant.taskdefs.condition.Os

View File

@ -3,6 +3,7 @@
buildscript {
ext {
buildToolsVersion = "31.0.0"
kotlin_version = "1.6.10"
minSdkVersion = 21
compileSdkVersion = 31
targetSdkVersion = 31
@ -20,9 +21,10 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.2.1")
classpath("com.android.tools.build:gradle:7.3.0")
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("de.undercouch:gradle-download-task:5.0.1")
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}