calabash-android 0.2.0.pre7 → 0.2.0.pre8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,6 @@
1
+ 0.2.0.pre7:
2
+ Adding target version to javac in order to work with Java 7.
3
+
1
4
  0.2.0.pre7:
2
5
  Fixing api-level lookup on windows.
3
6
 
@@ -1,6 +1,6 @@
1
1
  module Calabash
2
2
  module Android
3
- VERSION = "0.2.0.pre7"
4
- FRAMEWORK_VERSION = "0.2.0.pre7"
3
+ VERSION = "0.2.0.pre8"
4
+ FRAMEWORK_VERSION = "0.2.0.pre8"
5
5
  end
6
6
  end
@@ -110,6 +110,8 @@
110
110
  srcdir="${staging.dir}/src"
111
111
  destdir="${bin.dir}"
112
112
  verbose="${verbose}"
113
+ source="1.6"
114
+ target="1.6"
113
115
  bootclasspathref="android.target.classpath"
114
116
  classpath="${extensible.classpath}"
115
117
  classpathref="jar.libs.ref">
@@ -178,14 +180,22 @@
178
180
 
179
181
 
180
182
  <target name ="-sign">
181
- <signjar
182
- jar="${test.app.unsigned}"
183
- signedjar="${test.app.signed}"
184
- keystore="${key.store}"
185
- storepass="${key.store.password}"
186
- alias="${key.alias}"
187
- keypass="${key.alias.password}"
188
- verbose="false"/>
183
+ <exec executable="jarsigner">
184
+ <arg value="-sigalg" />
185
+ <arg value="MD5withRSA" />
186
+ <arg value="-digestalg" />
187
+ <arg value="SHA1" />
188
+ <arg value="-signedjar" />
189
+ <arg file="${test.app.signed}" />
190
+ <arg value="-storepass" />
191
+ <arg value="${key.store.password}" />
192
+ <arg value="-keystore" />
193
+ <arg file="${key.store}" />
194
+
195
+ <arg file="${test.app.unsigned}" />
196
+ <arg value="${key.alias}" />
197
+
198
+ </exec>
189
199
  </target>
190
200
 
191
201
  </project>
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calabash-android
3
3
  version: !ruby/object:Gem::Version
4
- hash: -3796446124
4
+ hash: 2547815125
5
5
  prerelease: 6
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
9
  - 0
10
10
  - pre
11
- - 7
12
- version: 0.2.0.pre7
11
+ - 8
12
+ version: 0.2.0.pre8
13
13
  platform: ruby
14
14
  authors:
15
15
  - Jonas Maturana Larsen