Skip to content

Commit 0fe8ab3

Browse files
authored
Fix Android build error (#110)
* Add Android to platforms list * Update Android binaries * Update libwebrtc.jar for Android
1 parent ded0201 commit 0fe8ab3

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:dd33a01136ccc682607548cc1ac254afa9f1804de3d2f503b6536641cbf2550b
3-
size 19700992
2+
oid sha256:25586a0ce23e65d4281a1d5d7ad0497563194de8a226adbd8bfcd6775b8a9977
3+
size 20661728
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:f1d277a2e6425a8ec764c8649a8d542095e21680143523deb0c09daa093e8aa2
3-
size 986160
2+
oid sha256:40f4ce75d2f11a2c2f7ecbb43df80f1d6dc903d1120b761107cbdc4e15f8236d
3+
size 957534
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:aea8cae17938aab7749b3cf23deb484531c762c8b299655158f380bfdad4c864
3-
size 12046804
2+
oid sha256:9a2b85e2759ae7deb37638e9352e6007e6b67fa90decf1d28017bb6314f9b8a2
3+
size 12519052
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:f1d277a2e6425a8ec764c8649a8d542095e21680143523deb0c09daa093e8aa2
3-
size 986160
2+
oid sha256:40f4ce75d2f11a2c2f7ecbb43df80f1d6dc903d1120b761107cbdc4e15f8236d
3+
size 957534
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:a1f6282055964d03864990144af5029d666ccfa92540c9362ff46588849d0420
3-
size 23159536
2+
oid sha256:4420f3596c9e2e6c2499ac9f807d05f454332f0195b03b55b1f8417b825b3c77
3+
size 23548760
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:f1d277a2e6425a8ec764c8649a8d542095e21680143523deb0c09daa093e8aa2
3-
size 986160
2+
oid sha256:40f4ce75d2f11a2c2f7ecbb43df80f1d6dc903d1120b761107cbdc4e15f8236d
3+
size 957534

install.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
def show_progress(block_num, block_size, total_size):
99
print(round(block_num * block_size / total_size *100,2), end="\r")
1010

11-
platforms = ['ios', 'macos', 'linux', 'windows']
11+
platforms = ['android', 'ios', 'macos', 'linux', 'windows']
1212
download_dir = 'downloads~'
1313

1414
def main():
@@ -27,8 +27,8 @@ def main():
2727
filename = 'ffi-' + platform + '-' + arch + '.zip'
2828
url = f"{config['ffi']['url']}/{tag_path}/{filename}"
2929
file_to_download = download_dir + '/' + filename
30-
if download_file_if_not_exists(url, file_to_download) :
31-
dest = 'Runtime/Plugins' + '/ffi-' + platform + '-' + arch
30+
if download_file_if_not_exists(url, file_to_download) :
31+
dest = 'Runtime/Plugins' + '/ffi-' + platform + '-' + arch
3232
unzip_file(file_to_download, filename, dest)
3333

3434
def download_file_if_not_exists(url, filename):

0 commit comments

Comments
 (0)