Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip

2 changes: 1 addition & 1 deletion packages/animations/example/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
}
Expand Down
6 changes: 3 additions & 3 deletions packages/camera/camera/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
namespace 'io.flutter.plugins.cameraexample'
namespace = 'io.flutter.plugins.cameraexample'
compileSdk = flutter.compileSdkVersion


Expand All @@ -40,7 +40,7 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
profile {
matchingFallbacks = ['debug', 'release']
Expand All @@ -52,7 +52,7 @@ android {
}

flutter {
source '../..'
source = '../..'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

2 changes: 1 addition & 1 deletion packages/camera/camera/example/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"

Expand Down
12 changes: 6 additions & 6 deletions packages/camera/camera_android/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.camera'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.camera'
version = '1.0-SNAPSHOT'
def args = ["-Xlint:deprecation","-Xlint:unchecked"]

buildscript {
Expand Down Expand Up @@ -28,18 +28,18 @@ apply plugin: 'com.android.library'

android {
buildFeatures {
buildConfig true
buildConfig = true
}
namespace 'io.flutter.plugins.camera'
namespace = 'io.flutter.plugins.camera'
compileSdk = 36

defaultConfig {
minSdkVersion 24
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}
compileOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
namespace 'io.flutter.plugins.cameraexample'
namespace = 'io.flutter.plugins.cameraexample'
compileSdk = flutter.compileSdkVersion


Expand All @@ -40,7 +40,7 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
profile {
matchingFallbacks = ['debug', 'release']
Expand All @@ -52,7 +52,7 @@ android {
}

flutter {
source '../..'
source = '../..'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/camera/camera_android_camerax/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.camerax'
version '1.0'
group = 'io.flutter.plugins.camerax'
version = '1.0'

buildscript {
ext.kotlin_version = '2.2.10'
Expand All @@ -25,7 +25,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
namespace 'io.flutter.plugins.camerax'
namespace = 'io.flutter.plugins.camerax'
// CameraX dependencies require compilation against version 33 or later.
compileSdk = flutter.compileSdkVersion

Expand Down Expand Up @@ -63,8 +63,8 @@ android {
}

lint {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'GradleDependency', 'InvalidPackage', 'NewerVersionAvailable'
baseline = file("lint-baseline.xml")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
namespace 'io.flutter.plugins.cameraxexample'
namespace = 'io.flutter.plugins.cameraxexample'
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

Expand All @@ -50,13 +50,13 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
}
}

flutter {
source '../..'
source = '../..'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/espresso/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.example.espresso'
version '1.0'
group = 'com.example.espresso'
version = '1.0'

buildscript {
repositories {
Expand All @@ -22,7 +22,7 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
namespace 'com.example.espresso'
namespace = 'com.example.espresso'
compileSdk = flutter.compileSdkVersion

defaultConfig {
Expand All @@ -36,8 +36,8 @@ android {
}

lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
baseline file("lint-baseline.xml")
}
Expand Down
6 changes: 3 additions & 3 deletions packages/espresso/example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (flutterVersionName == null) {
android {
compileSdk = flutter.compileSdkVersion
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
namespace "com.example.espresso_example"
namespace = "com.example.espresso_example"


defaultConfig {
Expand All @@ -40,7 +40,7 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
}
lint {
Expand All @@ -49,7 +49,7 @@ android {
}

flutter {
source '../..'
source = '../..'
}

dependencies {
Expand Down
2 changes: 1 addition & 1 deletion packages/espresso/example/android/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
}
namespace 'io.flutter.plugins.googlesigninexample'
namespace = 'io.flutter.plugins.googlesigninexample'
}

flutter {
source '../..'
source = '../..'
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
id "com.google.gms.google-services" version "4.3.15" apply false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
namespace "dev.flutter.plugins.file_selector_example"
namespace = "dev.flutter.plugins.file_selector_example"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

Expand Down Expand Up @@ -54,11 +54,11 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
}
}

flutter {
source '../..'
source = '../..'
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'dev.flutter.packages.file_selector_android'
version '1.0'
group = 'dev.flutter.packages.file_selector_android'
version = '1.0'

buildscript {
repositories {
Expand All @@ -22,7 +22,7 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
namespace 'dev.flutter.packages.file_selector_android'
namespace = 'dev.flutter.packages.file_selector_android'
compileSdk = flutter.compileSdkVersion

compileOptions {
Expand All @@ -43,8 +43,8 @@ android {
}

lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
namespace "dev.flutter.packages.file_selector_android_example"
namespace = "dev.flutter.packages.file_selector_android_example"
compileSdk = flutter.compileSdkVersion
ndkVersion = flutter.ndkVersion

Expand All @@ -45,13 +45,13 @@ android {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
signingConfig = signingConfigs.debug
}
}
}

flutter {
source '../..'
source = '../..'
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pluginManagement {
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "8.9.1" apply false
id "com.android.application" version "8.11.0" apply false
id "org.jetbrains.kotlin.android" version "2.2.0" apply false
id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.1"
}
Expand Down
10 changes: 5 additions & 5 deletions packages/flutter_plugin_android_lifecycle/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.flutter_plugin_android_lifecycle'
version '1.0'
group = 'io.flutter.plugins.flutter_plugin_android_lifecycle'
version = '1.0'

buildscript {
repositories {
Expand All @@ -22,7 +22,7 @@ rootProject.allprojects {
apply plugin: 'com.android.library'

android {
namespace 'io.flutter.plugins.flutter_plugin_android_lifecycle'
namespace = 'io.flutter.plugins.flutter_plugin_android_lifecycle'
compileSdk = flutter.compileSdkVersion

defaultConfig {
Expand All @@ -37,8 +37,8 @@ android {
}

lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}

Expand Down
Loading