I have created an Instant app using Android Studio 3.0. When I try to run the instant app in the emulator I get the following error
I use the recommended Nexus 5X image running Android 6.0 (API level 23), x86, with Google APIs. I also have the Android Instant app SDK installed.
Following are my SDK versions,
- SDK Tools - 25.2.5
- SDK Platform tools - 26
- SDK Build tools - 26
And, this is my build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.0"
defaultConfig {
applicationId "com.example.myfirstinstantapp"
minSdkVersion 23
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation project(':feature')
implementation project(':base')
}