Advertisement
Guest User

Untitled

a guest
Dec 5th, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4.     compileSdkVersion 23
  5.     buildToolsVersion '23.0.2'
  6.     defaultConfig {
  7.         applicationId "comjaktenstid.httpsvk.basicviews"
  8.         minSdkVersion 15
  9.         targetSdkVersion 15
  10.         versionCode 1
  11.         versionName "1.0"
  12.     }
  13.     buildTypes {
  14.         release {
  15.             minifyEnabled false
  16.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17.         }
  18.     }
  19.     productFlavors {
  20.     }
  21. }
  22.  
  23. dependencies {
  24.     compile 'com.android.support:appcompat-v7:23.+'
  25.     compile fileTree(include: ['*.jar'], dir: 'libs')
  26.     testCompile 'junit:junit:4.12'
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement