-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupdate_lib_dir.sh
More file actions
executable file
·26 lines (18 loc) · 963 Bytes
/
update_lib_dir.sh
File metadata and controls
executable file
·26 lines (18 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Navigate to the directory containing your .aar and .pom files
cd android/libs/com/davoice/keyworddetection/1.0.0/
# Generate checksums for the .aar file
md5sum keyworddetection-1.0.0.aar > keyworddetection-1.0.0.aar.md5
sha1sum keyworddetection-1.0.0.aar > keyworddetection-1.0.0.aar.sha1
# Generate checksums for the .pom file
md5sum keyworddetection-1.0.0.pom > keyworddetection-1.0.0.pom.md5
sha1sum keyworddetection-1.0.0.pom > keyworddetection-1.0.0.pom.sha1
cd -
# Navigate to the directory containing your .aar and .pom files
cd android_min_footprint/libs/com/davoice/keyworddetection/1.0.0/
# Generate checksums for the .aar file
md5sum keyworddetection-1.0.0.aar > keyworddetection-1.0.0.aar.md5
sha1sum keyworddetection-1.0.0.aar > keyworddetection-1.0.0.aar.sha1
# Generate checksums for the .pom file
md5sum keyworddetection-1.0.0.pom > keyworddetection-1.0.0.pom.md5
sha1sum keyworddetection-1.0.0.pom > keyworddetection-1.0.0.pom.sha1
cd -