shlist

share and manage lists between multiple people
Log | Files | Refs

build.gradle (605B)


      1 apply plugin: 'com.android.application'
      2 
      3 android {
      4     compileSdkVersion 22
      5     buildToolsVersion '25.0.0'
      6 
      7     defaultConfig {
      8         applicationId "drsocto.shlist"
      9         minSdkVersion 15
     10         targetSdkVersion 22
     11         versionCode 1
     12         versionName "1.0"
     13     }
     14     buildTypes {
     15         release {
     16             minifyEnabled false
     17             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
     18         }
     19     }
     20 }
     21 
     22 dependencies {
     23     compile fileTree(dir: 'libs', include: ['*.jar'])
     24     compile 'com.android.support:appcompat-v7:22.1.1'
     25 }