Blame view

PremiereActivite/app/build.gradle 670 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
9
          applicationId "com.example.app_10p5"
          minSdkVersion 20
4abf4602   Florian Deze   Début Interface g...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
          targetSdkVersion 23
          versionCode 1
          versionName "1.0"
      }
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
  }
  
  dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      testCompile 'junit:junit:4.12'
      compile 'com.android.support:appcompat-v7:23.2.1'
      compile 'com.android.support:design:23.2.1'
c8059613   JLo'w   Re-fonte de l'app...
27
  
4abf4602   Florian Deze   Début Interface g...
28
  }