Skip to content

Commit 860939e

Browse files
authored
Merge pull request #14 from vbalagovic/stage
Stage
2 parents 4a8737a + 691f357 commit 860939e

20 files changed

+501
-266
lines changed

.env.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ KEY_ISSUER_ID=""
3737
PATH_TO_THE_P8_KEY="$PWD/applestore_key.p8"
3838

3939
# Flutter version
40-
FLUTTER_VERSION=3.10.6
40+
FLUTTER_VERSION=3.13.7

.fvm/fvm_config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"flutterSdkVersion": "3.10.6",
2+
"flutterSdkVersion": "3.13.7",
33
"flavors": {}
44
}

.vscode/launch.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "dart",
1111
"flutterMode": "debug",
1212
"program": "lib/main_dev.dart",
13-
"args": ["--flavor", "dev"],
13+
"args": ["--flavor", "dev", "--no-enable-impeller"],
1414
},
1515
{
1616
"name": "FlutterPresetup PROD",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ NOTE: dev & prod scheme must be added manually in xcode (check the article above
3737

3838
## Dependencies & versions
3939

40-
Current Flutter version 3.10.6
40+
Current Flutter version 3.13.7
4141

4242
Install all dependecies:
4343

android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ android {
5656
applicationId "com.example.presetup"
5757
// You can update the following values to match your application needs.
5858
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
59-
minSdkVersion 21
59+
minSdkVersion 24
6060
targetSdkVersion 33
6161
versionCode flutterVersionCode.toInteger()
6262
versionName flutterVersionName

android/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
buildscript {
2-
ext.kotlin_version = '1.6.10'
2+
ext.kotlin_version = '1.7.10'
33
repositories {
44
google()
55
mavenCentral()
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.1.2'
9+
classpath 'com.android.tools.build:gradle:7.3.0'
1010
// START: FlutterFire Configuration
11-
classpath 'com.google.gms:google-services:4.3.10'
11+
classpath 'com.google.gms:google-services:4.3.14'
1212
// END: FlutterFire Configuration
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}

android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
33
zipStoreBase=GRADLE_USER_HOME
44
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip

docs/dependencies-and-versions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dependencies & versions
22

3-
Current Flutter version 3.10.6
3+
Current Flutter version 3.13.7
44

55
Install all dependecies:
66

ios/Podfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ post_install do |installer|
3838
installer.pods_project.targets.each do |target|
3939
flutter_additional_ios_build_settings(target)
4040
target.build_configurations.each do |config|
41-
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
41+
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
42+
xcconfig_path = config.base_configuration_reference.real_path
43+
xcconfig = File.read(xcconfig_path)
44+
xcconfig_mod = xcconfig.gsub(/DT_TOOLCHAIN_DIR/, "TOOLCHAIN_DIR")
45+
File.open(xcconfig_path, "w") { |file| file << xcconfig_mod }
4246
end
4347
end
4448
end

0 commit comments

Comments
 (0)