From 4aad60419cff5a855de41d2a5d3deda47e7cce49 Mon Sep 17 00:00:00 2001 From: Ellet <73608287+freshtechtips@users.noreply.github.com> Date: Tue, 7 Nov 2023 02:00:15 +0300 Subject: [PATCH] Update the example, android example, and few changes --- example/android/app/build.gradle | 17 +++---- .../android/app/src/main/AndroidManifest.xml | 38 +++++++++------ .../com/example/example/MainActivity.kt | 3 +- example/android/build.gradle | 47 ++++++++++++++++++- example/android/gradle.properties | 3 ++ .../gradle/wrapper/gradle-wrapper.properties | 2 +- example/assets/sample_data.json | 47 ------------------- example/lib/pages/home_page.dart | 12 +++++ flutter_quill_test/pubspec.yaml | 2 +- lib/src/models/documents/document.dart | 4 +- lib/src/utils/color.dart | 2 +- lib/src/utils/delta.dart | 6 ++- lib/src/utils/embeds.dart | 2 +- lib/src/utils/extensions/build_context.dart | 3 +- lib/src/utils/font.dart | 2 +- lib/src/widgets/raw_editor/raw_editor.dart | 6 ++- lib/src/widgets/text_block.dart | 2 +- lib/src/widgets/text_selection.dart | 10 ++-- 18 files changed, 115 insertions(+), 93 deletions(-) diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 118ee1d9..e574d1e8 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -24,16 +24,18 @@ if (flutterVersionName == null) { android { namespace "com.example.example" - compileSdkVersion flutter.compileSdkVersion + compileSdk flutter.compileSdkVersion ndkVersion flutter.ndkVersion + def javaVersion = JavaVersion.VERSION_17 + compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 + sourceCompatibility javaVersion + targetCompatibility javaVersion } kotlinOptions { - jvmTarget = '1.8' + jvmTarget = javaVersion.toString() } sourceSets { @@ -41,11 +43,8 @@ android { } defaultConfig { - // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.example" - // You can update the following values to match your application needs. - // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. - minSdkVersion flutter.minSdkVersion + minSdkVersion 24 targetSdkVersion flutter.targetSdkVersion versionCode flutterVersionCode.toInteger() versionName flutterVersionName @@ -53,8 +52,6 @@ android { buildTypes { 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 } } diff --git a/example/android/app/src/main/AndroidManifest.xml b/example/android/app/src/main/AndroidManifest.xml index 7285ab78..1d6e0b64 100644 --- a/example/android/app/src/main/AndroidManifest.xml +++ b/example/android/app/src/main/AndroidManifest.xml @@ -1,35 +1,45 @@ - + + + - + - - - + + + + + + + android:icon="@mipmap/ic_launcher" + android:label="example"> + android:name="io.flutter.embedding.android.NormalTheme" + android:resource="@style/NormalTheme" /> - - + +