]>
Commit | Line | Data |
---|---|---|
bdd8f09c PT |
1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
2 | package="ro.ieval.unical" | |
3 | android:versionCode="1" | |
4 | android:versionName="1.0" > | |
5 | ||
6 | <uses-sdk | |
7 | android:minSdkVersion="8" | |
8 | android:targetSdkVersion="17" /> | |
9 | <uses-permission android:name="android.permission.INTERNET"/> | |
10 | ||
11 | <application | |
12 | android:allowBackup="true" | |
13 | android:icon="@drawable/ic_launcher" | |
14 | android:label="@string/app_name" | |
15 | android:theme="@style/AppTheme" > | |
16 | <activity android:name=".mainActivity"> | |
17 | <intent-filter> | |
18 | <action android:name="android.intent.action.MAIN"/> | |
19 | <category android:name="android.intent.category.LAUNCHER"/> | |
20 | </intent-filter> | |
21 | </activity> | |
22 | </application> | |
23 | ||
24 | </manifest> |