Skip to content

Commit

Permalink
[deps] update Android SDK to 34 (flutter#138183)
Browse files Browse the repository at this point in the history
Update Android SDK from 33 to 34.

Following the engine update:

* flutter/engine#47839
  • Loading branch information
dcharkes committed Dec 14, 2023
1 parent 1ff7686 commit 3b370c8
Show file tree
Hide file tree
Showing 8 changed files with 182 additions and 183 deletions.
337 changes: 169 additions & 168 deletions .ci.yaml

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions dev/devicelab/bin/tasks/module_custom_host_app_name_test.dart
Expand Up @@ -261,9 +261,8 @@ Future<void> main() async {
'SampleApp',
'build',
'intermediates',
'merged_assets',
'assets',
'debug',
'out',
'flutter_assets',
'assets',
'read-only.txt',
Expand Down Expand Up @@ -333,9 +332,8 @@ Future<void> main() async {
'SampleApp',
'build',
'intermediates',
'merged_assets',
'assets',
'release',
'out',
'flutter_assets',
'assets',
'read-only.txt',
Expand Down
6 changes: 2 additions & 4 deletions dev/devicelab/bin/tasks/module_test.dart
Expand Up @@ -362,9 +362,8 @@ exitCode: $exitCode
'app',
'build',
'intermediates',
'merged_assets',
'assets',
'debug',
'out',
'flutter_assets',
'assets',
'read-only.txt',
Expand Down Expand Up @@ -452,9 +451,8 @@ exitCode: $exitCode
'app',
'build',
'intermediates',
'merged_assets',
'assets',
'release',
'out',
'flutter_assets',
'assets',
'read-only.txt',
Expand Down
2 changes: 1 addition & 1 deletion dev/integration_tests/android_custom_host_app/build.gradle
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.3.0'
}
}

Expand Down
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.3.0'
}
}

Expand Down
Expand Up @@ -8,7 +8,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.3.0'
}
}

Expand Down
Expand Up @@ -107,14 +107,14 @@ class BasicDeferredComponentsConfig extends DeferredComponentsConfig {
@override
String get androidBuild => r'''
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down Expand Up @@ -495,6 +495,7 @@ class BasicDeferredComponentsConfig extends DeferredComponentsConfig {
android:extractNativeLibs="false">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
Expand Down
Expand Up @@ -83,14 +83,14 @@ class MultidexProject extends Project {

String get androidBuild => r'''
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.7.10'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
classpath 'com.android.tools.build:gradle:7.3.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down Expand Up @@ -209,6 +209,7 @@ class MultidexProject extends Project {
android:name="${applicationName}">
<activity
android:name=".MainActivity"
android:exported="true"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
Expand Down

0 comments on commit 3b370c8

Please sign in to comment.