Blame view

app/build.gradle 1.15 KB
dd839264   badetitou   All done
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
  apply plugin: 'com.android.application'
  
  android {
      compileSdkVersion 24
      buildToolsVersion "24.0.2"
      defaultConfig {
          applicationId "net.plil.clubinfo.etunicorn"
          minSdkVersion 21
          targetSdkVersion 24
          versionCode 1
          versionName "1.0"
          testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      }
      buildTypes {
          release {
              minifyEnabled false
              proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
          }
      }
  }
  
  dependencies {
      compile fileTree(dir: 'libs', include: ['*.jar'])
      androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
          exclude group: 'com.android.support', module: 'support-annotations'
      })
      compile 'com.android.support:appcompat-v7:24.2.1'
      compile 'com.android.support:design:24.2.1'
      compile 'com.android.volley:volley:1.0.0'
      compile 'com.google.code.gson:gson:2.4'
      compile 'com.android.support:support-v4:24.2.1'
d6367fe9   badetitou   Ajout liste
32
      compile 'com.android.support:recyclerview-v7:24.2.1'
d6367fe9   badetitou   Ajout liste
33
      compile 'com.android.support:gridlayout-v7:24.2.1'
73b70b1e   badetitou   Ajout de Consomation
34
      testCompile 'junit:junit:4.12'
dd839264   badetitou   All done
35
  }