Samples
Samples
AccelerometerPlay
Language: Oxygene, Platform: Cooper, Category: Android
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Cooper/Android/AccelerometerPlay
-
com.example.android.AccelerometerPlay
-
References
- android
- Source Files
- Other Files
-
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.accelerometerplay"
android:versionCode="1"
android:versionName="1.0"
>
<application
android:label="@string/app_name"
android:icon="@drawable/icon">
<activity android:label="@string/app_name" android:name=".AccelerometerPlayActivity"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-feature android:name="android.hardware.sensor.accelerometer" android:required="true" />
</manifest>
