Skip to content

Commit

Permalink
added map app
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry committed Jul 11, 2011
1 parent c7d2617 commit 55abceb
Show file tree
Hide file tree
Showing 28 changed files with 1,229 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.settings/
target/
bin/
.classpath
.project
20 changes: 20 additions & 0 deletions AndroidApp/HelloMapView/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.barryku.android.tryit"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloMapViewActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps" />
</application>

<uses-permission android:name="android.permission.INTERNET" />
</manifest>
1 change: 1 addition & 0 deletions AndroidApp/HelloMapView/assets/Ramen_in_Bay_Area.json

Large diffs are not rendered by default.

Loading

0 comments on commit 55abceb

Please sign in to comment.