@bits-innovate/react-native-vstarcam 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +3 -9
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -38,19 +38,13 @@ android {
|
|
|
38
38
|
repositories {
|
|
39
39
|
mavenCentral()
|
|
40
40
|
google()
|
|
41
|
-
// Look for AAR in the app's libs folder (copied by expo config plugin)
|
|
42
|
-
flatDir {
|
|
43
|
-
dirs rootProject.file('app/libs')
|
|
44
|
-
}
|
|
45
|
-
// Also check local libs folder
|
|
46
|
-
flatDir {
|
|
47
|
-
dirs 'libs'
|
|
48
|
-
}
|
|
49
41
|
}
|
|
50
42
|
|
|
51
43
|
dependencies {
|
|
52
44
|
implementation "com.facebook.react:react-native:+"
|
|
53
|
-
|
|
45
|
+
// Reference the AAR directly from the libs folder
|
|
46
|
+
implementation files('libs/app_p2p_api-5.0.0.aar')
|
|
54
47
|
}
|
|
55
48
|
|
|
56
49
|
|
|
50
|
+
|