removed dynamic icon, fixed tools.py

This commit is contained in:
Marton Kiss
2025-01-03 17:04:57 +01:00
parent 7ab14756a6
commit 654c12e9fb
8 changed files with 18 additions and 14 deletions

View File

@@ -40,6 +40,8 @@ def debugKeystorePropertiesFile = rootProject.file("debugkey.properties")
debugKeystoreProperties.load(new FileInputStream(debugKeystorePropertiesFile))
android {
namespace = "hu.refilc.naplo"
ndkVersion "25.1.8937393"
// compileSdkVersion rootProject.ext.compileSdkVersion

View File

@@ -2,9 +2,6 @@
xmlns:tools="http://schemas.android.com/tools" package="hu.refilc.naplo">
<application android:name="${applicationName}" android:label="reFilc" tools:replace="android:label" android:icon="@mipmap/ic_launcher"
android:requestLegacyExternalStorage="true" android:enableOnBackInvokedCallback="false">
<service
android:name="com.solusibejo.flutter_dynamic_icon_plus.FlutterDynamicIconPlusService"
android:stopWithTask="false"/>
<activity android:exported="true" android:name="hu.refilc.naplo.MainActivity"
android:launchMode="singleTop" android:theme="@style/LaunchTheme"

View File

@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https://services.gradle.org/distributions/gradle-8.5-all.zip

View File

@@ -24,8 +24,8 @@ pluginManagement {
plugins {
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
id "com.android.application" version "7.1.1" apply false
id "org.jetbrains.kotlin.android" version "1.8.21" apply false
id "com.android.application" version "8.3.0" apply false
id "org.jetbrains.kotlin.android" version "2.0.20" apply false
}
include ":app"