PageRenderTime 39ms CodeModel.GetById 29ms app.highlight 7ms RepoModel.GetById 0ms app.codeStats 0ms

/duelos_android/AndroidManifest.xml

https://bitbucket.org/jgorozco/ejemplosandroid
XML | 81 lines | 64 code | 17 blank | 0 comment | 0 complexity | c0ce52969b7abcd3d1a07cfe03a458c8 MD5 | raw file
 1<?xml version="1.0" encoding="utf-8"?>
 2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 3    package="com.moob"
 4    android:versionCode="1"
 5    android:versionName="1.0" >
 6
 7    <uses-sdk android:minSdkVersion="8" />
 8    
 9	
10    <application
11        android:icon="@drawable/ic_launcher"
12        android:label="@string/app_name" >
13        <activity
14            android:name=".SingleDuelActivity"
15            android:screenOrientation="portrait"
16            android:label="@string/app_name" >
17        </activity>
18        
19        <activity
20            android:name=".MultiDuelActivity"
21            android:screenOrientation="portrait"
22            android:label="@string/app_name" >
23        </activity>
24        
25         <activity
26            android:name=".GameClientActivity"
27            android:screenOrientation="portrait"
28            android:label="@string/app_name" >
29        </activity>
30        
31        <activity
32            android:name=".LoadingActivity"
33            android:screenOrientation="portrait"
34            android:label="@string/app_name" >
35            
36        </activity>
37        
38        <activity
39            android:name=".Ranking"
40            android:screenOrientation="portrait"
41            android:label="@string/app_name" >
42           
43        </activity>  
44         <activity
45            android:name=".LogginActivity"
46            android:screenOrientation="portrait"
47            android:label="@string/app_name" >
48            <intent-filter>
49                <action android:name="android.intent.action.MAIN" />
50                <category android:name="android.intent.category.LAUNCHER" />
51            </intent-filter>
52        </activity>
53        
54         <activity
55            android:name="com.moob.FB.FriendsList"
56            android:screenOrientation="portrait"
57            android:label="@string/app_name" >
58        </activity>
59        
60        <activity
61            android:name="com.moob.FB.Example"            
62            android:label="@string/app_name" >
63        </activity>
64        
65        <activity
66            android:name=".InitialMenuActivity"
67            android:screenOrientation="portrait"
68            
69            android:label="@string/app_name" >
70             
71            
72        </activity>
73    </application>
74    
75<uses-permission android:name="android.permission.VIBRATE"/>
76<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
77<uses-permission android:name="android.permission.INTERNET"/>    
78<uses-permission android:name="android.permission.BLUETOOTH" />
79<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
80
81</manifest>