Panagiotis Triantafyllou

minor fixes

...@@ -24,22 +24,22 @@ android { ...@@ -24,22 +24,22 @@ android {
24 signingConfigs { 24 signingConfigs {
25 config { 25 config {
26 // Set the parameters based on the actual signing information. 26 // Set the parameters based on the actual signing information.
27 - keyAlias 'democosmote' 27 + keyAlias 'warplydemo'
28 - keyPassword 'democosmote' 28 + keyPassword 'warplydemo'
29 - storeFile file('../keystore/democosmote.jks') 29 + storeFile file('../keystore/warplydemo.jks')
30 - storePassword 'democosmote' 30 + storePassword 'warplydemo'
31 - }
32 - debug {
33 - keyAlias 'androiddebugkey'
34 - keyPassword 'android'
35 - storeFile file('../keystore/debug.keystore')
36 - storePassword 'android'
37 } 31 }
32 +// debug {
33 +// keyAlias 'androiddebugkey'
34 +// keyPassword 'android'
35 +// storeFile file('../keystore/debug.keystore')
36 +// storePassword 'android'
37 +// }
38 } 38 }
39 39
40 buildTypes { 40 buildTypes {
41 debug { 41 debug {
42 - signingConfig signingConfigs.debug 42 +// signingConfig signingConfigs.debug
43 } 43 }
44 release { 44 release {
45 signingConfig signingConfigs.config 45 signingConfig signingConfigs.config
......
...@@ -2,7 +2,7 @@ apply plugin: 'com.android.library' ...@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
2 2
3 ext { 3 ext {
4 PUBLISH_GROUP_ID = 'ly.warp' 4 PUBLISH_GROUP_ID = 'ly.warp'
5 - PUBLISH_VERSION = '4.5.4.6rc42' 5 + PUBLISH_VERSION = '4.5.4.6rc43'
6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk' 6 PUBLISH_ARTIFACT_ID = 'warply-android-sdk'
7 } 7 }
8 8
......