File tree Expand file tree Collapse file tree 3 files changed +42
-42
lines changed Expand file tree Collapse file tree 3 files changed +42
-42
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
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'
9
9
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
+ }
13
13
}
14
14
15
15
allprojects {
16
- repositories {
17
- jcenter()
18
- }
16
+ repositories {
17
+ jcenter()
18
+ }
19
19
}
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
android {
4
- compileSdkVersion 19
5
- buildToolsVersion " 21.1.2"
4
+ compileSdkVersion 19
5
+ buildToolsVersion " 21.1.2"
6
6
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'
19
18
}
19
+ }
20
20
}
21
21
22
22
dependencies {
23
- compile ' com.android.support:support-annotations:19.1.0'
23
+ compile ' com.android.support:support-annotations:19.1.0'
24
24
}
25
25
26
26
apply from : ' ./gradle-mvn-push.gradle'
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 19
5
- buildToolsVersion " 21.1.2"
4
+ compileSdkVersion 19
5
+ buildToolsVersion " 21.1.2"
6
6
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'
20
19
}
20
+ }
21
21
}
22
22
23
23
dependencies {
24
- compile project(' :library' )
24
+ compile project(' :library' )
25
25
}
You can’t perform that action at this time.
0 commit comments