AndroidManifest.xml:android
<?xml version="1.0" encoding="utf-8"?>app
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.my.app" android:versionCode="1" android:versionName="1.0" >gradle
app/build.gradle: apply plugin: 'com.android.application'ui
android { compileSdkVersion 19 buildToolsVersion "19.1"this
defaultConfig { applicationId "com.example.my.app" minSdkVersion 15 targetSdkVersion 19 versionCode 1 versionName "1.0" } ...
(In Android Studio you can configure all of this graphically as well in the Project Structure dialog.)code