android - When publish Instant App:Invalid target sandbox version -
i try publish android instant app via google play. might following problem 
i try solve problem adding attribute android:targetsandboxversion = "2", still not work.
in general, problem has these settings(build.gradle)
buildscript { repositories { maven { url 'https://maven.google.com' } jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:3.0.0-beta5' // note: not place application dependencies here; belong // in individual module build.gradle files } } allprojects { repositories { maven { url 'https://maven.google.com' } jcenter() google() } } ext { minsdkversion = 26 targetsdkversion = 26 compilesdkversion = 26 buildtoolsversion = '26.0.1' androidsupport = '26.0.0' versioncode = 5 versionname = "1.1" } task clean(type: delete) { delete rootproject.builddir } ======
as commented, revise base feature adding statement android:targetsandboxversion = "2", cannot go through compiling errors shown, if clean, rebuild project.
as message says, need targetsandboxversion in manifest of published installable app.
doing places restrictions on installed app on o devices, , makes easier o installer upgrade instant app installed.

Comments
Post a Comment