souyuz 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8182d1d45cfe1912e724c4e7b57bbf5dc6619a77eea97cbe1a2e0e6586b6991a
|
4
|
+
data.tar.gz: da6ac32d2b8a6b53995af55e624b303ab739ff6790fa9dcc8591b040a7a5cae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d6f3a8b49153b55ca2cc1a89ba0a21ae3e69b23dabcca15d7e14c79adc7563cd712b8806b998d24896ab03f324b0180e18b4cc10ec05c7f194a0fa0e442a9102
|
7
|
+
data.tar.gz: ea0fdc1fba410eb7bae843fd57e141780976e0b4b923b0afed5feb00b03778003c9520c10ace969dbb27e7f8ebd41c7bb4af00b7e5a85ef408055eb511f6b808
|
data/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
# Souyuz
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/voydz/souyuz.svg?branch=master)](https://travis-ci.org/voydz/souyuz)
|
4
|
-
|
5
3
|
A fastlane component to make Xamarin builds a breeze. Souyuz is now avaialbe as an **Fastlane plugin** see [fastlane-plugin-souyuz](fastlane-plugin-souyuz) for details.
|
6
4
|
|
7
5
|
*NOTE: While souyuz should continue working with your existing configuration just fine, consider using the Fastlane plugin.*
|
@@ -4,12 +4,12 @@ module Souyuz
|
|
4
4
|
class << self
|
5
5
|
def generate
|
6
6
|
build_apk_path = Souyuz.cache[:build_apk_path]
|
7
|
-
Souyuz.cache[:signed_apk_path] = "#{build_apk_path}-
|
7
|
+
Souyuz.cache[:signed_apk_path] = "#{build_apk_path}-signed"
|
8
8
|
|
9
9
|
parts = prefix
|
10
10
|
parts << detect_apksigner_executable
|
11
11
|
parts += options
|
12
|
-
parts <<
|
12
|
+
parts << Souyuz.cache[:aligned_apk_path]
|
13
13
|
parts += pipe
|
14
14
|
|
15
15
|
parts
|
@@ -3,11 +3,14 @@ module Souyuz
|
|
3
3
|
class ZipalignCommandGenerator
|
4
4
|
class << self
|
5
5
|
def generate
|
6
|
+
build_apk_path = Souyuz.cache[:build_apk_path]
|
7
|
+
Souyuz.cache[:aligned_apk_path] = "#{build_apk_path}-aligned"
|
8
|
+
|
6
9
|
parts = prefix
|
7
10
|
parts << zipalign_apk
|
8
11
|
parts += options
|
9
|
-
parts <<
|
10
|
-
parts << Souyuz.cache[:
|
12
|
+
parts << build_apk_path
|
13
|
+
parts << Souyuz.cache[:aligned_apk_path]
|
11
14
|
parts += pipe
|
12
15
|
|
13
16
|
parts
|
data/lib/souyuz/version.rb
CHANGED