Skip to content

Commit 4fc6648

Browse files
committed
grrrrr
1 parent 51fe619 commit 4fc6648

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

android/app/build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ if (flutterVersionName == null) {
2626
flutterVersionName = "1.0"
2727
}
2828

29+
def keystoreProperties = new Properties()
30+
def keystorePropertiesFile = rootProject.file('key.properties')
31+
if (keystorePropertiesFile.exists()) {
32+
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
33+
}
34+
2935
android {
3036
namespace = "de.investitacademy.linum"
3137
compileSdk = 34
@@ -54,7 +60,7 @@ android {
5460
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
5561
storePassword keystoreProperties['storePassword']
5662
}
57-
}
63+
}
5864

5965
buildTypes {
6066
release {

ios/fastlane/Fastfile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ platform :ios do
2121
end
2222

2323
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+
)
2528
match(readonly: true)
2629
gym(
2730
configuration: "Release",
@@ -32,7 +35,10 @@ platform :ios do
3235
end
3336

3437
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+
)
3642

3743
create_keychain(
3844
name: ENV['MATCH_KEYCHAIN_NAME'],

ios/ios_cd.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ flutter build ios --release --no-codesign
1515

1616
export GIT_TERMINAL_PROMPT=1
1717

18+
echo "Hello world"
1819
echo "$MATCH_PASSWORD"
20+
echo "Hello world end"
1921

2022
cd ./ios || exit
2123

0 commit comments

Comments
 (0)