From c6f372309c1487bee4f3392ab3fe70e2c652b98b Mon Sep 17 00:00:00 2001 From: Ricky Date: Fri, 18 Feb 2022 17:15:05 +1100 Subject: [PATCH] support build:gradle:4.1.0 --- android/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/android/build.gradle b/android/build.gradle index 197831c..754b2bf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -20,6 +20,9 @@ rootProject.allprojects { // flatDir { // dirs 'src/main/libs' // } + flatDir { + dirs project(':camera_deep_ar').file('lib') + } } } @@ -60,5 +63,5 @@ dependencies { implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' - implementation files('lib/deepar0.aar') + implementation (name: 'deepar0', ext: 'aar') }