From 7b6e76e2d05dc0c3f81db7d49c438c3d9e80015e Mon Sep 17 00:00:00 2001 From: yungblud Date: Wed, 26 Apr 2023 08:58:57 +0900 Subject: [PATCH] feat: :zap: setup example app new arch --- examples/LaftelVideo/android/app/build.gradle | 1 + examples/LaftelVideo/android/build.gradle | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/LaftelVideo/android/app/build.gradle b/examples/LaftelVideo/android/app/build.gradle index c1a675f4..a774862f 100644 --- a/examples/LaftelVideo/android/app/build.gradle +++ b/examples/LaftelVideo/android/app/build.gradle @@ -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 diff --git a/examples/LaftelVideo/android/build.gradle b/examples/LaftelVideo/android/build.gradle index 8569fee3..135c94ed 100644 --- a/examples/LaftelVideo/android/build.gradle +++ b/examples/LaftelVideo/android/build.gradle @@ -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 }