-
Notifications
You must be signed in to change notification settings - Fork 331
/
AndroidManifest.xml
123 lines (115 loc) · 9.13 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.andengine.examples"
android:versionCode="46"
android:versionName="1.4.6">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<uses-feature android:name="android.hardware.touchscreen" android:required="false"/>
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.BLUETOOTH"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".launcher.ExampleLauncher" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity android:name=".util.BluetoothListDevicesActivity" android:configChanges="orientation" android:theme="@android:style/Theme.Dialog"/>
<activity android:name=".AnalogOnScreenControlExample" android:configChanges="orientation"/>
<activity android:name=".AnalogOnScreenControlsExample" android:configChanges="orientation"/>
<activity android:name=".AnimatedSpritesExample" android:configChanges="orientation"/>
<activity android:name=".AugmentedRealityExample" android:configChanges="orientation"/>
<activity android:name=".AugmentedRealityHorizonExample" android:configChanges="orientation"/>
<activity android:name=".AutoParallaxBackgroundExample" android:configChanges="orientation"/>
<activity android:name=".BitmapFontExample" android:configChanges="orientation"/>
<activity android:name=".BoundCameraExample" android:configChanges="orientation"/>
<activity android:name=".CanvasTextureCompositingExample" android:configChanges="orientation"/>
<activity android:name=".CardinalSplineMoveModifierExample" android:configChanges="orientation"/>
<activity android:name=".ChangeableTextExample" android:configChanges="orientation"/>
<activity android:name=".CollisionDetectionExample" android:configChanges="orientation"/>
<activity android:name=".ColorKeyTextureSourceDecoratorExample" android:configChanges="orientation"/>
<activity android:name=".CoordinateConversionExample" android:configChanges="orientation"/>
<activity android:name=".CustomFontExample" android:configChanges="orientation"/>
<activity android:name=".DigitalOnScreenControlExample" android:configChanges="orientation"/>
<activity android:name=".EaseFunctionExample" android:configChanges="orientation"/>
<activity android:name=".EntityModifierExample" android:configChanges="orientation"/>
<activity android:name=".EntityModifierIrregularExample" android:configChanges="orientation"/>
<activity android:name=".ETC1TextureExample" android:configChanges="orientation"/>
<activity android:name=".HullAlgorithmExample" android:configChanges="orientation"/>
<activity android:name=".ImageFormatsExample" android:configChanges="orientation"/>
<activity android:name=".LevelLoaderExample" android:configChanges="orientation"/>
<activity android:name=".LineExample" android:configChanges="orientation"/>
<activity android:name=".LoadTextureExample" android:configChanges="orientation"/>
<activity android:name=".MenuExample" android:configChanges="orientation"/>
<activity android:name=".ModPlayerExample" android:configChanges="orientation"/>
<activity android:name=".MotionStreakExample" android:configChanges="orientation"/>
<activity android:name=".MovingBallExample" android:configChanges="orientation"/>
<activity android:name=".MultiplayerExample" android:configChanges="orientation"/>
<activity android:name=".MultiplayerServerDiscoveryExample" android:configChanges="orientation"/>
<activity android:name=".MultiplayerBluetoothExample" android:configChanges="orientation"/>
<activity android:name=".MultiTouchExample" android:configChanges="orientation"/>
<activity android:name=".MusicExample" android:configChanges="orientation"/>
<activity android:name=".ParticleSystemCoolExample" android:configChanges="orientation"/>
<activity android:name=".ParticleSystemNexusExample" android:configChanges="orientation"/>
<activity android:name=".ParticleSystemSimpleExample" android:configChanges="orientation"/>
<activity android:name=".PathModifierExample" android:configChanges="orientation"/>
<activity android:name=".PauseExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsCollisionFilteringExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsFixedStepExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsJumpExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsRemoveExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsRevoluteJointExample" android:configChanges="orientation"/>
<activity android:name=".PhysicsMouseJointExample" android:configChanges="orientation"/>
<activity android:name=".PinchZoomExample" android:configChanges="orientation"/>
<activity android:name=".PVRCCZTextureExample" android:configChanges="orientation"/>
<activity android:name=".PVRGZTextureExample" android:configChanges="orientation"/>
<activity android:name=".PVRTextureExample" android:configChanges="orientation"/>
<activity android:name=".RadialBlurExample" android:configChanges="orientation"/>
<activity android:name=".RectangleExample" android:configChanges="orientation"/>
<activity android:name=".RepeatingSpriteBackgroundExample" android:configChanges="orientation"/>
<activity android:name=".Rotation3DExample" android:configChanges="orientation"/>
<activity android:name=".RunnablePoolUpdateHandlerExample" android:configChanges="orientation"/>
<activity android:name=".ScreenCaptureExample" android:configChanges="orientation"/>
<activity android:name=".SoundExample" android:configChanges="orientation"/>
<activity android:name=".SplitScreenExample" android:configChanges="orientation"/>
<activity android:name=".SpriteBatchExample" android:configChanges="orientation"/>
<activity android:name=".SpriteExample" android:configChanges="orientation"/>
<activity android:name=".SpriteRemoveExample" android:configChanges="orientation"/>
<activity android:name=".StrokeFontExample" android:configChanges="orientation"/>
<activity android:name=".SubMenuExample" android:configChanges="orientation"/>
<activity android:name=".SVGTextureRegionExample" android:configChanges="orientation"/>
<activity android:name=".TextExample" android:configChanges="orientation"/>
<activity android:name=".TextBreakExample" android:configChanges="orientation"/>
<activity android:name=".TextMenuExample" android:configChanges="orientation"/>
<activity android:name=".TextureOptionsExample" android:configChanges="orientation"/>
<activity android:name=".TexturePackerExample" android:configChanges="orientation"/>
<activity android:name=".TMXTiledMapExample" android:configChanges="orientation"/>
<activity android:name=".TickerTextExample" android:configChanges="orientation"/>
<activity android:name=".TouchDragExample" android:configChanges="orientation"/>
<activity android:name=".UnloadResourcesExample" android:configChanges="orientation"/>
<activity android:name=".UpdateTextureExample" android:configChanges="orientation"/>
<activity android:name=".XMLLayoutExample" android:configChanges="orientation"/>
<activity android:name=".ZoomExample" android:configChanges="orientation"/>
<activity android:name=".benchmark.AnimationBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.AttachDetachBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.ParticleSystemBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.PhysicsBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.EntityModifierBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.SpriteBenchmark" android:configChanges="orientation"/>
<activity android:name=".benchmark.TickerTextBenchmark" android:configChanges="orientation"/>
<activity android:name=".game.pong.PongGameActivity" android:configChanges="orientation"/>
<activity android:name=".game.snake.SnakeGameActivity" android:configChanges="orientation"/>
<activity android:name=".game.racer.RacerGameActivity" android:configChanges="orientation"/>
<activity android:name=".app.cityradar.CityRadarActivity" android:configChanges="orientation"/>
</application>
</manifest>