Merge branch 'develop'

master
saltedfish-zjx 1 year ago
commit 0440655069

@ -0,0 +1,2 @@
#Sun Oct 29 16:47:41 CST 2023
gradle.version=7.4

Binary file not shown.

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="Android Studio default JDK" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

Binary file not shown.

Binary file not shown.

@ -0,0 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

234
gradlew vendored

@ -0,0 +1,234 @@
#!/bin/sh
#
# Copyright © 2015-2021 the original authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
#
# Gradle start up script for POSIX generated by Gradle.
#
# Important for running:
#
# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
# noncompliant, but you have some other compliant shell such as ksh or
# bash, then to run this script, type that shell name before the whole
# command line, like:
#
# ksh Gradle
#
# Busybox and similar reduced shells will NOT work, because this script
# requires all of these POSIX shell features:
# * functions;
# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
# * compound commands having a testable exit status, especially «case»;
# * various built-in commands including «command», «set», and «ulimit».
#
# Important for patching:
#
# (2) This script targets any POSIX shell, so it avoids extensions provided
# by Bash, Ksh, etc; in particular arrays are avoided.
#
# The "traditional" practice of packing multiple parameters into a
# space-separated string is a well documented source of bugs and security
# problems, so this is (mostly) avoided, by progressively accumulating
# options in "$@", and eventually passing that to Java.
#
# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
# see the in-line comments for details.
#
# There are tweaks for specific operating systems such as AIX, CygWin,
# Darwin, MinGW, and NonStop.
#
# (3) This script is generated from the Groovy template
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
# within the Gradle project.
#
# You can find Gradle at https://github.com/gradle/gradle/.
#
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
app_path=$0
# Need this for daisy-chained symlinks.
while
APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
[ -h "$app_path" ]
do
ls=$( ls -ld "$app_path" )
link=${ls#*' -> '}
case $link in #(
/*) app_path=$link ;; #(
*) app_path=$APP_HOME$link ;;
esac
done
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
APP_BASE_NAME=${0##*/}
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD=maximum
warn () {
echo "$*"
} >&2
die () {
echo
echo "$*"
echo
exit 1
} >&2
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "$( uname )" in #(
CYGWIN* ) cygwin=true ;; #(
Darwin* ) darwin=true ;; #(
MSYS* | MINGW* ) msys=true ;; #(
NONSTOP* ) nonstop=true ;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD=$JAVA_HOME/jre/sh/java
else
JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
case $MAX_FD in #(
max*)
MAX_FD=$( ulimit -H -n ) ||
warn "Could not query maximum file descriptor limit"
esac
case $MAX_FD in #(
'' | soft) :;; #(
*)
ulimit -n "$MAX_FD" ||
warn "Could not set maximum file descriptor limit to $MAX_FD"
esac
fi
# Collect all arguments for the java command, stacking in reverse order:
# * args from the command line
# * the main class name
# * -classpath
# * -D...appname settings
# * --module-path (only if needed)
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
# For Cygwin or MSYS, switch paths to Windows format before running java
if "$cygwin" || "$msys" ; then
APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
JAVACMD=$( cygpath --unix "$JAVACMD" )
# Now convert the arguments - kludge to limit ourselves to /bin/sh
for arg do
if
case $arg in #(
-*) false ;; # don't mess with options #(
/?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
[ -e "$t" ] ;; #(
*) false ;;
esac
then
arg=$( cygpath --path --ignore --mixed "$arg" )
fi
# Roll the args list around exactly as many times as the number of
# args, so each arg winds up back in the position where it started, but
# possibly modified.
#
# NB: a `for` loop captures its iteration list before it begins, so
# changing the positional parameters here affects neither the number of
# iterations, nor the values presented in `arg`.
shift # remove old arg
set -- "$@" "$arg" # push replacement arg
done
fi
# Collect all arguments for the java command;
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
# shell script including quotes and variable substitutions, so put them in
# double quotes to make sure that they get re-expanded; and
# * put everything else in single quotes, so that it's not re-expanded.
set -- \
"-Dorg.gradle.appname=$APP_BASE_NAME" \
-classpath "$CLASSPATH" \
org.gradle.wrapper.GradleWrapperMain \
"$@"
# Use "xargs" to parse quoted args.
#
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
#
# In Bash we could simply go:
#
# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
# set -- "${ARGS[@]}" "$@"
#
# but POSIX shell has neither arrays nor command substitution, so instead we
# post-process each arg (as a line of input to sed) to backslash-escape any
# character that might be a shell metacharacter, then use eval to reverse
# that process (while maintaining the separation between arguments), and wrap
# the whole thing up as a single "set" statement.
#
# This will of course break if any of these variables contains a newline or
# an unmatched quote.
#
eval "set -- $(
printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
xargs -n1 |
sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
tr '\n' ' '
)" '"$@"'
exec "$JAVACMD" "$@"

89
gradlew.bat vendored

@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

File diff suppressed because one or more lines are too long

@ -0,0 +1,8 @@
## This file must *NOT* be checked into Version Control Systems,
# as it contains information specific to your local configuration.
#
# Location of the SDK. This is only used by Gradle.
# For customization when using a Version Control System, please read the
# header note.
#Sun Oct 29 16:47:42 CST 2023
sdk.dir=E\:\\sdk

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8"?>
<Classdiagram><settings><option name="paintImplements" value="true" /><option name="paintDepends" value="false" /><option name="layoutOnChanges" value="false" /><option name="paintUses" value="false" /><option name="paintInner" value="true" /><option name="paintExtends" value="true" /></settings><classes><class name="net.micode.notes.model.WorkingNote" x="236" y="71"><option name="pinned" value="false" /><option name="fieldsExpanded" value="false" /><option name="constructorsExpanded" value="false" /><option name="methodsExpanded" value="false" /></class><class name="net.micode.notes.model.Note" x="148" y="71"><option name="pinned" value="false" /><option name="fieldsExpanded" value="false" /><option name="constructorsExpanded" value="false" /><option name="methodsExpanded" value="false" /></class></classes><stickycomponents /><textcomponents /><connectors><connector from="net.micode.notes.model.WorkingNote" to="net.micode.notes.model.Note"><anchor constraint="1" type="2" x="236" y="104" /><anchor constraint="1" type="2" x="220" y="104" /><decorator type="4" description="- mNote" /></connector></connectors></Classdiagram>

Binary file not shown.

