Flare-k

change the DIR

Showing 1000 changed files with 220 additions and 0 deletions

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

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 exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
6 + <classpathentry kind="lib" path="libs/libGoogleAnalyticsServices.jar"/>
7 + <classpathentry kind="src" path="src"/>
8 + <classpathentry kind="src" path="gen"/>
9 + <classpathentry kind="output" path="bin/classes"/>
10 +</classpath>
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<projectDescription>
3 + <name>netntv_Player4UX</name>
4 + <comment></comment>
5 + <projects>
6 + </projects>
7 + <buildSpec>
8 + <buildCommand>
9 + <name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10 + <arguments>
11 + </arguments>
12 + </buildCommand>
13 + <buildCommand>
14 + <name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15 + <arguments>
16 + </arguments>
17 + </buildCommand>
18 + <buildCommand>
19 + <name>org.eclipse.jdt.core.javabuilder</name>
20 + <arguments>
21 + </arguments>
22 + </buildCommand>
23 + <buildCommand>
24 + <name>com.android.ide.eclipse.adt.ApkBuilder</name>
25 + <arguments>
26 + </arguments>
27 + </buildCommand>
28 + </buildSpec>
29 + <natures>
30 + <nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31 + <nature>org.eclipse.jdt.core.javanature</nature>
32 + </natures>
33 +</projectDescription>
1 +eclipse.preferences.version=1
2 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
3 +org.eclipse.jdt.core.compiler.compliance=1.6
4 +org.eclipse.jdt.core.compiler.source=1.6
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +**
5 +** Copyright 2009, The Android Open Source Project
6 +**
7 +** Licensed under the Apache License, Version 2.0 (the "License");
8 +** you may not use this file except in compliance with the License.
9 +** You may obtain a copy of the License at
10 +**
11 +** http://www.apache.org/licenses/LICENSE-2.0
12 +**
13 +** Unless required by applicable law or agreed to in writing, software
14 +** distributed under the License is distributed on an "AS IS" BASIS,
15 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 +** See the License for the specific language governing permissions and
17 +** limitations under the License.
18 +*/
19 +
20 +
21 +
22 +-->
23 +
24 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
25 + xmlns:tools="http://schemas.android.com/tools"
26 + package="kr.co.netntv.viewer"
27 + android:installLocation="auto"
28 + android:versionCode="1003"
29 + android:versionName="1.0.0.3">
30 +
31 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
32 +
33 + <application
34 + tools:replace="android:icon, android:label"
35 + android:name="kr.co.netntv.viewer.ViewerApplication"
36 + android:icon="@drawable/icon"
37 + android:label="@string/application_label" >
38 + <activity
39 + android:name="kr.co.netntv.viewer.Player4UxActivity"
40 + android:configChanges="orientation|keyboardHidden"
41 + android:launchMode="singleTop"
42 + android:label="@string/stand_alone"
43 + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
44 + <!-- <intent-filter>-->
45 + <!-- <action android:name="android.intent.action.MAIN" />-->
46 +
47 + <!-- <category android:name="android.intent.category.LAUNCHER" />-->
48 + <!-- </intent-filter>-->
49 + </activity>
50 + <activity
51 + android:name="kr.co.netntv.viewer.HomeActivity"
52 + android:label="@string/viewer"
53 + android:screenOrientation="portrait"
54 + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
55 + <intent-filter>
56 + <action android:name="android.intent.action.MAIN" />
57 +
58 + <category android:name="android.intent.category.LAUNCHER" />
59 + </intent-filter>
60 + </activity>
61 + <activity
62 + android:name="kr.co.netntv.viewer.ShareActivity"
63 + android:screenOrientation="portrait"
64 + android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
65 + </activity>
66 + </application>
67 +
68 + <uses-feature android:glEsVersion="0x00020000" />
69 +
70 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
71 +
72 + <uses-permission android:name="android.permission.INTERNET" />
73 +
74 + <uses-permission android:name="android.permission.VIBRATE"/>
75 +
76 + <uses-permission android:name="android.permission.CAMERA" />
77 + <uses-feature android:name="android.hardware.camera" android:required="false"/>
78 + <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
79 + <uses-feature android:name="android.hardware.camera.flash" android:required="false" />
80 + <uses-feature android:name="android.hardware.camera.front" android:required="false" />
81 +
82 + <uses-sdk android:minSdkVersion="16"
83 + android:targetSdkVersion="26" />
84 +
85 +</manifest>
...\ No newline at end of file ...\ No newline at end of file
1 +<?xml version="1.0" encoding="utf-8"?>
2 +<!--
3 +/*
4 +**
5 +** Copyright 2009, The Android Open Source Project
6 +**
7 +** Licensed under the Apache License, Version 2.0 (the "License");
8 +** you may not use this file except in compliance with the License.
9 +** You may obtain a copy of the License at
10 +**
11 +** http://www.apache.org/licenses/LICENSE-2.0
12 +**
13 +** Unless required by applicable law or agreed to in writing, software
14 +** distributed under the License is distributed on an "AS IS" BASIS,
15 +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 +** See the License for the specific language governing permissions and
17 +** limitations under the License.
18 +*/
19 +
20 +
21 +
22 +-->
23 +
24 +<manifest xmlns:android="http://schemas.android.com/apk/res/android"
25 + xmlns:tools="http://schemas.android.com/tools"
26 + package="kr.co.netntv.viewer"
27 + android:installLocation="auto"
28 + android:versionCode="1003"
29 + android:versionName="1.0.0.3">
30 +
31 + <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
32 +
33 + <application
34 + tools:replace="android:icon, android:label"
35 + android:name="kr.co.netntv.viewer.ViewerApplication"
36 + android:icon="@drawable/icon"
37 + android:label="@string/application_label" >
38 + <activity
39 + android:name="kr.co.netntv.viewer.Player4UxActivity"
40 + android:configChanges="orientation|keyboardHidden"
41 + android:launchMode="singleTop"
42 + android:label="@string/stand_alone"
43 + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
44 + <!-- <intent-filter>-->
45 + <!-- <action android:name="android.intent.action.MAIN" />-->
46 +
47 + <!-- <category android:name="android.intent.category.LAUNCHER" />-->
48 + <!-- </intent-filter>-->
49 + </activity>
50 + <activity
51 + android:name="kr.co.netntv.viewer.HomeActivity"
52 + android:label="@string/viewer"
53 + android:screenOrientation="portrait"
54 + android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
55 + <intent-filter>
56 + <action android:name="android.intent.action.MAIN" />
57 +
58 + <category android:name="android.intent.category.LAUNCHER" />
59 + </intent-filter>
60 + </activity>
61 + <activity
62 + android:name="kr.co.netntv.viewer.ShareActivity"
63 + android:screenOrientation="portrait"
64 + android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" >
65 + </activity>
66 + </application>
67 +
68 + <uses-feature android:glEsVersion="0x00020000" />
69 +
70 + <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
71 +
72 + <uses-permission android:name="android.permission.INTERNET" />
73 +
74 + <uses-permission android:name="android.permission.VIBRATE"/>
75 +
76 + <uses-permission android:name="android.permission.CAMERA" />
77 + <uses-feature android:name="android.hardware.camera" android:required="false"/>
78 + <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
79 + <uses-feature android:name="android.hardware.camera.flash" android:required="false" />
80 + <uses-feature android:name="android.hardware.camera.front" android:required="false" />
81 +
82 + <uses-sdk android:minSdkVersion="16"
83 + android:targetSdkVersion="26" />
84 +
85 +</manifest>
...\ No newline at end of file ...\ No newline at end of file
This diff is collapsed. Click to expand it.
1 +# cache for current jar dependency. DO NOT EDIT.
2 +# format is <lastModified> <length> <SHA-1> <path>
3 +# Encoding is UTF-8
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.
This diff is collapsed. Click to expand it.