Add .aab installation support (#103)

* Add .aab installation support

Signed-off-by: nghia.viminh <nghia.viminh@gameloft.com>
This commit is contained in:
nghiaviminh
2020-09-28 16:29:58 +07:00
committed by GitHub
parent a0792c857a
commit 841b092d25
6 changed files with 244 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ module.exports = function InstallService(
$rootScope.$broadcast('installation', installation)
return StorageService.storeFile('apk', $files, {
filter: function(file) {
return /\.apk$/i.test(file.name)
return /\.(apk|aab)$/i.test(file.name)
}
})
.progressed(function(e) {