Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Android uses-sdk: Add android:targetSdkVersion="14" (to show up for tablets) | Sven Gothel | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | AndroidManifests Launcher/Test: Add Camera features and permission | Sven Gothel | 2013-08-27 | 1 | -1/+3 |
| | |||||
* | Android: Cleanup Manifest - remove commented out tags, don't require ↵ | Sven Gothel | 2012-05-04 | 1 | -9/+4 |
| | | | | touchscreen .. | ||||
* | Fix Android Launcher: Add permission Internet access (commit ↵ | Sven Gothel | 2012-05-04 | 1 | -2/+2 |
| | | | | 85ba9e60dfd1828c6f8cc327715b420e10c29ebf was broken, too late) | ||||
* | Android Launcher: Add permission Internet access | Sven Gothel | 2012-05-04 | 1 | -2/+2 |
| | |||||
* | Android Launcher: Add dummy version activity (recognized by market), remove ↵ | Sven Gothel | 2012-05-04 | 1 | -2/+14 |
| | | | | permissions: inet and write-sd | ||||
* | AndroidLauncher: Add 'MainLauncher'; ClassLoaderUtil adds list of direct ↵ | Sven Gothel | 2012-05-03 | 1 | -0/+15 |
| | | | | | | | | | | APKs to add to classpath MainLauncher is capable of launching a traditional static main method from a activity. TODO: - parametrize the APK list (junit, ..) - pass-through the activity instance to be used w/ NEWT AndroidWindow | ||||
* | Android: New ActivityLauncher (jogamp.android-launcher.apk) | Sven Gothel | 2012-03-14 | 1 | -0/+54 |
ActivityLauncher provides delegating Activities, allowing the user to: - daisy chain custom APK classes and native libraries to the classpath - name one custom activity which gets delegated to, the downstream activity Overview: [User:a1] -- (usr-data) --> [Launcher] -> [User:a2] + using [other packages..] [User APK] - The user provided APK [JogAmp APK] - JogAmp APKs [User:a1] - The initial user activity, which starts the [Launcher]. Providing data to [Launcher]: [User:a2], [User APK] Resides in [User APK] [User:a2] - The actual downstream 'real' activity, spoiled w/ full fledged ClassLoader having access to all packages as requested, ie. [User APK], .. Resides in [User APK] [Launcher] - The launcher activity. Gets called by [User:a1]. Creates a new ClassLoader, daisy chainging all requested APKs. Instantiates [User:a2] w/ new ClassLoader. Delegates all calls to [User:a2]. Resides in [JogAmp APK]. |