Skip to content

Commit d46c3f8

Browse files
committed
Formatting
1 parent 443b81e commit d46c3f8

File tree

3 files changed

+42
-42
lines changed

3 files changed

+42
-42
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
repositories {
5-
jcenter()
6-
}
7-
dependencies {
8-
classpath 'com.android.tools.build:gradle:1.0.0'
4+
repositories {
5+
jcenter()
6+
}
7+
dependencies {
8+
classpath 'com.android.tools.build:gradle:1.0.0'
99

10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
12-
}
10+
// NOTE: Do not place your application dependencies here; they belong
11+
// in the individual module build.gradle files
12+
}
1313
}
1414

1515
allprojects {
16-
repositories {
17-
jcenter()
18-
}
16+
repositories {
17+
jcenter()
18+
}
1919
}

library/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 19
5-
buildToolsVersion "21.1.2"
4+
compileSdkVersion 19
5+
buildToolsVersion "21.1.2"
66

7-
defaultConfig {
8-
minSdkVersion 14
9-
targetSdkVersion 19
10-
versionName project.VERSION_NAME
11-
versionCode Integer.parseInt(project.VERSION_CODE)
12-
consumerProguardFiles 'consumer-proguard-rules.pro'
13-
}
14-
buildTypes {
15-
release {
16-
minifyEnabled false
17-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
18-
}
7+
defaultConfig {
8+
minSdkVersion 14
9+
targetSdkVersion 19
10+
versionName project.VERSION_NAME
11+
versionCode Integer.parseInt(project.VERSION_CODE)
12+
consumerProguardFiles 'consumer-proguard-rules.pro'
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1918
}
19+
}
2020
}
2121

2222
dependencies {
23-
compile 'com.android.support:support-annotations:19.1.0'
23+
compile 'com.android.support:support-annotations:19.1.0'
2424
}
2525

2626
apply from: './gradle-mvn-push.gradle'

sample/build.gradle

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 19
5-
buildToolsVersion "21.1.2"
4+
compileSdkVersion 19
5+
buildToolsVersion "21.1.2"
66

7-
defaultConfig {
8-
applicationId "com.getbase.floatingactionbutton.sample"
9-
minSdkVersion 14
10-
targetSdkVersion 19
11-
versionCode 1
12-
versionName "1.0"
13-
}
14-
buildTypes {
15-
release {
16-
minifyEnabled true
17-
signingConfig signingConfigs.debug
18-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
19-
}
7+
defaultConfig {
8+
applicationId "com.getbase.floatingactionbutton.sample"
9+
minSdkVersion 14
10+
targetSdkVersion 19
11+
versionCode 1
12+
versionName "1.0"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled true
17+
signingConfig signingConfigs.debug
18+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2019
}
20+
}
2121
}
2222

2323
dependencies {
24-
compile project(':library')
24+
compile project(':library')
2525
}

0 commit comments

Comments
 (0)