File tree Expand file tree Collapse file tree 3 files changed +44
-44
lines changed Expand file tree Collapse file tree 3 files changed +44
-44
lines changed Original file line number Diff line number Diff line change 1
1
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
+ }
8
8
}
9
9
10
10
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
16
16
}
17
17
18
18
apply plugin : ' android-reporting'
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion rootProject. ext. compileSdkVersion
5
- buildToolsVersion rootProject. ext. buildToolsVersion
4
+ compileSdkVersion rootProject. ext. compileSdkVersion
5
+ buildToolsVersion rootProject. ext. buildToolsVersion
6
6
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
+ }
11
11
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
+ }
16
16
}
17
17
18
18
repositories {
19
- mavenCentral()
19
+ mavenCentral()
20
20
}
21
21
22
22
dependencies {
23
- compile ' io.reactivex:rxjava:1.0.12'
23
+ compile ' io.reactivex:rxjava:1.0.12'
24
24
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'
28
28
}
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion rootProject. ext. compileSdkVersion
5
- buildToolsVersion rootProject. ext. buildToolsVersion
4
+ compileSdkVersion rootProject. ext. compileSdkVersion
5
+ buildToolsVersion rootProject. ext. buildToolsVersion
6
6
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
+ }
13
13
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
+ }
22
22
}
23
23
24
24
repositories {
25
- mavenCentral()
25
+ mavenCentral()
26
26
}
27
27
28
28
dependencies {
29
- compile project(' :rxandroid' )
29
+ compile project(' :rxandroid' )
30
30
}
You can’t perform that action at this time.
0 commit comments