Skip to content

Commit 1eea327

Browse files
committed
Normalizing indent spacing with the rest of the project
1 parent 80d459b commit 1eea327

File tree

3 files changed

+44
-44
lines changed

3 files changed

+44
-44
lines changed

build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
buildscript {
2-
repositories {
3-
mavenCentral()
4-
}
5-
dependencies {
6-
classpath 'com.android.tools.build:gradle:1.2.3'
7-
}
2+
repositories {
3+
mavenCentral()
4+
}
5+
dependencies {
6+
classpath 'com.android.tools.build:gradle:1.2.3'
7+
}
88
}
99

1010
ext {
11-
minSdkVersion = 15
12-
compileSdkVersion = 22
13-
targetSdkVersion = compileSdkVersion
14-
buildToolsVersion = '22.0.1'
15-
sourceCompatibility = JavaVersion.VERSION_1_7
11+
minSdkVersion = 15
12+
compileSdkVersion = 22
13+
targetSdkVersion = compileSdkVersion
14+
buildToolsVersion = '22.0.1'
15+
sourceCompatibility = JavaVersion.VERSION_1_7
1616
}
1717

1818
apply plugin: 'android-reporting'

rxandroid/build.gradle

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

33
android {
4-
compileSdkVersion rootProject.ext.compileSdkVersion
5-
buildToolsVersion rootProject.ext.buildToolsVersion
4+
compileSdkVersion rootProject.ext.compileSdkVersion
5+
buildToolsVersion rootProject.ext.buildToolsVersion
66

7-
defaultConfig {
8-
minSdkVersion rootProject.ext.minSdkVersion
9-
targetSdkVersion rootProject.ext.targetSdkVersion
10-
}
7+
defaultConfig {
8+
minSdkVersion rootProject.ext.minSdkVersion
9+
targetSdkVersion rootProject.ext.targetSdkVersion
10+
}
1111

12-
compileOptions {
13-
sourceCompatibility rootProject.ext.sourceCompatibility
14-
targetCompatibility rootProject.ext.sourceCompatibility
15-
}
12+
compileOptions {
13+
sourceCompatibility rootProject.ext.sourceCompatibility
14+
targetCompatibility rootProject.ext.sourceCompatibility
15+
}
1616
}
1717

1818
repositories {
19-
mavenCentral()
19+
mavenCentral()
2020
}
2121

2222
dependencies {
23-
compile 'io.reactivex:rxjava:1.0.12'
23+
compile 'io.reactivex:rxjava:1.0.12'
2424

25-
testCompile 'junit:junit:4.12'
26-
testCompile 'org.mockito:mockito-core:1.10.19'
27-
testCompile 'org.robolectric:robolectric:2.4'
25+
testCompile 'junit:junit:4.12'
26+
testCompile 'org.mockito:mockito-core:1.10.19'
27+
testCompile 'org.robolectric:robolectric:2.4'
2828
}

sample-app/build.gradle

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

33
android {
4-
compileSdkVersion rootProject.ext.compileSdkVersion
5-
buildToolsVersion rootProject.ext.buildToolsVersion
4+
compileSdkVersion rootProject.ext.compileSdkVersion
5+
buildToolsVersion rootProject.ext.buildToolsVersion
66

7-
defaultConfig {
8-
minSdkVersion rootProject.ext.minSdkVersion
9-
targetSdkVersion rootProject.ext.targetSdkVersion
10-
versionCode 1
11-
versionName '1.0'
12-
}
7+
defaultConfig {
8+
minSdkVersion rootProject.ext.minSdkVersion
9+
targetSdkVersion rootProject.ext.targetSdkVersion
10+
versionCode 1
11+
versionName '1.0'
12+
}
1313

14-
lintOptions {
15-
lintConfig file('lint.xml')
16-
}
17-
18-
compileOptions {
19-
sourceCompatibility rootProject.ext.sourceCompatibility
20-
targetCompatibility rootProject.ext.sourceCompatibility
21-
}
14+
lintOptions {
15+
lintConfig file('lint.xml')
16+
}
17+
18+
compileOptions {
19+
sourceCompatibility rootProject.ext.sourceCompatibility
20+
targetCompatibility rootProject.ext.sourceCompatibility
21+
}
2222
}
2323

2424
repositories {
25-
mavenCentral()
25+
mavenCentral()
2626
}
2727

2828
dependencies {
29-
compile project(':rxandroid')
29+
compile project(':rxandroid')
3030
}

0 commit comments

Comments
 (0)