Samples
Samples
LunarLander
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/LunarLander
-
com.example.android.lunarlander
-
References
- android
- Source Files
-
Other Files
- res\values\strings.android-xml
- Properties\AndroidManifest.android-xml
- res\layout\lunar_layout.layout-xml
- NOTICE
- Readme.txt
- res\drawable-land\earthrise.png
- res\drawable-port\earthrise.png
- res\drawable\app_lunar_lander.png
- res\drawable\lander_crashed.png
- res\drawable\lander_firing.png
- res\drawable\lander_plain.png
-
References
Properties\AndroidManifest.android-xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.lunarlander"
android:versionCode="1"
android:versionName="1.0.0">
<!-- the android:debuggable="true" attribute is overwritten by the compiler when the debug info option is set -->
<application
android:label="@string/app_name"
android:icon="@drawable/app_lunar_lander">
<activity android:name=".LunarLander"
android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
</manifest>
