Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update version #3386

Closed
Closed
Show file tree
Hide file tree
Changes from all 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 @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
compileSdk 34
compileSdk 35

namespace 'com.example.example'

Expand All @@ -33,7 +33,7 @@ android {
}

kotlinOptions {
jvmTarget = 17
jvmTarget = JavaVersion.VERSION_17.toString()
}

sourceSets {
Expand All @@ -48,7 +48,7 @@ android {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.example"
minSdk 21
targetSdk 34
targetSdk 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
Expand All @@ -71,7 +71,5 @@ flutter {
dependencies {
testImplementation 'junit:junit:4.13.2'
testImplementation "com.google.truth:truth:1.4.4"
androidTestImplementation 'androidx.test:runner:1.6.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
api 'androidx.test:core:1.6.1'
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
buildscript {
ext {
agp_version = '8.7.0'
}
}
allprojects {
repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Oct 05 12:15:50 EEST 2021
#Fri Dec 06 16:00:49 IST 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (localPropertiesFile.exists()) {

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
Expand All @@ -27,7 +27,7 @@ if (flutterVersionName == null) {
}

android {
compileSdk 34
compileSdk 35

namespace 'io.flutter.plugins.connectivityexample'

Expand All @@ -42,8 +42,8 @@ android {

defaultConfig {
applicationId "io.flutter.plugins.connectivityexample"
minSdk 21
targetSdk 34
minSdk 23
targetSdk 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
org.gradle.jvmargs=-Xmx1536M
org.gradle.jvmargs=-Xmx4096m
android.useAndroidX=true
android.enableJetifier=true
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if (flutterVersionName == null) {
}

android {
compileSdk 34
compileSdk 35

namespace 'io.flutter.plugins.deviceinfoexample.example'

Expand All @@ -33,7 +33,7 @@ android {
}

kotlinOptions {
jvmTarget = 17
jvmTarget = JavaVersion.VERSION_17.toString()
}

sourceSets {
Expand All @@ -47,7 +47,7 @@ android {
defaultConfig {
applicationId "io.flutter.plugins.deviceinfoexample.example"
minSdk 21
targetSdk 34
targetSdk 35
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
buildscript {
ext {
agp_version = '8.7.0'
}
}
allprojects {
repositories {
google()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Tue Oct 05 15:15:38 CEST 2021
#Fri Dec 06 17:09:54 IST 2024
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.8.0
plugin_platform_interface: ^2.1.4
plugin_platform_interface: ^2.1.8

dev_dependencies:
flutter_lints: ">=4.0.0 <6.0.0"
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ environment:
sdk: ">=3.3.0 <4.0.0"

dev_dependencies:
flutter_lints: ^4.0.0
flutter_lints: ^5.0.0
melos: ^6.0.0
Loading