Skip to content

Commit 797b665

Browse files
committed
Merge branch 'release/0.1.3'
2 parents 6a7b844 + 2ff91a2 commit 797b665

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

README.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ Default config file is `~/.android_key_store.xml`, sample config as:
3939

4040
```
4141

42+
The default key files folder is `~/.android_keys` if key files in there.
43+
Only file name is needed in the config xml.
44+
45+
4246
In top level `build.gradle` add this to classpath
4347
``` groovy
4448
buildscript {
@@ -49,8 +53,6 @@ buildscript {
4953
classpath 'com.android.tools.build:gradle:1.0.0'
5054
classpath 'org.quanqi:android-signing:0.1.1'
5155
52-
// NOTE: Do not place your application dependencies here; they belong
53-
// in the individual module build.gradle files
5456
}
5557
}
5658
```
@@ -68,6 +70,21 @@ Now in your signingConfigs these signingConfig were available:
6870

6971
Enjoy.
7072

73+
## Change log
74+
75+
## v0.1.0
76+
* First version published basic feature.
77+
78+
## v0.1.1
79+
* minor fix.
80+
81+
## v0.1.2
82+
* add default key file location.
83+
* change java sourceCompatibility to 1.6
84+
85+
## v0.1.3
86+
* fix default path error.
87+
7188
## LICENSE
7289

7390
APACHE-2

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'signing'
44

55
sourceCompatibility = 1.6
66
group = 'org.quanqi'
7-
version = "0.1.2"
7+
version = "0.1.3"
88

99
repositories {
1010
mavenCentral()

src/main/groovy/org/quanqi/gradle/signing/AndroidApplicationSigning.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class AndroidApplicationSigning implements Plugin<Project> {
2121
if(file.absolute) {
2222
return path
2323
} else {
24-
return new File(System.getProperty('user.home', '.android_keys/' + path)).absolutePath
24+
return new File(System.getProperty('user.home'), '.android_keys/' + path).absolutePath
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)