react-native-wakeword 1.0.36 → 1.0.38
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 +6 -1
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom +9 -6
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom.md5 +1 -1
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom.sha1 +1 -1
- package/android/settings.gradle +2 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -22,8 +22,13 @@ repositories {
|
|
|
22
22
|
mavenCentral()
|
|
23
23
|
maven {
|
|
24
24
|
url 'https://maven.pkg.github.com/microsoft/onnxruntime'
|
|
25
|
+
}
|
|
26
|
+
maven {
|
|
25
27
|
url './libs'
|
|
26
28
|
}
|
|
29
|
+
maven {
|
|
30
|
+
url "$projectDir/libs"
|
|
31
|
+
}
|
|
27
32
|
mavenLocal()
|
|
28
33
|
}
|
|
29
34
|
|
|
@@ -31,7 +36,7 @@ dependencies {
|
|
|
31
36
|
implementation "com.facebook.react:react-native:+"
|
|
32
37
|
implementation 'com.microsoft.onnxruntime:onnxruntime-android:1.13.1'
|
|
33
38
|
implementation 'ai.picovoice:android-voice-processor:1.0.2'
|
|
34
|
-
implementation 'com.davoice
|
|
39
|
+
implementation 'com.davoice:keyworddetection:1.0.0'
|
|
35
40
|
// implementation(name: 'MyLibrary-release', ext: 'aar') // Add this line
|
|
36
41
|
}
|
|
37
42
|
|
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
<project
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
2
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
4
|
+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
+
<modelVersion>4.0.0</modelVersion>
|
|
6
|
+
<groupId>com.davoice</groupId>
|
|
7
|
+
<artifactId>keyworddetection</artifactId>
|
|
8
|
+
<version>1.0.0</version>
|
|
9
|
+
<packaging>aar</packaging>
|
|
7
10
|
</project>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e5c6a73bac657aa816353ea352a514b6 keyworddetection-1.0.0.pom
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
e5d2ce768d7a084d7dbe62bf5b7d1489f31f76c8 keyworddetection-1.0.0.pom
|
package/android/settings.gradle
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
include ':
|
|
1
|
+
include ':react-native-wakeword'
|
|
2
|
+
project(':react-native-wakeword').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wakeword/android')
|