Blame view

PremiereActivite/app/build.gradle 614 Bytes
4abf4602   Florian Deze   Début Interface g...
1
2
3
4
5
6
7
  apply plugin: 'com.android.application'
  
  android {
      compileSdkVersion 23
      buildToolsVersion "23.0.3"
  
      defaultConfig {
c8059613   JLo'w   Re-fonte de l'app...
8
          applicationId "com.example.app_10p5"
520cecde   JLo'w   Un petit plus, un...
9
          minSdkVersion 21
4abf4602   Florian Deze   Début Interface g...
10
11
12
13
14
15
          targetSdkVersion 23
          versionCode 1
          versionName "1.0"
      }
      buildTypes {
          release {
b885e6de   JLo'w   minify mouahahaha...
16
              minifyEnabled true
4abf4602   Florian Deze   Début Interface g...
17
18
19
20
21
22
23
24
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
  }
  
  dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      testCompile 'junit:junit:4.12'
4abf4602   Florian Deze   Début Interface g...
25
      compile 'com.android.support:design:23.2.1'
4abf4602   Florian Deze   Début Interface g...
26
  }