Skip to content

Commit 82ea168

Browse files
committed
Update gradle and increment version (2.2.0)
1 parent 07add6c commit 82ea168

7 files changed

Lines changed: 25 additions & 28 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath 'com.android.tools.build:gradle:0.11.+'
7+
classpath 'com.android.tools.build:gradle:0.13.0'
88
}
99
}
1010

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
VERSION_NAME=2.1.0-SNAPSHOT
2-
VERSION_CODE=9
1+
VERSION_NAME=2.2.0-SNAPSHOT
2+
VERSION_CODE=10
33
GROUP=com.github.johnkil.android-robototextview
44

55
POM_DESCRIPTION=Implementation of the fragment with the ability to display indeterminate progress indicator when you are waiting for the initial dataImplementation of a TextView and all its direct/indirect subclasses with native support for the Roboto fonts, includes the brand new Roboto Slab fonts.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Jun 24 19:38:23 MSK 2014
1+
#Mon Oct 06 19:03:20 MSK 2014
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-2.1-all.zip

robototextview-sample/build.gradle

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
1-
apply plugin: 'android'
2-
3-
dependencies {
4-
compile project(':robototextview')
5-
}
1+
apply plugin: 'com.android.application'
62

73
android {
8-
compileSdkVersion 19
9-
buildToolsVersion "19.1.0"
4+
compileSdkVersion 20
5+
buildToolsVersion "20.0.0"
106

117
defaultConfig {
8+
applicationId "com.devspark.robototextview.sample"
129
minSdkVersion 3
13-
targetSdkVersion 19
10+
targetSdkVersion 20
11+
versionCode 10
12+
versionName "2.2.0"
1413
}
1514
}
15+
16+
dependencies {
17+
compile project(':robototextview')
18+
}

robototextview-sample/src/main/AndroidManifest.xml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.devspark.robototextview.sample"
3-
android:versionCode="9"
4-
android:versionName="2.1.0">
5-
6-
<uses-sdk
7-
android:minSdkVersion="3"
8-
android:targetSdkVersion="19"/>
2+
package="com.devspark.robototextview.sample">
93

104
<application
115
android:label="@string/app_name"

robototextview/build.gradle

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

33
android {
4-
compileSdkVersion 19
5-
buildToolsVersion "19.1.0"
4+
compileSdkVersion 20
5+
buildToolsVersion "20.0.0"
66

77
defaultConfig {
8+
applicationId "com.devspark.robototextview"
89
minSdkVersion 3
9-
targetSdkVersion 19
10+
targetSdkVersion 20
11+
versionCode 10
12+
versionName "2.2.0"
1013
}
1114

1215
sourceSets {

robototextview/src/main/AndroidManifest.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.devspark.robototextview"
3-
android:versionCode="9"
4-
android:versionName="2.1.0">
1+
<manifest package="com.devspark.robototextview">
52

63
<application/>
74

0 commit comments

Comments
 (0)