Skip to content

Commit a8b61ba

Browse files
committed
- added Android wrapper
1 parent 4744137 commit a8b61ba

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+6256
-149
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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 kind="output" path="bin/classes"/>
8+
</classpath>
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>GeeksNearby</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>
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
3+
package="me.outof" android:versionName="1.0" android:versionCode="1">
4+
5+
<uses-sdk android:minSdkVersion="10" />
6+
7+
<supports-screens
8+
android:largeScreens="true"
9+
android:normalScreens="true"
10+
android:smallScreens="true"
11+
android:xlargeScreens="true"
12+
android:resizeable="true"
13+
android:anyDensity="true"
14+
/>
15+
16+
<uses-permission android:name="android.permission.CAMERA" />
17+
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
18+
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
19+
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
20+
<uses-permission android:name="android.permission.INTERNET" />
21+
<uses-permission android:name="android.permission.READ_CONTACTS" />
22+
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
23+
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
24+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
25+
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
26+
27+
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
28+
<activity android:name=".GeeksNearbyActivity" android:label="@string/app_name"
29+
android:configChanges="orientation|keyboardHidden">
30+
<intent-filter>
31+
<action android:name="android.intent.action.MAIN" />
32+
<category android:name="android.intent.category.LAUNCHER" />
33+
</intent-filter>
34+
</activity>
35+
</application>
36+
37+
</manifest>
532 KB
Binary file not shown.
183 KB
Binary file not shown.
325 Bytes
Binary file not shown.
Binary file not shown.
310 Bytes
Binary file not shown.
405 Bytes
Binary file not shown.
364 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)