Blame view

PremiereActivite/app/build.gradle 667 Bytes
4abf4602   Florian Deze   Début Interface g...
1
2
3
4
  apply plugin: 'com.android.application'
  
  android {
      compileSdkVersion 23
d94e64ab   JLo'w   MaJ
5
      buildToolsVersion '23.0.3'
4abf4602   Florian Deze   Début Interface g...
6
7
  
      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'
d94e64ab   JLo'w   MaJ
25
26
      compile 'com.android.support:design:23.3.0'
      compile 'com.android.support:support-v13:23.3.0'
4abf4602   Florian Deze   Début Interface g...
27
  }