Skip to content

Instantly share code, notes, and snippets.

@jfversluis
Created January 8, 2018 10:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jfversluis/819bab0d133323109c704297279910ba to your computer and use it in GitHub Desktop.
Save jfversluis/819bab0d133323109c704297279910ba to your computer and use it in GitHub Desktop.
A sample Android manifest file
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="101" android:versionName="1.0.1" package="com.my.app.dev" android:installLocation="auto">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="25"/>
<!-- Permissions or other stuff could be here -->
<application android:label="My App Dev" android:icon="@drawable/IconDev">
<!-- Google Maps API key or other stuff could be here -->
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment