mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Fix android web app deploying issue
This commit is contained in:
parent
f4d5a7d04d
commit
01cc7edeff
@ -282,8 +282,11 @@ public class AndroidEnterpriseUtils {
|
|||||||
if (productListResponse != null && productListResponse.getProduct() != null
|
if (productListResponse != null && productListResponse.getProduct() != null
|
||||||
&& !productListResponse.getProduct().isEmpty()) {
|
&& !productListResponse.getProduct().isEmpty()) {
|
||||||
|
|
||||||
List<String> packageNamesOfApps = productListResponse.getProduct().stream()
|
List<String> packageNamesOfApps = new ArrayList<>();
|
||||||
.map(product -> (product.getProductId().replaceFirst("app:", ""))).collect(Collectors.toList());
|
for (Product product1 : productListResponse.getProduct()) {
|
||||||
|
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