Forgot to move the manifest to the branch

This commit is contained in:
Joe Bowser 2008-10-16 13:23:10 -07:00
parent 4ce3c33381
commit c42a0ae5e2
2 changed files with 9 additions and 1 deletions

View File

@ -3,6 +3,13 @@
package="com.android.droidgap" package="com.android.droidgap"
android:versionCode="1" android:versionCode="1"
android:versionName="1.0.0"> android:versionName="1.0.0">
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:icon="@drawable/icon" android:label="@string/app_name"> <application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".DroidGap" <activity android:name=".DroidGap"
android:label="@string/app_name"> android:label="@string/app_name">
@ -12,4 +19,5 @@
</intent-filter> </intent-filter>
</activity> </activity>
</application> </application>
</manifest> </manifest>

View File

@ -29,7 +29,7 @@ public class DroidGap extends Activity {
* we can use HTML with both local and remote applications, but it means that we have to open the local file * we can use HTML with both local and remote applications, but it means that we have to open the local file
*/ */
appView.loadUrl("http://infil00p.org/gap/"); appView.loadUrl("http://www.infil00p.org/gap/");
} }