Skip to content

Commit e5b34ff

Browse files
committed
Add android framework files
1 parent 21edafb commit e5b34ff

33 files changed

+772
-1
lines changed

framework/android/.classpath

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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="src" path="src"/>
7+
<classpathentry kind="src" path="gen"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

framework/android/.project

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
4+
<name>
5+
__NAME__
6+
</name>
7+
8+
<comment>
9+
</comment>
10+
11+
<projects>
12+
</projects>
13+
14+
<buildSpec>
15+
16+
<buildCommand>
17+
18+
<name>
19+
com.android.ide.eclipse.adt.ResourceManagerBuilder
20+
</name>
21+
22+
<arguments>
23+
</arguments>
24+
</buildCommand>
25+
26+
<buildCommand>
27+
28+
<name>
29+
com.android.ide.eclipse.adt.PreCompilerBuilder
30+
</name>
31+
32+
<arguments>
33+
</arguments>
34+
</buildCommand>
35+
36+
<buildCommand>
37+
38+
<name>
39+
org.eclipse.jdt.core.javabuilder
40+
</name>
41+
42+
<arguments>
43+
</arguments>
44+
</buildCommand>
45+
46+
<buildCommand>
47+
48+
<name>
49+
com.android.ide.eclipse.adt.ApkBuilder
50+
</name>
51+
52+
<arguments>
53+
</arguments>
54+
</buildCommand>
55+
</buildSpec>
56+
57+
<natures>
58+
59+
<nature>
60+
com.android.ide.eclipse.adt.AndroidNature
61+
</nature>
62+
63+
<nature>
64+
org.eclipse.jdt.core.javanature
65+
</nature>
66+
</natures>
67+
68+
</projectDescription>

framework/android/AndroidManifest.xml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="__PACKAGE__"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-sdk
8+
android:minSdkVersion="17"
9+
android:targetSdkVersion="17" />
10+
11+
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
12+
<uses-permission android:name="android.permission.INTERNET"/>
13+
14+
<application
15+
android:name="com.tns.NativeScriptApplication"
16+
android:allowBackup="true"
17+
android:icon="@drawable/ic_launcher"
18+
android:label="@string/app_name"
19+
android:theme="@style/AppTheme" >
20+
<activity
21+
android:name="com.tns.NativeScriptActivity"
22+
android:label="@string/title_activity_kimera">
23+
24+
<intent-filter>
25+
<action android:name="android.intent.action.MAIN" />
26+
27+
<category android:name="android.intent.category.LAUNCHER" />
28+
</intent-filter>
29+
</activity>
30+
</application>
31+
32+
</manifest>
1.01 MB
Binary file not shown.
1 MB
Binary file not shown.
957 KB
Binary file not shown.
447 KB
Binary file not shown.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
C NativeScriptApplication
2+
C NativeScriptActivity

0 commit comments

Comments
 (0)