diff options
author | Parménides GV <parmegv@sdf.org> | 2015-06-10 19:45:06 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2015-06-10 19:45:06 +0200 |
commit | 569defe3213fc4f9d6a61a98e35c794b2fe0d311 (patch) | |
tree | 1e9b01cbd5878bc5d3a905f6239916dc0185ccb9 /app/build.gradle | |
parent | 0e8fccf9ba9e509f1aaa65e58bc2cfd4754f90f4 (diff) | |
parent | 46638f7101e752be76bcafe061f4b5e68ee88088 (diff) |
Merge branch 'develop' into release-0.9.4
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/app/build.gradle b/app/build.gradle index 0f73442c..994f8b7b 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,5 +1,4 @@ -apply plugin: 'android' -import org.ajoberstar.grgit.Grgit +apply plugin: 'com.android.application' android { compileSdkVersion 21 @@ -14,6 +13,15 @@ android { } } + productFlavors { + production { + + } + insecure { + + } + } + buildTypes { release { //runProguard true @@ -22,9 +30,9 @@ android { } } - lintOptions { - abortOnError false - } + lintOptions { + abortOnError false + } sourceSets { main { |