Skip to content

Commit 6b84c4b

Browse files
authored
chore: upgrade AGP version to 8.1.0 (#8119)
* chore: upgrade AGP version to 8.1.0 * chore: update version info
1 parent 7599c19 commit 6b84c4b

File tree

7 files changed

+31
-8
lines changed

7 files changed

+31
-8
lines changed

CHANGELOG.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
# Release Notes
2+
## Version 0.9.4 – 02/07/2025
3+
### Desktop
4+
#### New Features
5+
- Private page sharing: Add members to private pages with Can View or Can Edit permissions
6+
- Guest editor collaboration: Invite non-members (guest editors) to collaborate in real-time on your pages
7+
- Shared with me: Browse all pages shared with you under the new Shared with me section
8+
- New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync
9+
### Mobile
10+
#### New Features
11+
- Shared page collaboration: View and edit pages that have been shared with you on iOS and Android
12+
- New syncing protocol: Optimized for faster, more reliable multi-user and multi-device data sync
13+
214
## Version 0.9.3 - 28/05/2025
315
### Desktop
416
#### New Features
@@ -23,8 +35,8 @@
2335
## Version 0.9.2 - 14/05/2025
2436
### Desktop
2537
#### New Features
26-
- Supported AI Overview in Search to answer user queries based on their entire workspace
27-
- Revamped the Search panel in the desktop app
38+
- Supported AI Overview in Search to answer user queries based on their entire workspace
39+
- Revamped the Search panel in the desktop app
2840
- Enabled loading custom prompts from an AppFlowy database page
2941
#### Bug Fixes
3042
- Improved inserting emojis using the colon (:)
@@ -235,7 +247,7 @@
235247
- Fixed an error when opening files in the database in local mode
236248
- Fixed arrow up/down navigation not working for selecting a language in Code Block
237249
- Fixed an issue where deleting multiple blocks using the drag button on the document page didn’t work
238-
250+
239251
## Version 0.7.7 - 09/12/2024
240252
### Bug Fixes
241253
- Fixed sidebar menu resize regression

frontend/Makefile.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
2626
CARGO_MAKE_CRATE_FS_NAME = "dart_ffi"
2727
CARGO_MAKE_CRATE_NAME = "dart-ffi"
2828
LIB_NAME = "dart_ffi"
29-
APPFLOWY_VERSION = "0.9.3"
29+
APPFLOWY_VERSION = "0.9.4"
3030
FLUTTER_DESKTOP_FEATURES = "dart"
3131
PRODUCT_NAME = "AppFlowy"
3232
MACOSX_DEPLOYMENT_TARGET = "11.0"

frontend/appflowy_flutter/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if (keystorePropertiesFile.exists()) {
3232
}
3333

3434
android {
35-
compileSdkVersion 34
35+
compileSdkVersion 35
3636
ndkVersion "24.0.8215888"
3737

3838
compileOptions {

frontend/appflowy_flutter/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
}
77

88
dependencies {
9-
classpath 'com.android.tools.build:gradle:7.4.2'
9+
classpath 'com.android.tools.build:gradle:8.1.0'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111
}
1212
}

frontend/appflowy_flutter/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

frontend/appflowy_flutter/packages/appflowy_backend/android/build.gradle

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:7.4.2'
12+
classpath 'com.android.tools.build:gradle:8.1.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}
1515
}
@@ -26,6 +26,16 @@ apply plugin: 'kotlin-android'
2626

2727
android {
2828
compileSdkVersion 33
29+
namespace 'com.plugin.appflowy_backend'
30+
31+
compileOptions {
32+
sourceCompatibility JavaVersion.VERSION_1_8
33+
targetCompatibility JavaVersion.VERSION_1_8
34+
}
35+
36+
kotlinOptions {
37+
jvmTarget = '1.8'
38+
}
2939

3040
sourceSets {
3141
main.java.srcDirs += 'src/main/kotlin'

frontend/appflowy_flutter/packages/flowy_infra_ui/android/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ apply plugin: 'com.android.library'
2424

2525
android {
2626
compileSdkVersion 33
27+
namespace 'com.example.flowy_infra_ui'
2728

2829
compileOptions {
2930
sourceCompatibility JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)