I have an APK file which is installing and working fine on android phone, but when I am wrapping this APK file with Microsoft Intune it is giving an error when I try to install this wrapped APK file.
There was a problem parsing the package
steps I followed during wrapping:
Import-Module .\IntuneAppWrappingTool.psm1
Invoke-AppWrappingTool -InputPath .\new\app-release1.apk -OutputPath .\newtry\wrapped.apk -KeyStorePath .\key\upload-keystore.jks -Verbose
It gives wrapped-unsigned.apk at OutputPath (with message that intune can not sign the apk because targeting API level is 30 or above and some v1 type problem was there)
Now when I tried to install this file I got the same error as facing above then I signed this wrapped unsigned file
Signed wrapped apk file by Android apksigner
now again I tried to install my wrapped and signed apk file but I am facing the same error again
I am not able to understand where the things happening wrong. I am providing a signed APK file to InputPath of of Intune
How can I wrap my APK file correctly so that it can run properly?