Skip to content

Commit e89b4d2

Browse files
committed
chore(android): update SDK versions and dependencies; increase JVM heap size
1 parent d63dede commit e89b4d2

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

android/app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ if (nightlyKeystorePropertiesFile.exists()) {
3636

3737
android {
3838
namespace "com.ccextractor.taskwarriorflutter"
39-
compileSdkVersion 35
39+
compileSdkVersion 36
4040

4141
compileOptions {
4242
sourceCompatibility JavaVersion.VERSION_1_8
4343
targetCompatibility JavaVersion.VERSION_1_8
44+
coreLibraryDesugaringEnabled true
4445
}
4546

4647
kotlinOptions {
@@ -101,5 +102,6 @@ flutter {
101102
}
102103

103104
dependencies {
105+
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.4'
104106
}
105107

android/app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
</intent-filter>
3939
</activity>
4040

41-
<receiver android:name="TaskWarriorWidgetProvider"
41+
<receiver android:name=".TaskWarriorWidgetProvider"
4242
android:exported="true">
4343
<intent-filter>
4444
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
org.gradle.jvmargs=-Xmx1536M
1+
org.gradle.jvmargs=-Xmx4096M
22
android.useAndroidX=true
33
android.enableJetifier=true

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
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-8.0-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip

android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ pluginManagement {
1818

1919
plugins {
2020
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
21-
id "com.android.application" version "8.1.0" apply false
22-
id "org.jetbrains.kotlin.android" version "1.9.10" apply false
21+
id "com.android.application" version "8.6.0" apply false
22+
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
2323
}
2424

2525
include ":app"

0 commit comments

Comments
 (0)