I'm currently working on Android instant apps by using the android-topeka example project.
Everything works as expected, after I'm using AndroidAnnotations on my Activity:
@EActivity(resName = "activity_start")
public class StartActivity extends AppCompatActivity {
...
}
If I want to start the application(:installed
) one, everything works, but for the instant-app(:instant
), I get the following error:
:base:javaPreCompileDebugFeature UP-TO-DATE
error: The generated <applicationId>.R class cannot be found
1 error
:base:compileDebugFeatureJavaWithJavac FAILED
Additional Info:
If I remove the
application project(':installed')
in the base build.gradle I can start the instant-app but with the wrong application-id (configured in the:installed
project).