Skip to content

Commit e740a98

Browse files
committed
Library upgrade, new release.
1 parent d9e3c35 commit e740a98

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

build.gradle

+18-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
mavenCentral()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:0.6.1'
6+
classpath 'com.android.tools.build:gradle:0.6.3'
77
}
88
}
99

@@ -31,9 +31,9 @@ dependencies {
3131
apt 'com.googlecode.androidannotations:androidannotations:2.7.1'
3232
compile 'com.googlecode.androidannotations:androidannotations-api:2.7.1'
3333

34-
compile 'com.koushikdutta.ion:ion:1.1.8'
34+
compile 'com.koushikdutta.ion:ion:1.2.0'
3535
compile 'com.github.chrisbanes.actionbarpulltorefresh:library:0.8'
36-
compile 'org.jsoup:jsoup:1.7.2'
36+
compile 'org.jsoup:jsoup:1.7.3'
3737
compile 'org.apache.commons:commons-lang3:3.1'
3838
}
3939

@@ -45,6 +45,21 @@ android {
4545
minSdkVersion 15
4646
targetSdkVersion 18
4747
}
48+
49+
// signingConfigs {
50+
// release {
51+
// storeFile file(System.console().readLine("\n\$ Enter keystore path: "))
52+
// storePassword new String(System.console().readPassword("\$ Enter keystore password: "))
53+
// keyAlias System.console().readLine("\$ Enter key alias: ")
54+
// keyPassword new String(System.console().readPassword("\$ Enter key password: "))
55+
// }
56+
// }
57+
//
58+
// buildTypes {
59+
// release {
60+
// signingConfig signingConfigs.release
61+
// }
62+
// }
4863
}
4964

5065
def getSourceSetName(variant) {

src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.github.zyro.crunchbased"
4-
android:versionCode="3"
5-
android:versionName="1.0.2">
4+
android:versionCode="4"
5+
android:versionName="1.0.3">
66

77
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="18"/>
88

0 commit comments

Comments
 (0)