diff options
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 { |