Skip to content

Commit

Permalink
Make Gradle files beautiful again
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
divadsn committed May 22, 2018
1 parent 3c3cb81 commit c6ca65f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions app/build.gradle
Expand Up @@ -29,6 +29,7 @@ android {
keyPassword System.getenv("KEY_PASSWORD")
}
}

defaultConfig {
minSdkVersion 21
targetSdkVersion 27
Expand All @@ -53,6 +54,7 @@ android {
versionName "dev"
}
}

buildTypes {
debug {
if (System.getenv("TRAVIS") == "true") {
Expand All @@ -70,6 +72,7 @@ android {
minifyEnabled false
}
}

release {
applicationIdSuffix ".plah"
buildConfigField "boolean", "ENABLE_LAWNFEED", "true"
Expand All @@ -82,6 +85,7 @@ android {
}
}
}

lintOptions {
abortOnError false
}
Expand Down Expand Up @@ -113,6 +117,7 @@ dependencies {
implementation 'com.github.florent37:fiftyshadesof:1.0.0'
implementation 'me.jfenn:attribouter:0.0.5'
}

repositories {
mavenCentral()
}
1 change: 1 addition & 0 deletions build.gradle
Expand Up @@ -7,6 +7,7 @@ buildscript {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
Expand Down
3 changes: 2 additions & 1 deletion launcherclient/build.gradle
Expand Up @@ -5,7 +5,6 @@ android {
compileSdkVersion 27
buildToolsVersion '27.0.3'


defaultConfig {
minSdkVersion 21
targetSdkVersion 27
Expand All @@ -15,6 +14,7 @@ android {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
release {
minifyEnabled false
Expand All @@ -27,6 +27,7 @@ dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}

repositories {
mavenCentral()
}
3 changes: 3 additions & 0 deletions lawnfeed/build.gradle
Expand Up @@ -12,6 +12,7 @@ android {
keyPassword System.getenv("KEY_PASSWORD")
}
}

defaultConfig {
applicationId "ch.deletescape.lawnchair.lawnfeed"
minSdkVersion 21
Expand All @@ -28,6 +29,7 @@ android {
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}

buildTypes {
debug {
minifyEnabled false
Expand All @@ -36,6 +38,7 @@ android {
signingConfig signingConfigs.travis
}
}

release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
Expand Down

0 comments on commit c6ca65f

Please sign in to comment.