File tree Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Expand file tree Collapse file tree 3 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ if (flutterVersionName == null) {
26
26
flutterVersionName = " 1.0"
27
27
}
28
28
29
+ def keystoreProperties = new Properties ()
30
+ def keystorePropertiesFile = rootProject. file(' key.properties' )
31
+ if (keystorePropertiesFile. exists()) {
32
+ keystoreProperties. load(new FileInputStream (keystorePropertiesFile))
33
+ }
34
+
29
35
android {
30
36
namespace = " de.investitacademy.linum"
31
37
compileSdk = 34
@@ -54,7 +60,7 @@ android {
54
60
storeFile keystoreProperties[' storeFile' ] ? file(keystoreProperties[' storeFile' ]) : null
55
61
storePassword keystoreProperties[' storePassword' ]
56
62
}
57
- }
63
+ }
58
64
59
65
buildTypes {
60
66
release {
Original file line number Diff line number Diff line change @@ -21,7 +21,10 @@ platform :ios do
21
21
end
22
22
23
23
lane :localBeta do
24
- disable_automatic_code_signing ( path : "Runner.xcodeproj" )
24
+ update_code_signing_settings (
25
+ use_automatic_code_signing : false ,
26
+ path : "Runner.xcodeproj"
27
+ )
25
28
match ( readonly : true )
26
29
gym (
27
30
configuration : "Release" ,
@@ -32,7 +35,10 @@ platform :ios do
32
35
end
33
36
34
37
lane :beta do
35
- disable_automatic_code_signing ( path : "Runner.xcodeproj" )
38
+ update_code_signing_settings (
39
+ use_automatic_code_signing : false ,
40
+ path : "Runner.xcodeproj"
41
+ )
36
42
37
43
create_keychain (
38
44
name : ENV [ 'MATCH_KEYCHAIN_NAME' ] ,
Original file line number Diff line number Diff line change @@ -15,7 +15,9 @@ flutter build ios --release --no-codesign
15
15
16
16
export GIT_TERMINAL_PROMPT=1
17
17
18
+ echo " Hello world"
18
19
echo " $MATCH_PASSWORD "
20
+ echo " Hello world end"
19
21
20
22
cd ./ios || exit
21
23
You can’t perform that action at this time.
0 commit comments