Android Android- ( , ). API . , startActivity
. , , Instant App.
( ), .
, Android Instant Apps Android 5.0 . , App Links ( , Instant Apps ) 6.0
, . ( Google Play Services Instant Apps Android 8.0) , , Instant App, .
, API (, startActivity
< 5.0)
, 100% , ( , "chooser" ) , (, , ). , , , .
interface Navigation {
void startActivityFromModuleA();
void startActivityFromModuleB();
…
}
class InstallableAppNavigation implements Navigation {
public void startActivityFromModuleA() {
Intent intent = new Intent(context, ActivityFromModuleA.class);
context.startActivity(intent);
}
…
}
class InstantAppNavigation implements Navigation {
public void startActivityFromModuleA() {
Intent intent = new Intent(Intent.ACTION_VIEW,
Uri.parse("https://your.app.com/moduleA/smth"));
context.startActivity(intent);
}
…
}