Created
July 31, 2012 20:17
-
-
Save Amokrane/3220116 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.xxx" | |
android:installLocation="auto" | |
android:versionCode="30" | |
android:versionName="1.0" > | |
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="15" /> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<!-- Permission to write on the sdcard (for caching)--> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<!-- Permission to use GPS/Network positionning --> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | |
<!-- Permission to test the state of the network --> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | |
<!-- Invitation des contacts --> | |
<uses-permission android:name="android.permission.READ_CONTACTS" /> | |
<supports-screens | |
android:largeScreens="true" | |
android:normalScreens="true" | |
android:xlargeScreens="true" > | |
</supports-screens> | |
<application | |
android:name=".application.xxx" | |
android:icon="@drawable/ic_launcher" | |
android:label="@string/app_name" | |
android:theme="@android:style/Theme.NoTitleBar"> | |
<!-- To use google maps --> | |
<uses-library android:name="com.google.android.maps" /> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment