Commit fa8ad53288134e48a93b1c90ab2b73bcd6e08014
1 parent
4954a645
Updated project
Showing
3 changed files
with
61 additions
and
19 deletions
.classpath
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<classpath> | ||
3 | - <classpathentry kind="src" path="src"/> | ||
4 | - <classpathentry kind="src" path="gen"/> | ||
5 | - <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
6 | - <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
7 | - <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
8 | - <classpathentry kind="lib" path="/VitamioBundle/libs/vitamio.jar"/> | ||
9 | - <classpathentry kind="output" path="bin/classes"/> | ||
10 | -</classpath> | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | +<classpath> | ||
3 | + <classpathentry kind="src" path="src"/> | ||
4 | + <classpathentry kind="src" path="gen"/> | ||
5 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
6 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
7 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
8 | + <classpathentry kind="lib" path="/VitamioBundle/libs/vitamio.jar"/> | ||
9 | + <classpathentry kind="output" path="bin/classes"/> | ||
10 | +</classpath> |
VitamioBundle/.classpath
1 | -<?xml version="1.0" encoding="UTF-8"?> | ||
2 | -<classpath> | ||
3 | - <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
4 | - <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
5 | - <classpathentry kind="src" path="src"/> | ||
6 | - <classpathentry kind="src" path="gen"/> | ||
7 | - <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
8 | - <classpathentry kind="output" path="bin/classes"/> | ||
9 | -</classpath> | 1 | +<?xml version="1.0" encoding="UTF-8"?> |
2 | +<classpath> | ||
3 | + <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
4 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
5 | + <classpathentry kind="src" path="src"/> | ||
6 | + <classpathentry kind="src" path="gen"/> | ||
7 | + <classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/> | ||
8 | + <classpathentry kind="output" path="bin/classes"/> | ||
9 | +</classpath> |
bin/AndroidManifest.xml
0 → 100644
1 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
2 | + package="com.upc.pbe.upcnews" | ||
3 | + android:versionCode="1" | ||
4 | + android:versionName="1.0" > | ||
5 | + | ||
6 | + <uses-sdk | ||
7 | + android:minSdkVersion="9" | ||
8 | + android:targetSdkVersion="10" /> | ||
9 | + | ||
10 | + <uses-permission android:name="android.permission.INTERNET" /> | ||
11 | + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
12 | + | ||
13 | + <application | ||
14 | + android:name=".UpcApp" | ||
15 | + android:icon="@drawable/ic_launcher" | ||
16 | + android:label="@string/app_name" | ||
17 | + android:theme="@style/AppTheme" > | ||
18 | + <activity | ||
19 | + android:name=".MainActivity" | ||
20 | + android:label="@string/title_activity_main" > | ||
21 | + <intent-filter> | ||
22 | + <action android:name="android.intent.action.MAIN" /> | ||
23 | + | ||
24 | + <category android:name="android.intent.category.LAUNCHER" /> | ||
25 | + </intent-filter> | ||
26 | + </activity> | ||
27 | + <activity android:name=".Prefs" > | ||
28 | + </activity> | ||
29 | + <activity android:name=".Help" android:configChanges="orientation"> | ||
30 | + </activity> | ||
31 | + <activity android:name=".Directoris" android:configChanges="orientation"> | ||
32 | + </activity> | ||
33 | + <activity android:name=".VideoActivity" android:theme="@style/FullScreen" android:configChanges="orientation"> | ||
34 | + </activity> | ||
35 | + <activity | ||
36 | + android:name="io.vov.vitamio.activity.InitActivity" | ||
37 | + android:launchMode="singleTop" | ||
38 | + android:theme="@android:style/Theme.NoTitleBar" | ||
39 | + android:windowSoftInputMode="stateAlwaysHidden" /> | ||
40 | + </application> | ||
41 | + | ||
42 | +</manifest> | ||
0 | \ No newline at end of file | 43 | \ No newline at end of file |