mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Improve Android enterprise app install
This commit is contained in:
parent
01cc7edeff
commit
e0c15be870
@ -282,11 +282,8 @@ public class AndroidEnterpriseUtils {
|
|||||||
if (productListResponse != null && productListResponse.getProduct() != null
|
if (productListResponse != null && productListResponse.getProduct() != null
|
||||||
&& !productListResponse.getProduct().isEmpty()) {
|
&& !productListResponse.getProduct().isEmpty()) {
|
||||||
|
|
||||||
List<String> packageNamesOfApps = new ArrayList<>();
|
List<String> packageNamesOfApps = productListResponse.getProduct().stream()
|
||||||
for (Product product1 : productListResponse.getProduct()) {
|
.map(product -> (product.getProductId().replaceFirst("app:", ""))).collect(Collectors.toList());
|
||||||
String s = (product1.getProductId().replaceFirst("app:", ""));
|
|
||||||
packageNamesOfApps.add(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
List<Application> existingApps = applicationManager.getApplications(packageNamesOfApps);
|
List<Application> existingApps = applicationManager.getApplications(packageNamesOfApps);
|
||||||
List<Product> products = productListResponse.getProduct();
|
List<Product> products = productListResponse.getProduct();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user