@ -1,6 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<<<<<<< HEAD
<bytecodeTargetLevel target="1.6" />
=======
<bytecodeTargetLevel target="17" />
>>>>>>> develop
</component>
</project>

@ -1,4 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<<<<<<< HEAD
=======
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="17" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
>>>>>>> develop
</project>

@ -1,6 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<<<<<<< HEAD
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_6" project-jdk-name="17" project-jdk-type="JavaSDK">
=======
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="17" project-jdk-type="JavaSDK">
>>>>>>> develop
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
</project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="79037ebd-355b-42f7-b405-88331a1187c2" />
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="6eeea971-fea1-4c30-bcb6-b027be3f31d5" />
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="1a86053b-146b-42a5-8497-0be0da36dc3e" />
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="724ff060-c9ac-42cc-bd6a-ed0ded87f992" />
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<module version="4">
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="ddc96dcd-0863-491b-9b6d-4de96aac5b36" />
</component>
</module>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="SonarLintProjectSettings">
<option name="bindingEnabled" value="true" />
<option name="projectKey" value="src" />
<option name="serverId" value="minote" />
</component>
</project>

@ -0,0 +1,7 @@
e squid:S16040"(Make this anonymous inner class a lambda(í˽ýJ$3333176d-9397-4514-929b-44d12eea6a9c
£squid:UselessImportCheck"TRemove this unnecessary import: same package classes are always implicitly imported.(«ƒà·þÿÿÿÿJ$1a377f2b-36d3-48b8-9170-455837009e9e
 squid:S00100)"NRename this method name to match the regular expression '^[a-z][a-zA-Z0-9]*$'.(¦Ÿ¦×ýÿÿÿÿJ$e06b60d6-eabc-4d0e-b985-67c5c373301e
Ÿ squid:S3923Q"]This conditional operation returns the same value whether the condition is "true" or "false".(Ýç®ÜÿÿÿÿÿJ$2b7d8a7a-fe7d-4dd9-acba-a2cdd5180192
ˆsquid:CallToDeprecatedMethodQ"5Remove this use of "FORMAT_24HOUR"; it is deprecated.(Ýç®ÜÿÿÿÿÿJ$def6664b-3c42-4b69-8d52-0e5ed2c106fc
ˆsquid:CallToDeprecatedMethodQ"5Remove this use of "FORMAT_24HOUR"; it is deprecated.(Ýç®ÜÿÿÿÿÿJ$8d4173c5-b302-4d48-bc8d-d78b49c77ba0

