- Updated architecture documentation to reflect changes in data layer and caching strategies. - Implemented LRU caching for key pair generation and private key hash to improve performance. - Refactored DatabaseService to include LRU caching for encrypted accounts, reducing database query times. - Introduced a search bar in SelectAccountScreen for filtering accounts, enhancing user experience. - Adjusted UI components for better spacing and consistency. - Updated build.gradle.kts to support Java 17 and Room incremental annotation processing. - Modified gradle.properties to include necessary JVM arguments for Java 17 compatibility.
22 lines
1.3 KiB
Properties
22 lines
1.3 KiB
Properties
# Project-wide Gradle settings.
|
|
# AndroidX package structure to make it clearer which packages are bundled with the
|
|
# Android operating system, and which are packaged with your app's APK
|
|
android.useAndroidX=true
|
|
|
|
# Kotlin code style for this project: "official" or "obsolete"
|
|
kotlin.code.style=official
|
|
|
|
# Increase heap size for Gradle
|
|
org.gradle.jvmargs=-Xmx4096m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError --add-opens=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.jvm=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED --add-opens=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
|
|
org.gradle.daemon=true
|
|
org.gradle.parallel=true
|
|
org.gradle.caching=true
|
|
|
|
# Kapt options for Java 17+
|
|
kapt.use.worker.api=false
|
|
kapt.include.compile.classpath=false
|
|
|
|
# Enables namespacing of each library's R class so that its R class includes only the
|
|
# resources declared in the library itself and none from the library's dependencies
|
|
android.nonTransitiveRClass=true
|