Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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
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
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
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
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
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,17 +41,17 @@ 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.flutter_plugin_android_lifecycle_example'
namespace = 'io.flutter.plugins.flutter_plugin_android_lifecycle_example'
lint {
disable 'InvalidPackage'
}
}

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

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pluginManagement {
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
url = "https://plugins.gradle.org/m2/"
}
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.googlemaps'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.googlemaps'
version = '1.0-SNAPSHOT'

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

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

defaultConfig {
minSdkVersion 21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
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
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.googlesignin'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.googlesignin'
version = '1.0-SNAPSHOT'

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.googlesignin'
namespace = 'io.flutter.plugins.googlesignin'
compileSdk = flutter.compileSdkVersion

defaultConfig {
Expand All @@ -47,8 +47,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
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.imagepicker'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.imagepicker'
version = '1.0-SNAPSHOT'

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

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

defaultConfig {
minSdkVersion 24
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}
dependencies {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.inapppurchase'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.inapppurchase'
version = '1.0-SNAPSHOT'

buildscript {
repositories {
Expand All @@ -23,10 +23,10 @@ apply plugin: 'com.android.library'

android {
buildFeatures {
buildConfig true
buildConfig = true
}

namespace 'io.flutter.plugins.inapppurchase'
namespace = 'io.flutter.plugins.inapppurchase'

compileSdk = flutter.compileSdkVersion

Expand All @@ -35,8 +35,8 @@ android {
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}
compileOptions {
Expand Down
10 changes: 5 additions & 5 deletions packages/interactive_media_ads/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'dev.flutter.packages.interactive_media_ads'
version '1.0-SNAPSHOT'
group = 'dev.flutter.packages.interactive_media_ads'
version = '1.0-SNAPSHOT'

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

android {
namespace 'dev.flutter.packages.interactive_media_ads'
namespace = 'dev.flutter.packages.interactive_media_ads'

compileSdk = flutter.compileSdkVersion

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

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

Expand Down
10 changes: 5 additions & 5 deletions packages/local_auth/local_auth_android/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.localauth'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.localauth'
version = '1.0-SNAPSHOT'

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

android {
namespace 'io.flutter.plugins.localauth'
namespace = 'io.flutter.plugins.localauth'
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'
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.flutter.plugins.pathprovider'
version '1.0-SNAPSHOT'
group = 'io.flutter.plugins.pathprovider'
version = '1.0-SNAPSHOT'

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

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

defaultConfig {
minSdkVersion 21
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
lintOptions {
checkAllWarnings true
warningsAsErrors true
checkAllWarnings = true
warningsAsErrors = true
disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency', 'NewerVersionAvailable'
}
compileOptions {
Expand Down
Loading