-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
39 lines (31 loc) · 1.45 KB
/
AndroidManifest.xml
File metadata and controls
39 lines (31 loc) · 1.45 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.treegger.android.imonair"
android:versionCode="8"
android:versionName="1.0.7">
<application
android:icon="@drawable/logo_48x48"
android:label="@string/app_name"
android:debuggable="true"
android:name=".activity.IMonAirApp"
android:theme="@style/IMonAirTheme"
>
<activity android:name=".activity.RostersView" android:label="@string/app_name" android:launchMode="singleInstance">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".activity.AccountList" ></activity>
<activity android:name=".activity.AccountForm" ></activity>
<activity android:name=".activity.Chat"></activity>
<service android:name=".service.TreeggerService" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="false" />
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>
</manifest>