Skip to content

Commit 1c1021f

Browse files
author
ibrahim
committed
## 11.4.5
* Updated all deps. * Updated android gradle and sample apps.
1 parent b96bbf5 commit 1c1021f

File tree

17 files changed

+212
-321
lines changed

17 files changed

+212
-321
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 11.4.5
2+
3+
* Updated all deps.
4+
* Updated android gradle and sample apps.
5+
6+
## 11.4.4
7+
8+
* Updated all deps.
9+
10+
## 11.4.3
11+
12+
* Updated all deps.
13+
114
## 11.4.2
215

316
* Updated all deps.

android/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ group 'com.github.humazed.flutter_toolbox'
22
version '1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.7.10'
5+
ext.kotlin_version = '1.8.22'
66
repositories {
77
google()
88
mavenCentral()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:7.3.0'
12+
classpath 'com.android.tools.build:gradle:8.7.3'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}
1515
}

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-6.7-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip

example/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
1113
migrate_working_dir/
1214

1315
# IntelliJ related

example/android/app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (flutterVersionName == null) {
2525
android {
2626
namespace "com.github.humazed.flutter_toolbox_example"
2727
compileSdkVersion flutter.compileSdkVersion
28-
ndkVersion flutter.ndkVersion
28+
ndkVersion "27.0.12077973"
2929

3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_1_8

example/android/app/src/main/kotlin/com/github/humazed/flutter_toolbox_example/App.kt

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@ package com.github.humazed.flutter_toolbox_example
22

33
import android.content.Context
44
import androidx.multidex.MultiDex
5-
import io.flutter.app.FlutterApplication
6-
7-
class App : FlutterApplication() {
5+
import androidx.multidex.MultiDexApplication
86

7+
class App : MultiDexApplication() {
98
override fun attachBaseContext(base: Context) {
109
super.attachBaseContext(base)
1110
MultiDex.install(this)

example/android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.7.10'
2+
ext.kotlin_version = '1.8.22'
33
repositories {
44
google()
55
mavenCentral()

example/android/gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip

example/android/settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pluginManagement {
2323

2424
plugins {
2525
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
26-
id "com.android.application" version "7.3.0" apply false
26+
id "com.android.application" version "8.7.3" apply false
2727
}
2828

2929
include ":app"

example/ios/Flutter/AppFrameworkInfo.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

example/ios/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
# platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/ios/Podfile.lock

-111
This file was deleted.

example/ios/Runner.xcodeproj/project.pbxproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@
216216
isa = PBXProject;
217217
attributes = {
218218
BuildIndependentTargetsInParallel = YES;
219-
LastUpgradeCheck = 1430;
219+
LastUpgradeCheck = 1510;
220220
ORGANIZATIONNAME = "";
221221
TargetAttributes = {
222222
331C8080294A63A400263BE5 = {
@@ -453,7 +453,7 @@
453453
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
454454
GCC_WARN_UNUSED_FUNCTION = YES;
455455
GCC_WARN_UNUSED_VARIABLE = YES;
456-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
456+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
457457
MTL_ENABLE_DEBUG_INFO = NO;
458458
SDKROOT = iphoneos;
459459
SUPPORTED_PLATFORMS = iphoneos;
@@ -581,7 +581,7 @@
581581
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
582582
GCC_WARN_UNUSED_FUNCTION = YES;
583583
GCC_WARN_UNUSED_VARIABLE = YES;
584-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
584+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
585585
MTL_ENABLE_DEBUG_INFO = YES;
586586
ONLY_ACTIVE_ARCH = YES;
587587
SDKROOT = iphoneos;
@@ -630,7 +630,7 @@
630630
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
631631
GCC_WARN_UNUSED_FUNCTION = YES;
632632
GCC_WARN_UNUSED_VARIABLE = YES;
633-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
633+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
634634
MTL_ENABLE_DEBUG_INFO = NO;
635635
SDKROOT = iphoneos;
636636
SUPPORTED_PLATFORMS = iphoneos;

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1430"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -59,6 +59,7 @@
5959
ignoresPersistentStateOnLaunch = "NO"
6060
debugDocumentVersioning = "YES"
6161
debugServiceExtension = "internal"
62+
enableGPUValidationMode = "1"
6263
allowLocationSimulation = "YES">
6364
<BuildableProductRunnable
6465
runnableDebuggingMode = "0">

0 commit comments

Comments
 (0)