28package com.jogamp.opengl.demos.android;
30import java.util.Arrays;
33import com.jogamp.opengl.demos.android.LauncherUtil.BaseActivityLauncher;
34import com.jogamp.opengl.demos.android.LauncherUtil.OrderedProperties;
38 static String demo =
"com.jogamp.opengl.test.android.MovieCubeActivity0a";
39 static String[] sys_pkgs =
new String[] {
"com.jogamp.common",
"com.jogamp.opengl" };
40 static String[] usr_pkgs =
new String[] {
"com.jogamp.opengl.test" };
60 props.
setProperty(
"jogl.debug.GLMediaPlayer",
"true");
80 return Arrays.asList(sys_pkgs);
85 return Arrays.asList(usr_pkgs);
final OrderedProperties getProperties()
Returns the properties, which are being propagated to the target activity.
final void setProperty(final String key, final String value)
Helper class to parse Uri's and programmatically add package names and properties to create an Uri or...
void init()
Custom initialization hook which can be overriden to setup data, e.g.
List< String > getSysPackages()
Return a list of required system packages w/ native libraries, may return null or a zero sized list.
List< String > getUsrPackages()
Must return a list of required user packages, at least one containing the activity.
String getActivityName()
Must return the downstream Activity class name.