@ -0,0 +1,33 @@
¯"squid:ClassVariableVisibilityCheckN"VMake tvModified a static final constant or non-public and provide accessors if needed.(ƒëÔ£ÿÿÿÿÿJ$5571756a-d1a1-4c93-b02b-2a4250673f83
°"squid:ClassVariableVisibilityCheckP"WMake ivAlertIcon a static final constant or non-public and provide accessors if needed.(ªà¶±ûÿÿÿÿJ$24250d0d-69b5-4df3-b06a-9cec32cb806e
°"squid:ClassVariableVisibilityCheckR"WMake tvAlertDate a static final constant or non-public and provide accessors if needed.(“²<E2809C>ÖúÿÿÿÿJ$a1dd89ec-d781-4073-8bb3-b0904981ad9b
±"squid:ClassVariableVisibilityCheckT"XMake ibSetBgColor a static final constant or non-public and provide accessors if needed.(ýãä¬üÿÿÿÿJ$5989bd8b-e1bf-4ca1-a653-b7322e0497a7
m squid:S1604¢"(Make this anonymous inner class a lambda(ά¯”´˜Ú·1J$4ae334f0-714c-4abe-aad1-23e7accc51d0
m squid:S1604Ë"(Make this anonymous inner class a lambda(¨›Ì÷´˜Ú·1J$28c4d774-72b7-4fd3-bf48-3b9d2b22403c
m squid:S1604"(Make this anonymous inner class a lambda(××ß’´˜Ú·1J$16181a5d-1813-472d-83ef-55329389d5f5
œ squid:S1450š"WRemove the "mPattern" field and declare it as a local variable in the relevant methods.(©´ÖÛ8<>µ˜Ú·1J$01e739ba-6ed7-4f6c-9fb7-4d6215dd2111
¢ squid:S2293X"YReplace the type specification in this constructor call with the diamond operator ("<>").(ÑÓ<C391>¥üÿÿÿÿ8…µ˜Ú·1J$628f3b24-a62f-4f13-b6b5-0fea0c510ecf
¢ squid:S2293b"YReplace the type specification in this constructor call with the diamond operator ("<>").(®ú÷õþÿÿÿÿ8†µ˜Ú·1J$68dc1cdd-dc50-41a6-b0af-0519e4529645
¢ squid:S2293l"YReplace the type specification in this constructor call with the diamond operator ("<>").(êÝýÂþÿÿÿÿ8†µ˜Ú·1J$c5dea0e3-b8b9-4c95-a136-b9571bcbdab1
<EFBFBD> squid:S2293u"YReplace the type specification in this constructor call with the diamond operator ("<>").(À—’¢8†µ˜Ú·1J$8d6fc0aa-862a-458a-a91c-348beab5998f
œ squid:S3776º"RRefactor this method to reduce its Cognitive Complexity from 26 to the 15 allowed.(ݨÁ±øÿÿÿÿ8ˆµ˜Ú·1J$1850a70d-09af-4288-a513-42edfc3fb111
squid:CallToDeprecatedMethodÜ"@Remove this use of "SOFT_INPUT_ADJUST_RESIZE"; it is deprecated.(ѯ”<C2AF>8µ˜Ú·1J$2a96d3ae-4149-4fff-a699-e561078fa3a3
squid:CallToDeprecatedMethod"@Remove this use of "SOFT_INPUT_ADJUST_RESIZE"; it is deprecated.(Ò£ú¿ÿÿÿÿÿ8Œµ˜Ú·1J$9e2cc06e-7ad8-488b-a9c3-75b6ece0471f
Žsquid:CallToDeprecatedMethod"9Remove this use of "setTextAppearance"; it is deprecated.(½õË(8<>µ˜Ú·1J$1ca76152-0ba7-4a2c-a6f8-7e506ef8015c
y squid:S2864<18>"4Iterate over the "entrySet" instead of the "keySet".(­Ô‡ï8Žµ˜Ú·1J$193ba476-99d8-4dad-89c6-8f6386edb96a
| squid:S1135©"2Complete the task associated to this TODO comment.(Ùü§“ýÿÿÿÿ8Žµ˜Ú·1J$793c7b27-0cec-45a1-bd96-365ea33d721a
ysquid:EmptyStatementUsageCheck½"Remove this empty statement.(ôŸŽìúÿÿÿÿ8<>µ˜Ú·1J$7a87f113-3570-4d7d-a933-7ab5663ba3c8
 squid:S1126ê"AReplace this if-then-else statement by a single return statement.(®ÎÚÉ8µ˜Ú·1J$0f8d879a-6893-4181-b64a-93fe3773427f
v squid:S1905",Remove this unnecessary cast to "ImageView".(ÿ¹Ê¼ýÿÿÿÿ8“µ˜Ú·1J$61f37d9b-2947-4416-80d4-de04c3f32b30
ysquid:EmptyStatementUsageCheckŠ"Remove this empty statement.(ôŸŽìúÿÿÿÿ8”µ˜Ú·1J$88266b74-d656-4a03-84ee-3bc619578899
<EFBFBD>squid:CallToDeprecatedMethod"9Remove this use of "PreferenceManager"; it is deprecated.(ª¦úÅ8”µ˜Ú·1J$4bee402b-cdc3-46c6-a700-658861e9a298
squid:CallToDeprecatedMethod"CRemove this use of "getDefaultSharedPreferences"; it is deprecated.(ª¦úÅ8”µ˜Ú·1J$2ccfe45e-8357-498b-bbd1-3cb72115f570
squid:CallToDeprecatedMethodË"9Remove this use of "setTextAppearance"; it is deprecated.(ÑëÊäüÿÿÿÿ8˜µ˜Ú·1J$36679c6d-709b-4d4b-be3e-9b3cfbbac8ec
¥squid:CallToDeprecatedMethodÖ"JDon't override a deprecated method or explicitly mark it as "@Deprecated".(œƒƒ©ùÿÿÿÿ8˜µ˜Ú·1J$8df1be6d-6145-4e3b-8147-6e363df3073e
<EFBFBD>squid:CallToDeprecatedMethodÜ"5Remove this use of "onBackPressed"; it is deprecated.(<28>Ñàÿÿÿÿÿ8™µ˜Ú·1J$465df287-9a7b-4545-9dd9-9d4f0e811820
ž squid:S2293ó"YReplace the type specification in this constructor call with the diamond operator ("<>").(艥ð8¡µ˜Ú·1J$74481e88-bf91-469e-a70a-4ea93148683a
squid:CallToDeprecatedMethod"9Remove this use of "setTextAppearance"; it is deprecated.(Ùú˜Êøÿÿÿÿ8ªµ˜Ú·1J$0d9696c0-be1d-4e05-8828-c1377ab84e0c
Œsquid:CallToDeprecatedMethodø"=Remove this use of "EXTRA_SHORTCUT_INTENT"; it is deprecated.(·Ã°ŸJ$b424c40f-52c1-4063-8938-a84f624d16cc
Šsquid:CallToDeprecatedMethodù";Remove this use of "EXTRA_SHORTCUT_NAME"; it is deprecated.(ÒÀ‘çJ$026a4b70-78a3-4ba8-8f0a-09d8a58b90fa
squid:CallToDeprecatedMethodû"DRemove this use of "EXTRA_SHORTCUT_ICON_RESOURCE"; it is deprecated.(§éǾJ$9b487ca9-e589-40a6-81ca-39725cceec85

@ -0,0 +1,6 @@
e squid:S1604D"(Make this anonymous inner class a lambda(ñ×®èJ$dd867bb0-0f1c-4bc6-965d-ed80dfe92edf
j squid:S1604M"(Make this anonymous inner class a lambda(Ò´Ñ<C2B4>ÿÿÿÿÿJ$879823d6-88a3-41f7-afe4-7cb6f99fb936
j squid:S1604w"(Make this anonymous inner class a lambda(×ÉÑ‘úÿÿÿÿJ$f54655e9-c5db-4c01-86f6-c342aa15709e
f squid:S1604"(Make this anonymous inner class a lambda(À¸èžJ$c4d93461-b087-4017-95bf-26f83ec7ddf8
} squid:S3398à"?Move this method into the anonymous class declared at line 119.( šåšJ$2a43b02c-ca9e-4d20-ac0e-6f403df09fa5

@ -0,0 +1,6 @@
t squid:S1066Á"/Merge this if statement with the enclosing one.(â<>®¾8øþ¼Ù·1J$3b2a7ed4-610c-43c6-ac3d-97a425bae781
a squid:S2386A"Make this member "protected".(”µåÓ8ÿþ¼Ù·1J$ac56dd63-7f69-4ed9-b402-9ceb87bced89
f squid:S2386K"Make this member "protected".(Ñ㳎ýÿÿÿÿ8ÿþ¼Ù·1J$9693bc18-9829-40a9-86d8-0f80d2a03ffe
 squid:S1126Ü"AReplace this if-then-else statement by a single return statement.(¶ø ˜8…ÿ¼Ù·1J$bc5948a4-39d7-49fc-a35f-28832a9959dd
m squid:S1125¯"(Remove the literal "true" boolean value.(ÍÛì•8‡ÿ¼Ù·1J$03d0fc34-6467-44fe-a6ef-99e7f61ada2c

@ -0,0 +1,64 @@
w squid:S1199â"-Extract this nested code block into a method.(µ˜ÇÃøÿÿÿÿ8Ö¶˜Ú·1J$6fc54cfb-7cc2-45f8-a9c0-108078abc55f
w squid:S1199"-Extract this nested code block into a method.(ê¶ôÐùÿÿÿÿ8Ö¶˜Ú·1J$87d5d14c-f0d6-4997-a50e-721e3cb60e21
w squid:S1199Ž"-Extract this nested code block into a method.(Η­Šþÿÿÿÿ8Ö¶˜Ú·1J$e2730296-2354-4001-8095-c8422d7698c0
r squid:S1199º"-Extract this nested code block into a method.(ŒãÈ“8Ö¶˜Ú·1J$8ce7ee53-f8b7-4499-a86a-1a3f7409ba79
w squid:S1199¾"-Extract this nested code block into a method.(Ú¿–€úÿÿÿÿ8Ö¶˜Ú·1J$860cda0b-4516-43cc-b8b0-e71c1d7eaa3c
w squid:S1199Â"-Extract this nested code block into a method.(ãÍ€ôÿÿÿÿÿ8Ö¶˜Ú·1J$003032d9-378a-4870-9790-0e6961a00bf9
r squid:S1199Î"-Extract this nested code block into a method.(Žÿõó8Ö¶˜Ú·1J$a02d3b8d-fe8c-4bac-984e-5cdff904be3f
w squid:S1199Ò"-Extract this nested code block into a method.(Á¬å¯ûÿÿÿÿ8Ö¶˜Ú·1J$7eb102e0-9544-493e-bf88-f35469e64c30
 squid:S1301Å"KReplace this "switch" statement by "if" statements to increase readability.(ד¾ñùÿÿÿÿ8טڷ1J$eccd2e7e-cfe5-487f-9917-aaebaf193612
l squid:S1604"(Make this anonymous inner class a lambda(—̺V8ܶ˜Ú·1J$c3fa8e59-272a-468d-bb61-14406e1b645e
m squid:S1604È"(Make this anonymous inner class a lambda(ά¯”8ݶ˜Ú·1J$a911a547-5b3a-4da8-a252-8b54b48900e8
m squid:S1604È"(Make this anonymous inner class a lambda(¿Ü´ã8ݶ˜Ú·1J$16891e0c-7bb3-40f1-b171-f69b38e0fb46
r squid:S1604ñ"(Make this anonymous inner class a lambda(ˆÐï<C390>øÿÿÿÿ8ݶ˜Ú·1J$21e4e2fc-bcf3-4524-8d5b-0f5d6b327d1a
m squid:S1604ù"(Make this anonymous inner class a lambda(øÄì‡8ݶ˜Ú·1J$f936965a-5197-4bb4-a0e0-2bb0ff151b5e
m squid:S1604è"(Make this anonymous inner class a lambda(Û±¼ 8ݶ˜Ú·1J$927d9207-ea91-404d-b756-5110a4a9a9b8
m squid:S1604<18>"(Make this anonymous inner class a lambda(ά¯”8ݶ˜Ú·1J$efb7b4c6-4ef2-4158-a138-7c5e05a9010e
m squid:S1148§"#Use a logger to log this exception.(€ÉÔ…ýÿÿÿÿ8඘ڷ1J$cfd52b9d-4e96-4453-a70c-9f55b8a4edd8
m squid:S1148¯"#Use a logger to log this exception.(€ÉÔ…ýÿÿÿÿ8඘ڷ1J$5838fdbf-060c-4759-972a-0845131735c2
xsquid:EmptyStatementUsageCheckR"Remove this empty statement.(ôŸŽìúÿÿÿÿ8嶘ڷ1J$bc33ace4-c02b-41e4-a9d2-7b88af8b68be
œsquid:ModifiersOrderChecky"EReorder the modifiers to comply with the Java Language Specification.(¹úæµûÿÿÿÿ8涘ڷ1J$a07c51c4-1763-4c17-9fbc-7e4f544f2835
squid:ModifiersOrderCheckz"EReorder the modifiers to comply with the Java Language Specification.(ìѾk8涘ڷ1J$003ef0d1-53f0-49a8-97b0-10fe16d1e2a8
` squid:S3626¤"Remove this redundant jump.(ûÁÝ…8綘ڷ1J$4a64260c-035a-4186-865c-f3115425c2d6
` squid:S3626¨"Remove this redundant jump.(ûÁÝ…8綘ڷ1J$ce7833ff-1385-49ed-a117-f92eafc21988
` squid:S3626¾"Remove this redundant jump.(ûÁÝ…8綘ڷ1J$84cde9fb-7090-403d-8b6b-3c996cbed8d8
œ squid:S3776"RRefactor this method to reduce its Cognitive Complexity from 17 to the 15 allowed.(áé–Þÿÿÿÿÿ8綘ڷ1J$42e1acdb-3c58-48dd-8869-efb5a6e26bbf
<EFBFBD>squid:CallToDeprecatedMethod"9Remove this use of "PreferenceManager"; it is deprecated.(­©Ð8綘ڷ1J$4b3a3463-a1b2-4e57-bb77-108478efbddb
squid:CallToDeprecatedMethod"CRemove this use of "getDefaultSharedPreferences"; it is deprecated.(­©Ð8綘ڷ1J$5b341cad-a452-4a09-8dc2-e300001d0d13
| squid:S1135®"2Complete the task associated to this TODO comment.(ÕÌ<C395>®þÿÿÿÿ8趘ڷ1J$7297b30b-f5f4-4ca5-a171-6a7490967adb
t squid:S2093˜"*Change this "try" to a try-with-resources.(¡»¢üùÿÿÿÿ8趘ڷ1J$bf27ac83-61c5-4b75-9816-739aec34ea09
<EFBFBD> squid:S1450è"XRemove the "mMoveMenu" field and declare it as a local variable in the relevant methods.(…¶×¥8궘ڷ1J$c12e8a02-f065-4434-bd2e-f8c1fbc634df
w squid:S1135ý"2Complete the task associated to this TODO comment.(€<>¯Š8춘ڷ1J$de6ee9f7-070c-4b13-a8d2-bfac7224fb3e
w squid:S1135<18>"2Complete the task associated to this TODO comment.(’à—À8í¶˜Ú·1J$3c6aa7b6-15cb-43db-9bc4-70bf0ed1432d
| squid:S1135Ÿ"2Complete the task associated to this TODO comment.(» æžÿÿÿÿÿ8ڷ1J$085a4177-767b-4772-a448-1adb9fbbc259
| squid:S1135¤"2Complete the task associated to this TODO comment.(» æžÿÿÿÿÿ8ﶘڷ1J$73beab64-6b07-47fb-9ee5-54a867b28236
squid:CallToDeprecatedMethodã"9Remove this use of "getDefaultDisplay"; it is deprecated.(ĸ¬Ìýÿÿÿÿ8ó¶˜Ú·1J$a78a6243-227a-4725-b217-c23de1e795af
Œsquid:CallToDeprecatedMethodä"1Remove this use of "getHeight"; it is deprecated.(·¡ªÃýÿÿÿÿ8ó¶˜Ú·1J$e65639a9-5059-4eef-9246-c4289b48a378
ysquid:EmptyStatementUsageCheckš"Remove this empty statement.(ôŸŽìúÿÿÿÿ8ô¶˜Ú·1J$2812a39e-67c9-4ce3-91f6-cb2b9074866c
 squid:S3776æ"RRefactor this method to reduce its Cognitive Complexity from 20 to the 15 allowed.(ãìîí8ú¶˜Ú·1J$4921dcff-5c8f-4925-8784-3f5a793960c3
squid:CallToDeprecatedMethodç"1Remove this use of "AsyncTask"; it is deprecated.(ýî?8û¶˜Ú·1J$9c5fca29-fad8-4ff4-abdd-d5de3ba9a1e3
¨ squid:S2177è"^Rename this method or correct the type of the argument(s) to override the parent class method.(þÔ‚¯ùÿÿÿÿ8û¶˜Ú·1J$dd96c06e-c37b-4ff2-a41c-2566ba6d85fc
w squid:S1172è"-Remove this unused method parameter "unused".(þÔ‚¯ùÿÿÿÿ8ü¶˜Ú·1J$e78f8473-8d78-4a0e-bf96-f81033558387
o squid:S00108í")Either remove or fill this block of code.(žûÊ¥8ü¶˜Ú·1J$b26f69e6-4677-49b8-824a-79a9b1d5eff8
 squid:CallToDeprecatedMethodý"JDon't override a deprecated method or explicitly mark it as "@Deprecated".(§Í¿Â8ý¶˜Ú·1J$12b4efcd-e20d-4153-8f41-70dc1b739d2b
Šsquid:CallToDeprecatedMethodˆ"/Remove this use of "execute"; it is deprecated.( å«<C3A5>ûÿÿÿÿ8ý¶˜Ú·1J$bb7449af-5030-4924-8730-4af17cc73351
ž squid:S2293"YReplace the type specification in this constructor call with the diamond operator ("<>").(艥ð8þ¶˜Ú·1J$27e01fdf-54f6-4b76-9cbd-c743a0b19db8
squid:CallToDeprecatedMethodÑ"7Remove this use of "toggleSoftInput"; it is deprecated.(© …áúÿÿÿÿ8<>·˜Ú·1J$cdeb615e-5d29-484e-9fe3-4cf089798c5f
Žsquid:CallToDeprecatedMethodÑ"3Remove this use of "SHOW_FORCED"; it is deprecated.(© …áúÿÿÿÿ8<>·˜Ú·1J$c3d91984-53b7-4ec3-914f-5cfb26dd6081
 squid:S3776Þ"RRefactor this method to reduce its Cognitive Complexity from 17 to the 15 allowed.(ÅôÉ#8†·˜Ú·1J$99dc25ee-eb47-4a6c-918c-15941d22f95f
n squid:S1905ø")Remove this unnecessary cast to "Button".(쨋ƒ8ˆ·˜Ú·1J$eac93c42-f742-40a3-ad6e-7fd5cd9a8194
| squid:S1135 "2Complete the task associated to this TODO comment.(» æžÿÿÿÿÿ8·˜Ú·1J$b6d84854-9d7a-4bbb-b2ef-71f887fcbec0
Œ squid:S1126¥"BReplace this if-then-else statement by a single method invocation.(玒¦ýÿÿÿÿ8·˜Ú·1J$7cfcd288-7770-45d4-9633-0e51e759940d
| squid:S1135­"2Complete the task associated to this TODO comment.(» æžÿÿÿÿÿ8·˜Ú·1J$e7cbb16a-340b-4296-8975-e7d5220074c4
 squid:CallToDeprecatedMethod·"JDon't override a deprecated method or explicitly mark it as "@Deprecated".(¬€®Û8<>·˜Ú·1J$f5528f9e-fca8-49fc-9d51-d838d288af12
<EFBFBD>squid:CallToDeprecatedMethodÆ"5Remove this use of "onBackPressed"; it is deprecated.(<28>Ñàÿÿÿÿÿ8<>·˜Ú·1J$53ec4d01-d492-4c47-b4ec-e132928c076b
w squid:S1135 "2Complete the task associated to this TODO comment.(ŸÅ¥Œ8·˜Ú·1J$b7b5e79e-a75e-401e-94a4-71985541bbad
Œsquid:CallToDeprecatedMethodê"1Remove this use of "AsyncTask"; it is deprecated.(ЧðÛýÿÿÿÿ8”·˜Ú·1J$b3c1fe3e-98a8-4297-b87c-8ff49a2873a4
¥squid:CallToDeprecatedMethodò"JDon't override a deprecated method or explicitly mark it as "@Deprecated".(÷ችûÿÿÿÿ8•·˜Ú·1J$db65bd3f-3a04-4975-8ab8-970b00709ec0
Šsquid:CallToDeprecatedMethod<18>"/Remove this use of "execute"; it is deprecated.( å«<C3A5>ûÿÿÿÿ8·˜Ú·1J$28aa0613-ffda-40fd-9be2-b7b8203b5c5f
 squid:S3776§"RRefactor this method to reduce its Cognitive Complexity from 18 to the 15 allowed.(ôŒùb8—·˜Ú·1J$e368ea2d-407d-45a0-8a71-bf5f905c9a2a
u squid:S3398§"0Move this method into "OnListItemClickListener".(‘ðð¡8š·˜Ú·1J$67cc3a3f-5041-480f-96a2-642364f7bb7f
y squid:S3398Ä"/Move this method into "BackgroundQueryHandler".(—÷õŽüÿÿÿÿ8š·˜Ú·1J$242ea4e4-adae-4f7b-bda8-4c700833e6d3
o squid:S3398Ò"%Move this method into "ModeCallback".(“ðÉçýÿÿÿÿ8š·˜Ú·1J$11a1122b-da33-4645-a3b9-35ccd7e3f5ef
j squid:S3398æ"%Move this method into "ModeCallback".(ãìîí8š·˜Ú·1J$10c27128-3adf-4bef-a974-1a3c3933e666

@ -0,0 +1,2 @@
e squid:S1604*"(Make this anonymous inner class a lambda(€ÖÊ©J$56fcf22c-6542-491e-9f0d-5f0d1ab4f27d

@ -0,0 +1,7 @@
 squid:S1192?"ODefine a constant instead of duplicating this literal "Wrong note id:" 3 times.(€¨ƒ¦úÿÿÿÿJ$8721d5af-dda1-4250-ac21-0d4b86130bdb
| squid:S1155ö">Use isEmpty() to check whether the collection is empty or not.(”¥ŠÉJ$77e62401-450e-4d19-82ca-f8b4bc9280d7
 squid:S1126"AReplace this if-then-else statement by a single return statement.(Æ·¾ôúÿÿÿÿJ$ed2e6863-b34e-4f0f-a4c8-0cefea2096f3
<EFBFBD> squid:S3776¿"RRefactor this method to reduce its Cognitive Complexity from 23 to the 15 allowed.(<28>¤§²J$a47f837b-f326-4e30-b912-1f1de5808543
œ squid:S2293Ç"YReplace the type specification in this constructor call with the diamond operator ("<>").(áºÐ»ûÿÿÿÿJ$24fe427d-07d3-4006-993b-64f3bc2e3890
ƒ squid:S2147ÿ"ECombine this catch with the one at line 252, which has the same body.(æš©›J$154f73da-8a6e-4b6b-b634-bf73ebda4249

@ -0,0 +1,5 @@
Z squid:S2386""Make this member "protected".(±ê™–J$a5f93213-28af-4354-9e24-23a1f99022d9
˜squid:CallToDeprecatedMethod*"JDon't override a deprecated method or explicitly mark it as "@Deprecated".(¯£<C2AF>åJ$713fb6c4-80b4-452d-a9d2-dc729b32d531
ƒsquid:CallToDeprecatedMethod+"5Remove this use of "CursorAdapter"; it is deprecated.(椱J$f743d0b2-3802-40b0-a276-f7919df80ecf
t squid:S1135,"2Complete the task associated to this TODO comment.(ƒŠ® úÿÿÿÿJ$0b494827-3e8a-4fe2-a2e7-7cb91517a7b0

@ -0,0 +1,21 @@
o
?app/src/main/java/net/micode/notes/ui/DateTimePickerDialog.java,2\b\2bfc771e07e87c37d3a76a2c815bc8fb30649798
l
<app/src/main/java/net/micode/notes/ui/AlarmInitReceiver.java,0\2\0268ec648e2fc0139b30ed13396174b7392c1ae2
i
9app/src/main/java/net/micode/notes/model/WorkingNote.java,8\7\876016634c6642b35109680ccac740dc8271b236
b
2app/src/main/java/net/micode/notes/model/Note.java,d\d\dd970bd8ce083850fca1d4d159647ccd110e57cb
i
9app/src/main/java/net/micode/notes/ui/DateTimePicker.java,6\c\6cbf8bd9aa98eff862b1dc067330ba66ba4493aa
h
8app/src/main/java/net/micode/notes/ui/AlarmReceiver.java,5\8\5836a695995df8fadacfa6409fe8d21d88946842
g
7app/src/main/java/net/micode/notes/ui/DropdownMenu.java,d\1\d1cc822fa9d783a8d4563bf6e139b7ae10de2fb1
m
=app/src/main/java/net/micode/notes/ui/FoldersListAdapter.java,f\9\f9f49497f95afd327db7a7a512612aa1089003d4
l
<app/src/main/java/net/micode/notes/ui/NotesListActivity.java,a\d\ad72331a1bed265bb9c0fe838faa74dbf69fce32
k
;app/src/main/java/net/micode/notes/ui/NoteEditActivity.java,5\7\577f30d26378ec8a2bd2e4a43f3c79b3f04c402c

@ -0,0 +1,21 @@
o
?app/src/main/java/net/micode/notes/ui/DateTimePickerDialog.java,2\b\2bfc771e07e87c37d3a76a2c815bc8fb30649798
l
<app/src/main/java/net/micode/notes/ui/AlarmInitReceiver.java,0\2\0268ec648e2fc0139b30ed13396174b7392c1ae2
i
9app/src/main/java/net/micode/notes/model/WorkingNote.java,8\7\876016634c6642b35109680ccac740dc8271b236
b
2app/src/main/java/net/micode/notes/model/Note.java,d\d\dd970bd8ce083850fca1d4d159647ccd110e57cb
i
9app/src/main/java/net/micode/notes/ui/DateTimePicker.java,6\c\6cbf8bd9aa98eff862b1dc067330ba66ba4493aa
h
8app/src/main/java/net/micode/notes/ui/AlarmReceiver.java,5\8\5836a695995df8fadacfa6409fe8d21d88946842
g
7app/src/main/java/net/micode/notes/ui/DropdownMenu.java,d\1\d1cc822fa9d783a8d4563bf6e139b7ae10de2fb1
m
=app/src/main/java/net/micode/notes/ui/FoldersListAdapter.java,f\9\f9f49497f95afd327db7a7a512612aa1089003d4
l
<app/src/main/java/net/micode/notes/ui/NotesListActivity.java,a\d\ad72331a1bed265bb9c0fe838faa74dbf69fce32
k
;app/src/main/java/net/micode/notes/ui/NoteEditActivity.java,5\7\577f30d26378ec8a2bd2e4a43f3c79b3f04c402c

@ -1,4 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<<<<<<< HEAD
<module external.linked.project.id="src" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE" external.system.module.group="" external.system.module.version="unspecified" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
@ -11,5 +12,14 @@
</component>
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="e7129df2-7fb9-41f9-96c4-5d43fdcef860" />
=======
<module version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<orderEntry type="sourceFolder" forTests="false" />
</component>
<component name="SonarLintModuleSettings">
<option name="uniqueId" value="f80b02e9-0fa3-41cd-a686-e3acc9640f05" />
>>>>>>> develop
</component>
</module>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="1.6" />
</component>
</project>

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
</GradleProjectSettings>
</option>
</component>
</project>

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectRootManager" version="2" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

@ -4,19 +4,82 @@
<option name="autoReloadType" value="NONE" />
</component>
<component name="ChangeListManager">
<<<<<<< HEAD:src/app/.idea/workspace.xml
<list default="true" id="90b24ecd-9f81-449e-9316-12bf8ec536d3" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/../../.idea/gradle.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../../.idea/gradle.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../../.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../../.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/../../.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../.gradle/7.5/checksums/checksums.lock" beforeDir="false" afterPath="$PROJECT_DIR$/../.gradle/7.5/checksums/checksums.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/../.gradle/7.5/checksums/sha1-checksums.bin" beforeDir="false" afterPath="$PROJECT_DIR$/../.gradle/7.5/checksums/sha1-checksums.bin" afterDir="false" />
=======
<list default="true" id="967e7b2d-0e66-424b-9c7d-fd88bfec58f4" name="Changes" comment="Changes">
<change afterPath="$PROJECT_DIR$/local.properties" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/Notes2.iml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/gradle.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/gradle.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/modules.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/7.5/checksums/checksums.lock" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/7.5/checksums/checksums.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/7.5/checksums/md5-checksums.bin" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/7.5/checksums/md5-checksums.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/7.5/checksums/sha1-checksums.bin" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/7.5/checksums/sha1-checksums.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/7.5/fileHashes/fileHashes.lock" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/7.5/fileHashes/fileHashes.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.gradle/buildOutputCleanup/outputFiles.bin" beforeDir="false" afterPath="$PROJECT_DIR$/src/.gradle/buildOutputCleanup/outputFiles.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.idea/gradle.xml" beforeDir="false" afterPath="$PROJECT_DIR$/src/.idea/gradle.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/src/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/.idea/src.iml" beforeDir="false" />
>>>>>>> develop:.idea/workspace.xml
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ExternalProjectsData">
<projectState path="$PROJECT_DIR$">
<ProjectState />
</projectState>
</component>
<component name="ExternalProjectsManager">
<system id="GRADLE">
<state>
<task path="$PROJECT_DIR$/app">
<activation />
</task>
<projects_view>
<tree_state>
<expand>
<path>
<item name="" type="6a2764b6:ExternalProjectsStructure$RootNode" />
<item name="Notes2" type="f1a62948:ProjectNode" />
</path>
<path>
<item name="" type="6a2764b6:ExternalProjectsStructure$RootNode" />
<item name="Notes2" type="f1a62948:ProjectNode" />
<item name="app" type="2d1252cf:ModuleNode" />
</path>
<path>
<item name="" type="6a2764b6:ExternalProjectsStructure$RootNode" />
<item name="Notes2" type="f1a62948:ProjectNode" />
<item name="app" type="2d1252cf:ModuleNode" />
<item name="Tasks" type="e4a08cd1:TasksNode" />
</path>
<path>
<item name="" type="6a2764b6:ExternalProjectsStructure$RootNode" />
<item name="Notes2" type="f1a62948:ProjectNode" />
<item name="app" type="2d1252cf:ModuleNode" />
<item name="Tasks" type="e4a08cd1:TasksNode" />
<item name="other" type="c8890929:TasksNode$1" />
</path>
</expand>
<select />
</tree_state>
</projects_view>
</state>
</system>
</component>
<component name="Git.Settings">
<<<<<<< HEAD:src/app/.idea/workspace.xml
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/../.." />
</component>
<component name="MarkdownSettingsMigration">
@ -24,28 +87,70 @@
</component>
<component name="ProjectId" id="2XIJAb1SQ3bIJL8BAvpC24RDvDl" />
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
=======
<option name="RECENT_BRANCH_BY_REPOSITORY">
<map>
<entry key="$PROJECT_DIR$" value="zjx_branch" />
</map>
</option>
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectId" id="2XIJ0eqoavUXVAocxdwAq0qL7ft" />
>>>>>>> develop:.idea/workspace.xml
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"ASKED_ADD_EXTERNAL_FILES": "true",
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.cidr.known.project.marker": "true",
"cidr.known.project.marker": "true",
"last_opened_file_path": "D:/Code/Repository/Android/Notes2/src"
"last_opened_file_path": "E:/code/Android/mi-note"
}
}]]></component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<<<<<<< HEAD:src/app/.idea/workspace.xml
<changelist id="90b24ecd-9f81-449e-9316-12bf8ec536d3" name="Changes" comment="" />
<created>1698310517737</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1698310517737</updated>
=======
<changelist id="967e7b2d-0e66-424b-9c7d-fd88bfec58f4" name="Changes" comment="" />
<created>1698310439063</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1698310439063</updated>
>>>>>>> develop:.idea/workspace.xml
</task>
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State>
<option name="FILTERS">
<map>
<entry key="branch">
<value>
<list>
<option value="develop" />
</list>
</value>
</entry>
</map>
</option>
</State>
</value>
</entry>
</map>
</option>
</component>
</project>

@ -0,0 +1,38 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 33
buildToolsVersion "34.0.0"
defaultConfig {
applicationId "net.micode.notes"
minSdkVersion 14
targetSdkVersion 33
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
packagingOptions{
exclude 'META-INF/DEPENDENCIES'
}
}
dependencies {
// implementation fileTree(dir: 'E:\\code\\Android\\mi-note\\src\\httpcomponents-client-4.5.14-bin\\lib', include: ['*.aar', '*.jar'],
// exclude: ['commons-codec-1.11.jar','httpclient-4.5.14.jar','httpclient-cache-4.5.14.jar','httpmime-4.5.14.jar','fluent-hc-4.5.14.jar'])
implementation fileTree(dir: 'D:\\Code\\Repository\\Android\\Notes2\\src\\httpcomponents-client-4.5.14-bin\\lib', include: ['*.aar', '*.jar'], exclude: [],
excludes: ['commons-codec-1.11.jar','httpclient-4.5.14.jar','httpclient-cache-4.5.14.jar','httpmime-4.5.14.jar','fluent-hc-4.5.14.jar'])
}

@ -0,0 +1,10 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package net.micode.notes.test;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "net.micode.notes.test";
public static final String BUILD_TYPE = "debug";
}

@ -0,0 +1,12 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package net.micode.notes;
public final class BuildConfig {
public static final boolean DEBUG = false;
public static final String APPLICATION_ID = "net.micode.notes";
public static final String BUILD_TYPE = "release";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "0.1";
}

@ -0,0 +1,2 @@
#- File Locator -
listingFile=../../../outputs/apk/release/output-metadata.json

@ -0,0 +1,2 @@
appMetadataVersion=1.1
androidGradlePluginVersion=7.4.2

@ -0,0 +1,10 @@
{
"version": 3,
"artifactType": {
"type": "COMPATIBLE_SCREEN_MANIFEST",
"kind": "Directory"
},
"applicationId": "net.micode.notes",
"variantName": "release",
"elements": []
}

@ -0,0 +1,117 @@
# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html
#
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
# will be ignored by new version of the Android plugin for Gradle.
# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file
# instead of this one, which turns off the optimization flags.
# Adding optimization introduces certain risks, since for example not all optimizations performed by
# ProGuard works on all versions of Dalvik. The following flags turn off various optimizations
# known to have issues, but the list may not be complete or up to date. (The "arithmetic"
# optimization can be used if you are only targeting Android 2.0 or later.) Make sure you test
# thoroughly if you go this route.
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
-optimizationpasses 5
-allowaccessmodification
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose
# Preserve some attributes that may be required for reflection.
-keepattributes AnnotationDefault,
EnclosingMethod,
InnerClasses,
RuntimeVisibleAnnotations,
RuntimeVisibleParameterAnnotations,
RuntimeVisibleTypeAnnotations,
Signature
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
-keep public class com.google.android.vending.licensing.ILicensingService
-dontnote com.android.vending.licensing.ILicensingService
-dontnote com.google.vending.licensing.ILicensingService
-dontnote com.google.android.vending.licensing.ILicensingService
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}
# Keep setters in Views so that animations can still work.
-keepclassmembers public class * extends android.view.View {
void set*(***);
*** get*();
}
# We want to keep methods in Activity that could be used in the XML attribute onClick.
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
}
# Preserve annotated Javascript interface methods.
-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}
# The support libraries contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontnote android.support.**
-dontnote androidx.**
-dontwarn android.support.**
-dontwarn androidx.**
# This class is deprecated, but remains for backward compatibility.
-dontwarn android.util.FloatMath
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep class androidx.annotation.Keep
-keep @android.support.annotation.Keep class * {*;}
-keep @androidx.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <init>(...);
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <init>(...);
}
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
-dontnote org.apache.http.**
-dontnote android.net.http.**
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
-dontnote java.lang.invoke.**

@ -0,0 +1,116 @@
# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html
#
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
# will be ignored by new version of the Android plugin for Gradle.
# Optimization is turned off by default. Dex does not like code run
# through the ProGuard optimize steps (and performs some
# of these optimizations on its own).
# Note that if you want to enable optimization, you cannot just
# include optimization flags in your own project configuration file;
# instead you will need to point to the
# "proguard-android-optimize.txt" file instead of this one from your
# project.properties file.
-dontoptimize
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose
# Preserve some attributes that may be required for reflection.
-keepattributes AnnotationDefault,
EnclosingMethod,
InnerClasses,
RuntimeVisibleAnnotations,
RuntimeVisibleParameterAnnotations,
RuntimeVisibleTypeAnnotations,
Signature
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
-keep public class com.google.android.vending.licensing.ILicensingService
-dontnote com.android.vending.licensing.ILicensingService
-dontnote com.google.vending.licensing.ILicensingService
-dontnote com.google.android.vending.licensing.ILicensingService
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}
# Keep setters in Views so that animations can still work.
-keepclassmembers public class * extends android.view.View {
void set*(***);
*** get*();
}
# We want to keep methods in Activity that could be used in the XML attribute onClick.
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
}
# Preserve annotated Javascript interface methods.
-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}
# The support libraries contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontnote android.support.**
-dontnote androidx.**
-dontwarn android.support.**
-dontwarn androidx.**
# This class is deprecated, but remains for backward compatibility.
-dontwarn android.util.FloatMath
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep class androidx.annotation.Keep
-keep @android.support.annotation.Keep class * {*;}
-keep @androidx.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <init>(...);
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <init>(...);
}
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
-dontnote org.apache.http.**
-dontnote android.net.http.**
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
-dontnote java.lang.invoke.**

@ -0,0 +1,117 @@
# This is a configuration file for ProGuard.
# http://proguard.sourceforge.net/index.html#manual/usage.html
#
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
# will be ignored by new version of the Android plugin for Gradle.
# Optimizations can be turned on and off in the 'postProcessing' DSL block.
# The configuration below is applied if optimizations are enabled.
# Adding optimization introduces certain risks, since for example not all optimizations performed by
# ProGuard works on all versions of Dalvik. The following flags turn off various optimizations
# known to have issues, but the list may not be complete or up to date. (The "arithmetic"
# optimization can be used if you are only targeting Android 2.0 or later.) Make sure you test
# thoroughly if you go this route.
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
-optimizationpasses 5
-allowaccessmodification
-dontusemixedcaseclassnames
-dontskipnonpubliclibraryclasses
-verbose
# Preserve some attributes that may be required for reflection.
-keepattributes AnnotationDefault,
EnclosingMethod,
InnerClasses,
RuntimeVisibleAnnotations,
RuntimeVisibleParameterAnnotations,
RuntimeVisibleTypeAnnotations,
Signature
-keep public class com.google.vending.licensing.ILicensingService
-keep public class com.android.vending.licensing.ILicensingService
-keep public class com.google.android.vending.licensing.ILicensingService
-dontnote com.android.vending.licensing.ILicensingService
-dontnote com.google.vending.licensing.ILicensingService
-dontnote com.google.android.vending.licensing.ILicensingService
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
-keepclasseswithmembernames,includedescriptorclasses class * {
native <methods>;
}
# Keep setters in Views so that animations can still work.
-keepclassmembers public class * extends android.view.View {
void set*(***);
*** get*();
}
# We want to keep methods in Activity that could be used in the XML attribute onClick.
-keepclassmembers class * extends android.app.Activity {
public void *(android.view.View);
}
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
-keepclassmembers enum * {
public static **[] values();
public static ** valueOf(java.lang.String);
}
-keepclassmembers class * implements android.os.Parcelable {
public static final ** CREATOR;
}
# Preserve annotated Javascript interface methods.
-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}
# The support libraries contains references to newer platform versions.
# Don't warn about those in case this app is linking against an older
# platform version. We know about them, and they are safe.
-dontnote android.support.**
-dontnote androidx.**
-dontwarn android.support.**
-dontwarn androidx.**
# This class is deprecated, but remains for backward compatibility.
-dontwarn android.util.FloatMath
# Understand the @Keep support annotation.
-keep class android.support.annotation.Keep
-keep class androidx.annotation.Keep
-keep @android.support.annotation.Keep class * {*;}
-keep @androidx.annotation.Keep class * {*;}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <methods>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <fields>;
}
-keepclasseswithmembers class * {
@android.support.annotation.Keep <init>(...);
}
-keepclasseswithmembers class * {
@androidx.annotation.Keep <init>(...);
}
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
-dontnote org.apache.http.**
-dontnote android.net.http.**
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
-dontnote java.lang.invoke.**

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save