Android Instant App Failure to parse App

Viewed 1793

I'm trying to run my instant app module but I've got the error DevMan error: Failed to parse app: /data/local/tmp/aia/.... What leads this error, any idea?

However, when I tried to run the command adb install -r -t my-base-debug.apk it gives success.

Can anyone please help me to figure out?

Thanks,

1 Answers

I have the similar issue when using the demo project to develop the InstantApp. After check the logcat, say some issue related to the "version code", then add the versionCode YourProjectVersionCodeHere and versionName YourProjectVersionNameHere in the base feature build.gradle file (in the android {}), the instant app change run on my emulator(API 25).

Related