diff --git a/.gitignore b/.gitignore
index 4d21e08..113ca34 100644
--- a/.gitignore
+++ b/.gitignore
@@ -21,6 +21,8 @@
/vanite-ui/build
/vanite-utils/build
/vanite-logic/build
+/vanite-compose/build
+/vanite-secured-prefs/build
# Remove Secrete Keys
/vanite/SecretRingKey.kbx
@@ -31,4 +33,6 @@
/vanite-prefs/SecretRingKey.kbx
/vanite-ui/SecretRingKey.kbx
/vanite-ui-binding/SecretRingKey.kbx
-/vanite-utils/SecretRingKey.kbx
\ No newline at end of file
+/vanite-utils/SecretRingKey.kbx
+/vanite-compose/SecretRingKey.kbx
+/vanite-secured-prefs/SecretRingKey.kbx
\ No newline at end of file
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index fb7f4a8..b589d56 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -1,6 +1,6 @@
-
+
\ No newline at end of file
diff --git a/.idea/dictionaries/yazantarifi.xml b/.idea/dictionaries/yazantarifi.xml
new file mode 100644
index 0000000..76d2807
--- /dev/null
+++ b/.idea/dictionaries/yazantarifi.xml
@@ -0,0 +1,7 @@
+
+
+
+ composables
+
+
+
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index cf5d0ee..9b83711 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -13,11 +13,13 @@
+
+
diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml
new file mode 100644
index 0000000..e1eea1d
--- /dev/null
+++ b/.idea/kotlinc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 6199cc2..55c0ec2 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -1,6 +1,6 @@
-
+
diff --git a/build.gradle b/build.gradle
index 576f8ab..bb5bdbe 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,12 +3,8 @@
buildscript {
ext.PluginsVersions = [
- "GradlePluginV" : "7.0.3",
- "KotlinPluginV" : "1.5.20",
- "EasyLauncherPluginV": "1.3.1",
"FirebasePluginV" : "4.3.1",
- "NavigationPluginV" : "2.2.0-rc04",
- "VanitePluginV" : "1.0.0",
+ "NavigationPluginV" : "2.5.0",
"HiltPluginVersion" : "2.28-alpha",
"NexusPublishPluginVersoin": "1.1.0"
]
@@ -22,29 +18,21 @@ buildscript {
}
dependencies {
- classpath "com.android.tools.build:gradle:${rootProject.ext.PluginsVersions.GradlePluginV}"
- classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
- classpath "com.akaita.android:easylauncher:${rootProject.ext.PluginsVersions.EasyLauncherPluginV}"
classpath "com.google.gms:google-services:${rootProject.ext.PluginsVersions.FirebasePluginV}"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${rootProject.ext.PluginsVersions.NavigationPluginV}"
- classpath "com.google.dagger:hilt-android-gradle-plugin:${rootProject.ext.PluginsVersions.HiltPluginVersion}"
classpath "io.github.gradle-nexus:publish-plugin:${rootProject.ext.PluginsVersions.NexusPublishPluginVersoin}"
}
}
plugins {
+ id 'com.android.application' version '8.1.0-alpha03' apply false
+ id 'com.android.library' version '8.1.0-alpha03' apply false
+ id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
+ id 'org.jetbrains.kotlin.jvm' version '1.7.20'
+ id 'com.google.dagger.hilt.android' version '2.44' apply false
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
}
-allprojects {
- repositories {
- google()
- mavenCentral()
- maven { url "https://details.gradle.org/m2/" }
- maven { url 'https://jitpack.io' }
- maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
- }
-}
apply from: "details.gradle"
apply plugin: "io.github.gradle-nexus.publish-plugin"
@@ -52,7 +40,7 @@ apply from: "${rootDir}/scripts/publish-root.gradle"
ext {
PUBLISH_GROUP_ID = 'com.yazantarifi'
- PUBLISH_VERSION = '1.0.4'
+ PUBLISH_VERSION = '2.0.0'
PUBLISH_DESCRIPTION = 'Application Structure, Base Code, Configuration, Utility Classes to Build Android Applications'
PUBLISH_URL = 'https://github.com/Yazan98/Vanite'
PUBLISH_LICENSE_NAME = 'MIT'
@@ -88,6 +76,12 @@ public void addRxJavaLibraries(configuration) {
configuration.implementation("io.reactivex.rxjava2:rxandroid:${rootProject.ext.RxAndroidV}")
}
-task clean(type: Delete) {
- delete rootProject.buildDir
+gradle.projectsEvaluated {
+ tasks.withType(JavaCompile) {
+ options.compilerArgs << "-Xmaxerrs" << "500"
+ }
}
+
+tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile.class).configureEach {
+ it.kotlinOptions.jvmTarget = "10"
+}
\ No newline at end of file
diff --git a/details.gradle b/details.gradle
index fd87ef6..765bbbd 100644
--- a/details.gradle
+++ b/details.gradle
@@ -21,8 +21,8 @@ ext {
RetrofitRxJavaV = "2.6.1"
RetrofitGsonV = "2.9.0"
- ApplicationCompileV = 31
+ ApplicationCompileV = 33
MinSdkV = 21
LibraryVersion = "2.0.1"
- LibraryVersionCode = 3
+ LibraryVersionCode = 4
}
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
index f6b961f..7454180 100644
Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
index d2c3b89..b23d04b 100644
--- a/gradle/wrapper/gradle-wrapper.properties
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,5 @@
-#Wed Oct 09 18:30:07 GMT+03:00 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-rc-2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
diff --git a/gradlew b/gradlew
old mode 100644
new mode 100755
index cccdd3d..1b6c787
--- a/gradlew
+++ b/gradlew
@@ -1,78 +1,129 @@
-#!/usr/bin/env sh
+#!/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 UN*X
-##
+#
+# 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
-PRG="$0"
-# Need this for relative symlinks.
-while [ -h "$PRG" ] ; do
- ls=`ls -ld "$PRG"`
- link=`expr "$ls" : '.*-> \(.*\)$'`
- if expr "$link" : '/.*' > /dev/null; then
- PRG="$link"
- else
- PRG=`dirname "$PRG"`"/$link"
- fi
+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
-SAVED="`pwd`"
-cd "`dirname \"$PRG\"`/" >/dev/null
-APP_HOME="`pwd -P`"
-cd "$SAVED" >/dev/null
+
+APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
APP_NAME="Gradle"
-APP_BASE_NAME=`basename "$0"`
+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=""
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
-MAX_FD="maximum"
+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
- ;;
- MINGW* )
- msys=true
- ;;
- NONSTOP* )
- nonstop=true
- ;;
+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"
+ JAVACMD=$JAVA_HOME/jre/sh/java
else
- JAVACMD="$JAVA_HOME/bin/java"
+ JAVACMD=$JAVA_HOME/bin/java
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
@@ -81,7 +132,7 @@ Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
- JAVACMD="java"
+ 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
@@ -89,84 +140,95 @@ location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
-if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
- MAX_FD_LIMIT=`ulimit -H -n`
- if [ $? -eq 0 ] ; then
- if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
- MAX_FD="$MAX_FD_LIMIT"
- fi
- ulimit -n $MAX_FD
- if [ $? -ne 0 ] ; then
- warn "Could not set maximum file descriptor limit: $MAX_FD"
- fi
- else
- warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
- fi
+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
-# For Darwin, add options to specify how the application appears in the dock
-if $darwin; then
- GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
-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" )
-# For Cygwin, switch paths to Windows format before running java
-if $cygwin ; then
- APP_HOME=`cygpath --path --mixed "$APP_HOME"`
- CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
- JAVACMD=`cygpath --unix "$JAVACMD"`
-
- # We build the pattern for arguments to be converted via cygpath
- ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
- SEP=""
- for dir in $ROOTDIRSRAW ; do
- ROOTDIRS="$ROOTDIRS$SEP$dir"
- SEP="|"
- done
- OURCYGPATTERN="(^($ROOTDIRS))"
- # Add a user-defined pattern to the cygpath arguments
- if [ "$GRADLE_CYGPATTERN" != "" ] ; then
- OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
- fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
- i=0
- for arg in "$@" ; do
- CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
- CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
-
- if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
- eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
- else
- eval `echo args$i`="\"$arg\""
+ 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
- i=$((i+1))
+ # 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
- case $i in
- (0) set -- ;;
- (1) set -- "$args0" ;;
- (2) set -- "$args0" "$args1" ;;
- (3) set -- "$args0" "$args1" "$args2" ;;
- (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
- (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
- (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
- (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
- (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
- (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
- esac
fi
-# Escape application args
-save () {
- for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
- echo " "
-}
-APP_ARGS=$(save "$@")
-
-# Collect all arguments for the java command, following the shell quoting and substitution rules
-eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-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" "$@"
diff --git a/gradlew.bat b/gradlew.bat
index f955316..ac1b06f 100644
--- a/gradlew.bat
+++ b/gradlew.bat
@@ -1,84 +1,89 @@
-@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 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=
-
-@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 init
-
-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 init
-
-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
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-: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 %CMD_LINE_ARGS%
-
-: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
+@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
diff --git a/settings.gradle b/settings.gradle
index 2532e8a..301f61b 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,3 +1,19 @@
+pluginManagement {
+ repositories {
+ google()
+ mavenCentral()
+ gradlePluginPortal()
+ }
+}
+
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ }
+}
+
rootProject.name='Vanite'
include ':vanite-ui'
include ':vanite-data'
@@ -8,3 +24,5 @@ include ':vanite-permissions'
include ':vanite-prefs'
include ':vanite-log'
include ':vanite-ui-binding'
+include ':vanite-compose'
+include ':vanite-secured-prefs'
diff --git a/vanite-compose/.gitignore b/vanite-compose/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/vanite-compose/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/vanite-compose/build.gradle b/vanite-compose/build.gradle
new file mode 100644
index 0000000..b145e22
--- /dev/null
+++ b/vanite-compose/build.gradle
@@ -0,0 +1,84 @@
+apply plugin: "${rootProject.ext.LibraryPlugin}"
+apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
+apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
+
+android {
+ compileSdk rootProject.ext.ApplicationCompileV
+
+ defaultConfig {
+ namespace 'io.vanite.android.compose'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
+ versionCode rootProject.ext.LibraryVersionCode
+ versionName "${rootProject.ext.LibraryVersion}"
+
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ debuggable false
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
+ kotlinOptions {
+ jvmTarget = '10'
+ }
+
+ buildFeatures {
+ compose true
+ buildConfig true
+ }
+
+ composeOptions {
+ kotlinCompilerExtensionVersion '1.3.2'
+ }
+}
+
+dependencies { configurations ->
+ implementation platform('androidx.compose:compose-bom:2022.10.00')
+ jetpackComposeConfiguration(configurations)
+}
+
+
+ext {
+ PUBLISH_ARTIFACT_ID = 'vanite-compose'
+}
+
+apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
+
+
+private void jetpackComposeConfiguration(configuration) {
+ configuration.implementation 'androidx.core:core-ktx:1.7.0'
+ configuration.implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
+ configuration.implementation 'androidx.activity:activity-compose:1.4.0'
+ configuration.implementation "androidx.navigation:navigation-compose:2.4.2"
+ configuration.implementation 'com.google.accompanist:accompanist-pager:0.24.8-beta'
+ configuration.implementation 'com.google.accompanist:accompanist-pager-indicators:0.24.8-beta'
+ configuration.implementation 'io.coil-kt:coil-compose:2.0.0'
+ configuration.implementation 'androidx.core:core-animation:1.0.0-beta01'
+ configuration. implementation "androidx.compose.material3:material3:1.0.0-alpha11"
+ configuration.implementation "androidx.compose.material3:material3-window-size-class:1.0.1"
+ configuration.implementation 'androidx.compose.material3:material3:1.0.0-alpha11'
+ configuration.implementation 'com.google.accompanist:accompanist-systemuicontroller:0.24.13-rc'
+ configuration.implementation 'androidx.activity:activity-compose:1.5.1'
+ configuration.implementation 'androidx.compose.ui:ui'
+ configuration.implementation 'androidx.compose.ui:ui-graphics'
+ configuration.implementation "androidx.compose.material3:material3:1.0.1"
+ configuration.testImplementation 'junit:junit:4.13.2'
+ configuration.implementation 'com.google.android.material:material:1.8.0-alpha01'
+ configuration.androidTestImplementation 'androidx.test.ext:junit:1.1.3'
+ configuration.implementation 'androidx.hilt:hilt-navigation-compose:1.0.0'
+ configuration.androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
+ configuration.debugImplementation 'androidx.compose.ui:ui-tooling'
+ configuration.debugImplementation 'androidx.compose.ui:ui-test-manifest'
+}
\ No newline at end of file
diff --git a/vanite-compose/consumer-rules.pro b/vanite-compose/consumer-rules.pro
new file mode 100644
index 0000000..e69de29
diff --git a/vanite-compose/proguard-rules.pro b/vanite-compose/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/vanite-compose/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/vanite-compose/src/androidTest/java/io/vanite/android/compose/ExampleInstrumentedTest.kt b/vanite-compose/src/androidTest/java/io/vanite/android/compose/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..adbc4b6
--- /dev/null
+++ b/vanite-compose/src/androidTest/java/io/vanite/android/compose/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package io.vanite.android.compose
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("io.vanite.android.compose.test", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/AndroidManifest.xml b/vanite-compose/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..5e022fa
--- /dev/null
+++ b/vanite-compose/src/main/AndroidManifest.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/VaniteApplicationState.kt b/vanite-compose/src/main/java/io/vanite/android/compose/VaniteApplicationState.kt
new file mode 100644
index 0000000..f4a8fe7
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/VaniteApplicationState.kt
@@ -0,0 +1,32 @@
+package io.vanite.android.compose
+
+sealed class VaniteApplicationState {
+ data class Success(
+ val data: T?
+ ) : VaniteApplicationState()
+
+ object Loading: VaniteApplicationState()
+ object Loaded: VaniteApplicationState()
+
+ data class Error(
+ val exception: Throwable? = null,
+ val responseCode: Int = -1
+ ) : VaniteApplicationState()
+
+ fun handleResult(onSuccess: ((responseData: T?) -> Unit)?, onError: ((error: Error) -> Unit)?, onLoading: ((loadingState: Boolean) -> Unit)? = null) {
+ when (this) {
+ is Success -> {
+ onSuccess?.invoke(this.data)
+ }
+ is Error -> {
+ onError?.invoke(this)
+ }
+ is Loading -> {
+ onLoading?.invoke(true)
+ }
+ is Loaded -> {
+ onLoading?.invoke(false)
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/components/SharedComposables.kt b/vanite-compose/src/main/java/io/vanite/android/compose/components/SharedComposables.kt
new file mode 100644
index 0000000..05d817e
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/components/SharedComposables.kt
@@ -0,0 +1,67 @@
+package io.vanite.android.compose.components
+
+
+import androidx.activity.ComponentActivity
+import androidx.compose.foundation.layout.*
+import androidx.compose.material.CircularProgressIndicator
+import androidx.compose.material.Icon
+import androidx.compose.material.IconButton
+import androidx.compose.material.Text
+import androidx.compose.material.icons.Icons
+import androidx.compose.material.icons.filled.ArrowBack
+import androidx.compose.material3.CenterAlignedTopAppBar
+import androidx.compose.material3.ExperimentalMaterial3Api
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.TopAppBarDefaults
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.Alignment
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.text.style.TextAlign
+import androidx.compose.ui.unit.ExperimentalUnitApi
+import androidx.compose.ui.unit.TextUnit
+import androidx.compose.ui.unit.TextUnitType
+import androidx.compose.ui.unit.dp
+
+@Composable
+fun VaniteApplicationLoadingComposable(message: String) {
+ Column(
+ modifier = Modifier
+ .fillMaxWidth()
+ .fillMaxHeight(),
+ horizontalAlignment = Alignment.CenterHorizontally,
+ verticalArrangement = Arrangement.Center
+ ) {
+ CircularProgressIndicator(color = MaterialTheme.colorScheme.onBackground)
+ Spacer(modifier = Modifier.height(10.dp))
+ Text(text = message, modifier = Modifier.padding(20.dp), textAlign = TextAlign.Center, color = MaterialTheme.colorScheme.onBackground)
+ }
+}
+
+@OptIn(ExperimentalUnitApi::class, ExperimentalMaterial3Api::class)
+@Composable
+fun VaniteToolbar(title: String, isBackButtonEnabled: Boolean, activity: ComponentActivity) {
+ CenterAlignedTopAppBar(
+ colors = TopAppBarDefaults.centerAlignedTopAppBarColors(
+ containerColor = MaterialTheme.colorScheme.background
+ ),
+ title = {
+ Text(
+ title,
+ color = MaterialTheme.colorScheme.onBackground,
+ fontWeight = FontWeight.Bold,
+ fontSize = TextUnit(15f, TextUnitType.Sp)
+ )
+ },
+ navigationIcon = {
+ if (isBackButtonEnabled) {
+ IconButton(onClick = { activity.onBackPressed() }) {
+ Icon(
+ imageVector = Icons.Filled.ArrowBack,
+ contentDescription = "Back Arrow"
+ )
+ }
+ }
+ }
+ )
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/components/VaniteErrorScreen.kt b/vanite-compose/src/main/java/io/vanite/android/compose/components/VaniteErrorScreen.kt
new file mode 100644
index 0000000..01c1b4d
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/components/VaniteErrorScreen.kt
@@ -0,0 +1,89 @@
+package io.vanite.android.compose.components
+
+import android.content.Context
+import android.content.Intent
+import android.os.Bundle
+import androidx.activity.ComponentActivity
+import androidx.activity.compose.setContent
+import androidx.compose.foundation.background
+import androidx.compose.foundation.layout.Arrangement
+import androidx.compose.foundation.layout.Column
+import androidx.compose.foundation.layout.Spacer
+import androidx.compose.foundation.layout.fillMaxSize
+import androidx.compose.foundation.layout.height
+import androidx.compose.foundation.layout.size
+import androidx.compose.material3.Text
+import androidx.compose.ui.Alignment
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.unit.dp
+import coil.compose.AsyncImage
+import io.vanite.android.compose.ui.VaniteColors
+import java.lang.Exception
+
+class VaniteErrorScreen: ComponentActivity() {
+
+ companion object {
+ private const val IS_ERROR_EXCEPTION_ENABLED = "args.exception,message.enabled"
+ private const val CUSTOM_ERROR_MESSAGE = "args.custom.error"
+ private const val ERROR_TITLE = "args.error.title"
+ private const val ERROR_IMAGE_URL = "args.error.image.url"
+ private const val ERROR_MESSAGE_EXCEPTION = "args.error.message"
+ private const val IS_SCREEN_DISMISS_ENABLED = "args.dismiss.enabled"
+
+ fun startScreen(
+ context: Context,
+ exception: Throwable?,
+ errorTitle: String,
+ isExceptionErrorEnabled: Boolean,
+ customErrorMessage: String,
+ errorImageUrl: String,
+ isScreenDismissEnabled: Boolean
+ ) {
+ context.startActivity(Intent(context, VaniteErrorScreen::class.java).apply {
+ putExtra(IS_ERROR_EXCEPTION_ENABLED, isExceptionErrorEnabled)
+ putExtra(CUSTOM_ERROR_MESSAGE, customErrorMessage)
+ putExtra(ERROR_IMAGE_URL, errorImageUrl)
+ putExtra(ERROR_TITLE, errorTitle)
+ putExtra(ERROR_MESSAGE_EXCEPTION, exception?.message ?: "")
+ putExtra(IS_SCREEN_DISMISS_ENABLED, isScreenDismissEnabled)
+ })
+ }
+ }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+
+ val isExceptionErrorEnabled = intent?.extras?.getBoolean(IS_ERROR_EXCEPTION_ENABLED, false) ?: false
+ val errorImageUrl = intent?.extras?.getString(ERROR_IMAGE_URL, "") ?: ""
+ val customErrorMessage = intent?.extras?.getString(CUSTOM_ERROR_MESSAGE, "") ?: ""
+ val errorTitle = intent?.extras?.getString(ERROR_TITLE, "") ?: ""
+ val exceptionMessage = intent?.extras?.getString(ERROR_MESSAGE_EXCEPTION, "") ?: ""
+ setContent {
+ Column(
+ modifier = Modifier
+ .fillMaxSize()
+ .background(VaniteColors.getScreenBackgroundColor()),
+ verticalArrangement = Arrangement.Center,
+ horizontalAlignment = Alignment.CenterHorizontally
+ ) {
+ AsyncImage(model = errorImageUrl, contentDescription = "Error Icon", modifier = Modifier.size(60.dp))
+ Spacer(modifier = Modifier.height(5.dp))
+ Text(text = errorTitle, color = VaniteColors.getTextColor())
+ Spacer(modifier = Modifier.height(3.dp))
+ if (isExceptionErrorEnabled) {
+ Text(text = exceptionMessage, color = VaniteColors.getTextColor())
+ } else {
+ Text(text = customErrorMessage, color = VaniteColors.getTextColor())
+ }
+ }
+ }
+ }
+
+ override fun onBackPressed() {
+ val isScreenDismissEnabled = intent?.extras?.getBoolean(IS_SCREEN_DISMISS_ENABLED, false) ?: false
+ if (isScreenDismissEnabled) {
+ super.onBackPressed()
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteBaseViewModel.kt b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteBaseViewModel.kt
new file mode 100644
index 0000000..9bf57d2
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteBaseViewModel.kt
@@ -0,0 +1,75 @@
+package io.vanite.android.compose.logic
+
+
+import androidx.lifecycle.ViewModel
+import androidx.lifecycle.viewModelScope
+import io.vanite.android.compose.VaniteApplicationState
+import io.vanite.android.compose.props.VaniteAction
+import io.vanite.android.compose.props.VaniteEither
+import io.vanite.android.compose.props.VaniteState
+import kotlinx.coroutines.CoroutineScope
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.cancel
+import kotlinx.coroutines.channels.consumeEach
+import kotlinx.coroutines.launch
+
+
+abstract class VaniteBaseViewModel: ViewModel() {
+
+ protected val scope: CoroutineScope = viewModelScope
+ protected var state: StateType? = null
+
+ open fun initializeViewModel() {
+ getSupportedUseCases().forEach { useCase ->
+ scope.launch(Dispatchers.IO) {
+ useCase.getChannelListener().consumeEach {
+ scope.launch(Dispatchers.Main) {
+ onListenerTriggered(useCase.getUseCaseKey(),
+ it as VaniteApplicationState
+ )
+ }
+ }
+ }
+ }
+ }
+
+ private fun clear(): VaniteEither {
+ return try {
+ scope.cancel()
+ getSupportedUseCases().forEach {
+ it.clear()
+ }
+
+ VaniteEither(true, null)
+ } catch (ex: Exception) {
+ VaniteEither(null, ex)
+ }
+ }
+
+ override fun onCleared() {
+ val state = clear()
+ state.onStateTriggered {
+ println("ViewModel State Cleared Success")
+ }
+
+ state.onSecondStateTriggered {
+ println("ViewModel State Failed to Clear With Exception : ${it.message}")
+ }
+ super.onCleared()
+ }
+
+ open fun getCurrentState(): State? {
+ return this.state as? State
+ }
+
+ open fun onNewStateTriggered(newState: State) = Unit
+
+ abstract fun executeAction(action: Action)
+
+ abstract fun getInitialState(): State
+
+ abstract fun onListenerTriggered(key: String, value: VaniteApplicationState)
+
+ abstract fun getSupportedUseCases(): ArrayList>
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCase.kt b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCase.kt
new file mode 100644
index 0000000..1bbc348
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCase.kt
@@ -0,0 +1,69 @@
+package io.vanite.android.compose.logic
+
+
+import io.vanite.android.compose.VaniteApplicationState
+import kotlinx.coroutines.CoroutineScope
+import kotlinx.coroutines.Deferred
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.SupervisorJob
+import kotlinx.coroutines.async
+import kotlinx.coroutines.channels.Channel
+import kotlinx.coroutines.channels.ReceiveChannel
+import kotlinx.coroutines.launch
+import kotlinx.coroutines.withContext
+import kotlin.coroutines.CoroutineContext
+
+abstract class VaniteUseCase: CoroutineScope, VaniteUseCaseType {
+
+ private val parentJob = SupervisorJob()
+ private val backgroundDispatcher = Dispatchers.IO
+ private val resultChannel: Channel> by lazy { Channel() }
+ private val receiveChannel: ReceiveChannel> by lazy { resultChannel }
+
+ override val coroutineContext: CoroutineContext
+ get() = parentJob + backgroundDispatcher
+
+ override fun getChannelListener(): ReceiveChannel> {
+ return this.receiveChannel
+ }
+
+ protected fun onSendState(state: VaniteApplicationState) {
+ launch {
+ resultChannel.send(state)
+ }
+ }
+
+ protected fun onSendLoadingState(isLoading: Boolean) {
+ when (isLoading) {
+ true -> onSendState(VaniteApplicationState.Loading)
+ false -> onSendState(VaniteApplicationState.Loaded)
+ }
+ }
+
+ override fun clear() {
+ this.resultChannel.close()
+ parentJob.cancel()
+ }
+
+ protected abstract fun run(args: Arguments)
+
+ /**
+ * Calling the Class With it's Name to Run the UseCase
+ * UseCase Method is Called in Background Thread
+ */
+ operator fun invoke(params: Arguments) {
+ launch {
+ withContext(backgroundDispatcher) {
+ run(params)
+ }
+ }
+ }
+
+ /**
+ * Start Async Jobs Inside Each UseCase to Not Blocking the Current Thread
+ */
+ protected fun startAsync(block: suspend () -> T): Deferred = async(parentJob) {
+ block()
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCaseType.kt b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCaseType.kt
new file mode 100644
index 0000000..4bf729e
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteUseCaseType.kt
@@ -0,0 +1,15 @@
+package io.vanite.android.compose.logic
+
+
+import io.vanite.android.compose.VaniteApplicationState
+import kotlinx.coroutines.channels.ReceiveChannel
+
+interface VaniteUseCaseType {
+
+ fun clear()
+
+ fun getChannelListener(): ReceiveChannel>
+
+ fun getUseCaseKey(): String
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteViewModel.kt b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteViewModel.kt
new file mode 100644
index 0000000..8ed3a14
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/logic/VaniteViewModel.kt
@@ -0,0 +1,42 @@
+package io.vanite.android.compose.logic
+
+
+import android.text.TextUtils
+import androidx.compose.runtime.mutableStateOf
+import io.vanite.android.compose.props.VaniteAction
+import io.vanite.android.compose.props.VaniteState
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.flow.MutableStateFlow
+import kotlinx.coroutines.flow.update
+import kotlinx.coroutines.launch
+
+
+abstract class VaniteViewModel: VaniteBaseViewModel>() {
+
+ val errorMessageListener by lazy { mutableStateOf("") }
+ val errorScreenListener by lazy { mutableStateOf(null) }
+
+ override fun initializeViewModel() {
+ super.initializeViewModel()
+ if (state == null) {
+ state = MutableStateFlow(getInitialState())
+ }
+
+ scope.launch(Dispatchers.IO) {
+ state?.collect {
+ onNewStateTriggered(it)
+ }
+ }
+ }
+
+ protected fun onAcceptNewState(newState: State) {
+ scope.launch(Dispatchers.IO) {
+ state?.update { newState }
+ }
+ }
+
+ override fun getCurrentState(): State? {
+ return state?.value
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteAction.kt b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteAction.kt
new file mode 100644
index 0000000..9797b04
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteAction.kt
@@ -0,0 +1,4 @@
+package io.vanite.android.compose.props
+
+interface VaniteAction {
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteEither.kt b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteEither.kt
new file mode 100644
index 0000000..b9d3a9c
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteEither.kt
@@ -0,0 +1,20 @@
+package io.vanite.android.compose.props
+
+data class VaniteEither(
+ val state: State?,
+ val secondState: SecondState?
+) {
+
+ fun onStateTriggered(onTriggered: (State) -> Unit) {
+ if (this.state != null) {
+ onTriggered(this.state)
+ }
+ }
+
+ fun onSecondStateTriggered(onTriggered: (SecondState) -> Unit) {
+ if (this.secondState != null) {
+ onTriggered(this.secondState)
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteState.kt b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteState.kt
new file mode 100644
index 0000000..93d652b
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/props/VaniteState.kt
@@ -0,0 +1,4 @@
+package io.vanite.android.compose.props
+
+interface VaniteState {
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/ui/Theme.kt b/vanite-compose/src/main/java/io/vanite/android/compose/ui/Theme.kt
new file mode 100644
index 0000000..80d89fe
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/ui/Theme.kt
@@ -0,0 +1,83 @@
+package io.vanite.android.compose.ui
+
+import android.os.Build
+import androidx.compose.foundation.isSystemInDarkTheme
+import androidx.compose.material3.ColorScheme
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.material3.Typography
+import androidx.compose.material3.dynamicDarkColorScheme
+import androidx.compose.material3.dynamicLightColorScheme
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.graphics.Color
+import androidx.compose.ui.platform.LocalContext
+import androidx.compose.ui.platform.LocalView
+import com.google.accompanist.systemuicontroller.rememberSystemUiController
+import androidx.compose.ui.text.TextStyle
+import androidx.compose.ui.text.font.FontFamily
+import androidx.compose.ui.text.font.FontWeight
+import androidx.compose.ui.unit.sp
+
+// Set of Material typography styles to start with
+val Typography = Typography(
+ bodyLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 16.sp,
+ lineHeight = 24.sp,
+ letterSpacing = 0.5.sp
+ )
+ /* Other default text styles to override
+ titleLarge = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Normal,
+ fontSize = 22.sp,
+ lineHeight = 28.sp,
+ letterSpacing = 0.sp
+ ),
+ labelSmall = TextStyle(
+ fontFamily = FontFamily.Default,
+ fontWeight = FontWeight.Medium,
+ fontSize = 11.sp,
+ lineHeight = 16.sp,
+ letterSpacing = 0.5.sp
+ )
+ */
+)
+
+@Composable
+fun VaniteTheme(
+ darkTheme: Boolean = isSystemInDarkTheme(),
+ // Dynamic color is available on Android 12+
+ dynamicColor: Boolean = true,
+ whiteModeStatusBarColor: Color,
+ darkModeStatusBarColor: Color,
+ whiteColorSchema: ColorScheme,
+ darkColorSchema: ColorScheme,
+ content: @Composable () -> Unit
+) {
+ val useDynamicColors = Build.VERSION.SDK_INT >= Build.VERSION_CODES.S
+ val colors = when {
+ useDynamicColors && darkTheme -> dynamicDarkColorScheme(LocalContext.current)
+ useDynamicColors && !darkTheme -> dynamicLightColorScheme(LocalContext.current)
+ darkTheme -> darkColorSchema
+ else -> whiteColorSchema
+ }
+
+ val view = LocalView.current
+ if (!view.isInEditMode) {
+ val systemUiController = rememberSystemUiController()
+ if (darkTheme) {
+ systemUiController.setSystemBarsColor(color = darkModeStatusBarColor)
+ } else{
+ systemUiController.setSystemBarsColor(color = whiteModeStatusBarColor)
+ }
+ }
+
+
+ MaterialTheme(
+ colorScheme = colors,
+ typography = Typography,
+ content = content
+ )
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteBaseScreen.kt b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteBaseScreen.kt
new file mode 100644
index 0000000..aba81fc
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteBaseScreen.kt
@@ -0,0 +1,165 @@
+package io.vanite.android.compose.ui
+
+
+import android.content.Intent
+import android.os.Bundle
+import android.text.TextUtils
+import androidx.activity.ComponentActivity
+import androidx.activity.compose.setContent
+import androidx.compose.foundation.layout.Box
+import androidx.compose.foundation.layout.padding
+import androidx.compose.material.Scaffold
+import androidx.compose.material.ScaffoldState
+import androidx.compose.material.SnackbarDuration
+import androidx.compose.material.rememberScaffoldState
+import androidx.compose.material3.ColorScheme
+import androidx.compose.material3.darkColorScheme
+import androidx.compose.material3.lightColorScheme
+import androidx.compose.runtime.Composable
+import androidx.compose.runtime.LaunchedEffect
+import androidx.compose.runtime.rememberCoroutineScope
+import androidx.compose.ui.Modifier
+import androidx.compose.ui.graphics.Color
+import io.vanite.android.compose.components.VaniteErrorScreen
+import io.vanite.android.compose.components.VaniteToolbar
+import io.vanite.android.compose.logic.VaniteViewModel
+import io.vanite.android.compose.props.VaniteAction
+import io.vanite.android.compose.props.VaniteState
+import kotlinx.coroutines.CoroutineScope
+import kotlinx.coroutines.launch
+
+abstract class VaniteBaseScreen> : ComponentActivity() {
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContent {
+ VaniteTheme(
+ whiteModeStatusBarColor = getStatusBarWhiteMode(),
+ darkModeStatusBarColor = getStatusBarDarkMode(),
+ whiteColorSchema = getApplicationWhiteModeColorScheme(),
+ darkColorSchema = getApplicationDarkModeColorScheme()
+ ) {
+ val scaffoldState = rememberScaffoldState()
+ val corotineScope = rememberCoroutineScope()
+ Scaffold(
+ scaffoldState = scaffoldState,
+ topBar = {
+ if (isToolbarEnabled()) {
+ VaniteToolbar(
+ getApplicationName(),
+ true,
+ this
+ )
+ }
+
+ if (!isToolbarEnabled() && isCustomToolbarEnabled()) {
+ getCustomToolbar()
+ }
+ }
+ ) {
+ Box(modifier = Modifier.padding(it)) {
+ getComposableView(savedInstanceState, scaffoldState, corotineScope).apply {
+ LaunchedEffect(key1 = errorScreenListener.value) {
+ if (errorScreenListener.value != null) {
+ VaniteErrorScreen.startScreen(
+ this@VaniteBaseScreen,
+ errorScreenListener.value,
+ getErrorScreenTitle(),
+ isErrorExceptionEnabled(),
+ getCustomErrorScreenMessage(),
+ getErrorScreenIconUrl(),
+ isErrorScreenDismissEnabled()
+ )
+ errorScreenListener.value = null
+ }
+ }
+
+ LaunchedEffect(key1 = errorMessageListener.value) {
+ if (!TextUtils.isEmpty(errorMessageListener.value)) {
+ corotineScope.launch {
+ scaffoldState.snackbarHostState.showSnackbar(errorMessageListener.value, duration = SnackbarDuration.Short)
+ errorMessageListener.value = ""
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+
+ onScreenStarted(savedInstanceState)
+ }
+
+ @Composable
+ abstract fun getComposableView(savedInstanceState: Bundle?, scaffoldState: ScaffoldState, coroutinesScope: CoroutineScope): ViewModel
+
+ open fun onScreenStarted(savedInstanceState: Bundle?) = Unit
+
+ @Composable
+ protected open fun getApplicationColor(): Color {
+ return Color.White
+ }
+
+ @Composable
+ protected fun getTextColor(): Color {
+ return VaniteColors.getTextColor()
+ }
+
+ @Composable
+ protected fun getWhiteColor(): Color {
+ return Color.White
+ }
+
+ protected open fun isToolbarEnabled(): Boolean {
+ return true
+ }
+
+ protected open fun isCustomToolbarEnabled(): Boolean {
+ return false
+ }
+
+ protected open fun getApplicationName(): String {
+ return "Vanite"
+ }
+
+ protected open fun getErrorScreenTitle(): String {
+ return "Error Title"
+ }
+
+ protected open fun isErrorExceptionEnabled(): Boolean {
+ return true
+ }
+
+ protected open fun getCustomErrorScreenMessage(): String {
+ return "UnExpected Error"
+ }
+
+ protected open fun getErrorScreenIconUrl(): String {
+ return ""
+ }
+
+ protected open fun isErrorScreenDismissEnabled(): Boolean {
+ return true
+ }
+
+ protected open fun getStatusBarWhiteMode(): Color {
+ return Color.White
+ }
+
+ protected open fun getStatusBarDarkMode(): Color {
+ return Color.Black
+ }
+
+ protected open fun getApplicationWhiteModeColorScheme(): ColorScheme {
+ return lightColorScheme()
+ }
+
+ protected open fun getApplicationDarkModeColorScheme(): ColorScheme {
+ return darkColorScheme()
+ }
+
+ @Composable
+ protected open fun getCustomToolbar() = Unit
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteColors.kt b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteColors.kt
new file mode 100644
index 0000000..a4d792e
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteColors.kt
@@ -0,0 +1,68 @@
+package io.vanite.android.compose.ui
+
+
+import androidx.compose.foundation.isSystemInDarkTheme
+import androidx.compose.material3.MaterialTheme
+import androidx.compose.runtime.Composable
+import androidx.compose.ui.graphics.Color
+
+object VaniteColors {
+
+ @Composable
+ fun getScreenBackgroundColor(): Color {
+ return when (isSystemInDarkTheme()) {
+ true -> Color(0xFF1D1D1D)
+ false -> Color(0xFFF1F1F1)
+ }
+ }
+
+ @Composable
+ fun getTextColor(): Color {
+ return when (!isSystemInDarkTheme()) {
+ true -> Color(0xFF000000)
+ false -> Color(0xFFFFFFFF)
+ }
+ }
+
+ @Composable
+ fun getSeconderyCardsColor(): Color {
+ return MaterialTheme.colorScheme.background
+ }
+
+ @Composable
+ fun getPrimaryColor(): Color {
+ return MaterialTheme.colorScheme.primary
+ }
+
+ @Composable
+ fun getApplicationColor(): Color {
+ return when (isSystemInDarkTheme()) {
+ true -> Color(0xFFFFD600)
+ false -> Color(0xFFFF5252)
+ }
+ }
+
+ @Composable
+ fun getApplicationSecondColor(): Color {
+ return Color(0xFFF18484)
+ }
+
+ @Composable
+ fun getSecondColor(): Color {
+ return MaterialTheme.colorScheme.primaryContainer
+ }
+
+ @Composable
+ fun getBackgroundSecondColor(): Color {
+ return when (isSystemInDarkTheme()) {
+ true -> Color(0xFF2C2C2C)
+ false -> Color(0xFFECECEC)
+ }
+ }
+
+ @Composable
+ fun getOutlineColor(): Color {
+ return MaterialTheme.colorScheme.outline
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteComposeNavigationBuilder.kt b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteComposeNavigationBuilder.kt
new file mode 100644
index 0000000..464f0cd
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteComposeNavigationBuilder.kt
@@ -0,0 +1,25 @@
+package io.vanite.android.compose.ui
+
+import androidx.compose.runtime.Composable
+import androidx.navigation.NavGraphBuilder
+import androidx.navigation.compose.composable
+
+abstract class VaniteComposeNavigationBuilder {
+
+ fun initGraphConfiguration(
+ navHost: NavGraphBuilder,
+ onComposableLoaded: (Navigation) -> Unit = {}
+ ) {
+ getSupportedComposables().apply {
+ for ((key, value) in this) {
+ navHost.composable(key.getRoute()) {
+ value()
+ onComposableLoaded(key)
+ }
+ }
+ }
+ }
+
+ abstract fun getSupportedComposables(): HashMap Unit>
+
+}
diff --git a/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteRouter.kt b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteRouter.kt
new file mode 100644
index 0000000..2f9dd68
--- /dev/null
+++ b/vanite-compose/src/main/java/io/vanite/android/compose/ui/VaniteRouter.kt
@@ -0,0 +1,5 @@
+package io.vanite.android.compose.ui
+
+interface VaniteRouter {
+ fun getRoute(): String
+}
\ No newline at end of file
diff --git a/vanite-compose/src/test/java/io/vanite/android/compose/ExampleUnitTest.kt b/vanite-compose/src/test/java/io/vanite/android/compose/ExampleUnitTest.kt
new file mode 100644
index 0000000..f2866b9
--- /dev/null
+++ b/vanite-compose/src/test/java/io/vanite/android/compose/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package io.vanite.android.compose
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/vanite-data/build.gradle b/vanite-data/build.gradle
index 09c160d..3705ce0 100644
--- a/vanite-data/build.gradle
+++ b/vanite-data/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.data'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-data/src/main/AndroidManifest.xml b/vanite-data/src/main/AndroidManifest.xml
index b20727a..94cbbcf 100644
--- a/vanite-data/src/main/AndroidManifest.xml
+++ b/vanite-data/src/main/AndroidManifest.xml
@@ -1,2 +1 @@
-
+
diff --git a/vanite-firebase/build.gradle b/vanite-firebase/build.gradle
index c5eed4e..9d578cf 100644
--- a/vanite-firebase/build.gradle
+++ b/vanite-firebase/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.firebase'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-firebase/src/main/AndroidManifest.xml b/vanite-firebase/src/main/AndroidManifest.xml
index 3f2b667..2452d30 100644
--- a/vanite-firebase/src/main/AndroidManifest.xml
+++ b/vanite-firebase/src/main/AndroidManifest.xml
@@ -1,2 +1,2 @@
+ />
diff --git a/vanite-log/build.gradle b/vanite-log/build.gradle
index 1391576..d1552a2 100644
--- a/vanite-log/build.gradle
+++ b/vanite-log/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.log'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-log/build/generated/source/buildConfig/release/io/vanite/android/state/BuildConfig.java b/vanite-log/build/generated/source/buildConfig/release/io/vanite/android/state/BuildConfig.java
deleted file mode 100644
index 8252238..0000000
--- a/vanite-log/build/generated/source/buildConfig/release/io/vanite/android/state/BuildConfig.java
+++ /dev/null
@@ -1,10 +0,0 @@
-/**
- * Automatically generated file. DO NOT MODIFY
- */
-package io.vanite.android.state;
-
-public final class BuildConfig {
- public static final boolean DEBUG = false;
- public static final String LIBRARY_PACKAGE_NAME = "io.vanite.android.state";
- public static final String BUILD_TYPE = "release";
-}
diff --git a/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml b/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml
index 9954e62..b3a9c1b 100644
--- a/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml
+++ b/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/AndroidManifest.xml
@@ -1,9 +1,7 @@
+ package="io.vanite.android.log" >
-
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json b/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json
index 36650ec..397e047 100644
--- a/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json
+++ b/vanite-log/build/intermediates/aapt_friendly_merged_manifests/release/aapt/output-metadata.json
@@ -4,7 +4,7 @@
"type": "AAPT_FRIENDLY_MERGED_MANIFESTS",
"kind": "Directory"
},
- "applicationId": "io.vanite.android.state",
+ "applicationId": "io.vanite.android.log",
"variantName": "release",
"elements": [
{
diff --git a/vanite-log/build/intermediates/aar_main_jar/release/classes.jar b/vanite-log/build/intermediates/aar_main_jar/release/classes.jar
index fe83792..faae4ba 100644
Binary files a/vanite-log/build/intermediates/aar_main_jar/release/classes.jar and b/vanite-log/build/intermediates/aar_main_jar/release/classes.jar differ
diff --git a/vanite-log/build/intermediates/aar_metadata/release/aar-metadata.properties b/vanite-log/build/intermediates/aar_metadata/release/aar-metadata.properties
index d8f70c0..776557e 100644
--- a/vanite-log/build/intermediates/aar_metadata/release/aar-metadata.properties
+++ b/vanite-log/build/intermediates/aar_metadata/release/aar-metadata.properties
@@ -1,3 +1,5 @@
aarFormatVersion=1.0
aarMetadataVersion=1.0
minCompileSdk=1
+minCompileSdkExtension=0
+minAndroidGradlePluginVersion=1.0.0
diff --git a/vanite-log/build/intermediates/compile_r_class_jar/release/R.jar b/vanite-log/build/intermediates/compile_r_class_jar/release/R.jar
index 875eea0..6b81755 100644
Binary files a/vanite-log/build/intermediates/compile_r_class_jar/release/R.jar and b/vanite-log/build/intermediates/compile_r_class_jar/release/R.jar differ
diff --git a/vanite-log/build/intermediates/compile_symbol_list/release/R.txt b/vanite-log/build/intermediates/compile_symbol_list/release/R.txt
index 5fba331..e69de29 100644
--- a/vanite-log/build/intermediates/compile_symbol_list/release/R.txt
+++ b/vanite-log/build/intermediates/compile_symbol_list/release/R.txt
@@ -1,1707 +0,0 @@
-int anim abc_fade_in 0x0
-int anim abc_fade_out 0x0
-int anim abc_grow_fade_in_from_bottom 0x0
-int anim abc_popup_enter 0x0
-int anim abc_popup_exit 0x0
-int anim abc_shrink_fade_out_from_bottom 0x0
-int anim abc_slide_in_bottom 0x0
-int anim abc_slide_in_top 0x0
-int anim abc_slide_out_bottom 0x0
-int anim abc_slide_out_top 0x0
-int anim abc_tooltip_enter 0x0
-int anim abc_tooltip_exit 0x0
-int anim btn_checkbox_to_checked_box_inner_merged_animation 0x0
-int anim btn_checkbox_to_checked_box_outer_merged_animation 0x0
-int anim btn_checkbox_to_checked_icon_null_animation 0x0
-int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x0
-int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x0
-int anim btn_checkbox_to_unchecked_icon_null_animation 0x0
-int anim btn_radio_to_off_mtrl_dot_group_animation 0x0
-int anim btn_radio_to_off_mtrl_ring_outer_animation 0x0
-int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x0
-int anim btn_radio_to_on_mtrl_dot_group_animation 0x0
-int anim btn_radio_to_on_mtrl_ring_outer_animation 0x0
-int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x0
-int anim fragment_fast_out_extra_slow_in 0x0
-int animator fragment_close_enter 0x0
-int animator fragment_close_exit 0x0
-int animator fragment_fade_enter 0x0
-int animator fragment_fade_exit 0x0
-int animator fragment_open_enter 0x0
-int animator fragment_open_exit 0x0
-int attr actionBarDivider 0x0
-int attr actionBarItemBackground 0x0
-int attr actionBarPopupTheme 0x0
-int attr actionBarSize 0x0
-int attr actionBarSplitStyle 0x0
-int attr actionBarStyle 0x0
-int attr actionBarTabBarStyle 0x0
-int attr actionBarTabStyle 0x0
-int attr actionBarTabTextStyle 0x0
-int attr actionBarTheme 0x0
-int attr actionBarWidgetTheme 0x0
-int attr actionButtonStyle 0x0
-int attr actionDropDownStyle 0x0
-int attr actionLayout 0x0
-int attr actionMenuTextAppearance 0x0
-int attr actionMenuTextColor 0x0
-int attr actionModeBackground 0x0
-int attr actionModeCloseButtonStyle 0x0
-int attr actionModeCloseContentDescription 0x0
-int attr actionModeCloseDrawable 0x0
-int attr actionModeCopyDrawable 0x0
-int attr actionModeCutDrawable 0x0
-int attr actionModeFindDrawable 0x0
-int attr actionModePasteDrawable 0x0
-int attr actionModePopupWindowStyle 0x0
-int attr actionModeSelectAllDrawable 0x0
-int attr actionModeShareDrawable 0x0
-int attr actionModeSplitBackground 0x0
-int attr actionModeStyle 0x0
-int attr actionModeTheme 0x0
-int attr actionModeWebSearchDrawable 0x0
-int attr actionOverflowButtonStyle 0x0
-int attr actionOverflowMenuStyle 0x0
-int attr actionProviderClass 0x0
-int attr actionViewClass 0x0
-int attr activityChooserViewStyle 0x0
-int attr alertDialogButtonGroupStyle 0x0
-int attr alertDialogCenterButtons 0x0
-int attr alertDialogStyle 0x0
-int attr alertDialogTheme 0x0
-int attr allowStacking 0x0
-int attr alpha 0x0
-int attr alphabeticModifiers 0x0
-int attr arrowHeadLength 0x0
-int attr arrowShaftLength 0x0
-int attr autoCompleteTextViewStyle 0x0
-int attr autoSizeMaxTextSize 0x0
-int attr autoSizeMinTextSize 0x0
-int attr autoSizePresetSizes 0x0
-int attr autoSizeStepGranularity 0x0
-int attr autoSizeTextType 0x0
-int attr background 0x0
-int attr backgroundSplit 0x0
-int attr backgroundStacked 0x0
-int attr backgroundTint 0x0
-int attr backgroundTintMode 0x0
-int attr barLength 0x0
-int attr borderlessButtonStyle 0x0
-int attr buttonBarButtonStyle 0x0
-int attr buttonBarNegativeButtonStyle 0x0
-int attr buttonBarNeutralButtonStyle 0x0
-int attr buttonBarPositiveButtonStyle 0x0
-int attr buttonBarStyle 0x0
-int attr buttonCompat 0x0
-int attr buttonGravity 0x0
-int attr buttonIconDimen 0x0
-int attr buttonPanelSideLayout 0x0
-int attr buttonStyle 0x0
-int attr buttonStyleSmall 0x0
-int attr buttonTint 0x0
-int attr buttonTintMode 0x0
-int attr checkboxStyle 0x0
-int attr checkedTextViewStyle 0x0
-int attr closeIcon 0x0
-int attr closeItemLayout 0x0
-int attr collapseContentDescription 0x0
-int attr collapseIcon 0x0
-int attr color 0x0
-int attr colorAccent 0x0
-int attr colorBackgroundFloating 0x0
-int attr colorButtonNormal 0x0
-int attr colorControlActivated 0x0
-int attr colorControlHighlight 0x0
-int attr colorControlNormal 0x0
-int attr colorError 0x0
-int attr colorPrimary 0x0
-int attr colorPrimaryDark 0x0
-int attr colorSwitchThumbNormal 0x0
-int attr commitIcon 0x0
-int attr contentDescription 0x0
-int attr contentInsetEnd 0x0
-int attr contentInsetEndWithActions 0x0
-int attr contentInsetLeft 0x0
-int attr contentInsetRight 0x0
-int attr contentInsetStart 0x0
-int attr contentInsetStartWithNavigation 0x0
-int attr controlBackground 0x0
-int attr customNavigationLayout 0x0
-int attr defaultQueryHint 0x0
-int attr dialogCornerRadius 0x0
-int attr dialogPreferredPadding 0x0
-int attr dialogTheme 0x0
-int attr displayOptions 0x0
-int attr divider 0x0
-int attr dividerHorizontal 0x0
-int attr dividerPadding 0x0
-int attr dividerVertical 0x0
-int attr drawableBottomCompat 0x0
-int attr drawableEndCompat 0x0
-int attr drawableLeftCompat 0x0
-int attr drawableRightCompat 0x0
-int attr drawableSize 0x0
-int attr drawableStartCompat 0x0
-int attr drawableTint 0x0
-int attr drawableTintMode 0x0
-int attr drawableTopCompat 0x0
-int attr drawerArrowStyle 0x0
-int attr dropDownListViewStyle 0x0
-int attr dropdownListPreferredItemHeight 0x0
-int attr editTextBackground 0x0
-int attr editTextColor 0x0
-int attr editTextStyle 0x0
-int attr elevation 0x0
-int attr expandActivityOverflowButtonDrawable 0x0
-int attr firstBaselineToTopHeight 0x0
-int attr font 0x0
-int attr fontFamily 0x0
-int attr fontProviderAuthority 0x0
-int attr fontProviderCerts 0x0
-int attr fontProviderFetchStrategy 0x0
-int attr fontProviderFetchTimeout 0x0
-int attr fontProviderPackage 0x0
-int attr fontProviderQuery 0x0
-int attr fontProviderSystemFontFamily 0x0
-int attr fontStyle 0x0
-int attr fontVariationSettings 0x0
-int attr fontWeight 0x0
-int attr gapBetweenBars 0x0
-int attr goIcon 0x0
-int attr height 0x0
-int attr hideOnContentScroll 0x0
-int attr homeAsUpIndicator 0x0
-int attr homeLayout 0x0
-int attr icon 0x0
-int attr iconTint 0x0
-int attr iconTintMode 0x0
-int attr iconifiedByDefault 0x0
-int attr imageButtonStyle 0x0
-int attr indeterminateProgressStyle 0x0
-int attr initialActivityCount 0x0
-int attr isLightTheme 0x0
-int attr itemPadding 0x0
-int attr lastBaselineToBottomHeight 0x0
-int attr layout 0x0
-int attr lineHeight 0x0
-int attr listChoiceBackgroundIndicator 0x0
-int attr listChoiceIndicatorMultipleAnimated 0x0
-int attr listChoiceIndicatorSingleAnimated 0x0
-int attr listDividerAlertDialog 0x0
-int attr listItemLayout 0x0
-int attr listLayout 0x0
-int attr listMenuViewStyle 0x0
-int attr listPopupWindowStyle 0x0
-int attr listPreferredItemHeight 0x0
-int attr listPreferredItemHeightLarge 0x0
-int attr listPreferredItemHeightSmall 0x0
-int attr listPreferredItemPaddingEnd 0x0
-int attr listPreferredItemPaddingLeft 0x0
-int attr listPreferredItemPaddingRight 0x0
-int attr listPreferredItemPaddingStart 0x0
-int attr logo 0x0
-int attr logoDescription 0x0
-int attr maxButtonHeight 0x0
-int attr measureWithLargestChild 0x0
-int attr menu 0x0
-int attr multiChoiceItemLayout 0x0
-int attr navigationContentDescription 0x0
-int attr navigationIcon 0x0
-int attr navigationMode 0x0
-int attr nestedScrollViewStyle 0x0
-int attr numericModifiers 0x0
-int attr overlapAnchor 0x0
-int attr paddingBottomNoButtons 0x0
-int attr paddingEnd 0x0
-int attr paddingStart 0x0
-int attr paddingTopNoTitle 0x0
-int attr panelBackground 0x0
-int attr panelMenuListTheme 0x0
-int attr panelMenuListWidth 0x0
-int attr popupMenuStyle 0x0
-int attr popupTheme 0x0
-int attr popupWindowStyle 0x0
-int attr preserveIconSpacing 0x0
-int attr progressBarPadding 0x0
-int attr progressBarStyle 0x0
-int attr queryBackground 0x0
-int attr queryHint 0x0
-int attr queryPatterns 0x0
-int attr radioButtonStyle 0x0
-int attr ratingBarStyle 0x0
-int attr ratingBarStyleIndicator 0x0
-int attr ratingBarStyleSmall 0x0
-int attr searchHintIcon 0x0
-int attr searchIcon 0x0
-int attr searchViewStyle 0x0
-int attr seekBarStyle 0x0
-int attr selectableItemBackground 0x0
-int attr selectableItemBackgroundBorderless 0x0
-int attr shortcutMatchRequired 0x0
-int attr showAsAction 0x0
-int attr showDividers 0x0
-int attr showText 0x0
-int attr showTitle 0x0
-int attr singleChoiceItemLayout 0x0
-int attr spinBars 0x0
-int attr spinnerDropDownItemStyle 0x0
-int attr spinnerStyle 0x0
-int attr splitTrack 0x0
-int attr srcCompat 0x0
-int attr state_above_anchor 0x0
-int attr subMenuArrow 0x0
-int attr submitBackground 0x0
-int attr subtitle 0x0
-int attr subtitleTextAppearance 0x0
-int attr subtitleTextColor 0x0
-int attr subtitleTextStyle 0x0
-int attr suggestionRowLayout 0x0
-int attr switchMinWidth 0x0
-int attr switchPadding 0x0
-int attr switchStyle 0x0
-int attr switchTextAppearance 0x0
-int attr textAllCaps 0x0
-int attr textAppearanceLargePopupMenu 0x0
-int attr textAppearanceListItem 0x0
-int attr textAppearanceListItemSecondary 0x0
-int attr textAppearanceListItemSmall 0x0
-int attr textAppearancePopupMenuHeader 0x0
-int attr textAppearanceSearchResultSubtitle 0x0
-int attr textAppearanceSearchResultTitle 0x0
-int attr textAppearanceSmallPopupMenu 0x0
-int attr textColorAlertDialogListItem 0x0
-int attr textColorSearchUrl 0x0
-int attr textLocale 0x0
-int attr theme 0x0
-int attr thickness 0x0
-int attr thumbTextPadding 0x0
-int attr thumbTint 0x0
-int attr thumbTintMode 0x0
-int attr tickMark 0x0
-int attr tickMarkTint 0x0
-int attr tickMarkTintMode 0x0
-int attr tint 0x0
-int attr tintMode 0x0
-int attr title 0x0
-int attr titleMargin 0x0
-int attr titleMarginBottom 0x0
-int attr titleMarginEnd 0x0
-int attr titleMarginStart 0x0
-int attr titleMarginTop 0x0
-int attr titleMargins 0x0
-int attr titleTextAppearance 0x0
-int attr titleTextColor 0x0
-int attr titleTextStyle 0x0
-int attr toolbarNavigationButtonStyle 0x0
-int attr toolbarStyle 0x0
-int attr tooltipForegroundColor 0x0
-int attr tooltipFrameBackground 0x0
-int attr tooltipText 0x0
-int attr track 0x0
-int attr trackTint 0x0
-int attr trackTintMode 0x0
-int attr ttcIndex 0x0
-int attr viewInflaterClass 0x0
-int attr voiceIcon 0x0
-int attr windowActionBar 0x0
-int attr windowActionBarOverlay 0x0
-int attr windowActionModeOverlay 0x0
-int attr windowFixedHeightMajor 0x0
-int attr windowFixedHeightMinor 0x0
-int attr windowFixedWidthMajor 0x0
-int attr windowFixedWidthMinor 0x0
-int attr windowMinWidthMajor 0x0
-int attr windowMinWidthMinor 0x0
-int attr windowNoTitle 0x0
-int bool abc_action_bar_embed_tabs 0x0
-int bool abc_config_actionMenuItemAllCaps 0x0
-int color abc_background_cache_hint_selector_material_dark 0x0
-int color abc_background_cache_hint_selector_material_light 0x0
-int color abc_btn_colored_borderless_text_material 0x0
-int color abc_btn_colored_text_material 0x0
-int color abc_color_highlight_material 0x0
-int color abc_decor_view_status_guard 0x0
-int color abc_decor_view_status_guard_light 0x0
-int color abc_hint_foreground_material_dark 0x0
-int color abc_hint_foreground_material_light 0x0
-int color abc_primary_text_disable_only_material_dark 0x0
-int color abc_primary_text_disable_only_material_light 0x0
-int color abc_primary_text_material_dark 0x0
-int color abc_primary_text_material_light 0x0
-int color abc_search_url_text 0x0
-int color abc_search_url_text_normal 0x0
-int color abc_search_url_text_pressed 0x0
-int color abc_search_url_text_selected 0x0
-int color abc_secondary_text_material_dark 0x0
-int color abc_secondary_text_material_light 0x0
-int color abc_tint_btn_checkable 0x0
-int color abc_tint_default 0x0
-int color abc_tint_edittext 0x0
-int color abc_tint_seek_thumb 0x0
-int color abc_tint_spinner 0x0
-int color abc_tint_switch_track 0x0
-int color accent_material_dark 0x0
-int color accent_material_light 0x0
-int color androidx_core_ripple_material_light 0x0
-int color androidx_core_secondary_text_default_material_light 0x0
-int color background_floating_material_dark 0x0
-int color background_floating_material_light 0x0
-int color background_material_dark 0x0
-int color background_material_light 0x0
-int color bright_foreground_disabled_material_dark 0x0
-int color bright_foreground_disabled_material_light 0x0
-int color bright_foreground_inverse_material_dark 0x0
-int color bright_foreground_inverse_material_light 0x0
-int color bright_foreground_material_dark 0x0
-int color bright_foreground_material_light 0x0
-int color button_material_dark 0x0
-int color button_material_light 0x0
-int color dim_foreground_disabled_material_dark 0x0
-int color dim_foreground_disabled_material_light 0x0
-int color dim_foreground_material_dark 0x0
-int color dim_foreground_material_light 0x0
-int color error_color_material_dark 0x0
-int color error_color_material_light 0x0
-int color foreground_material_dark 0x0
-int color foreground_material_light 0x0
-int color highlighted_text_material_dark 0x0
-int color highlighted_text_material_light 0x0
-int color material_blue_grey_800 0x0
-int color material_blue_grey_900 0x0
-int color material_blue_grey_950 0x0
-int color material_deep_teal_200 0x0
-int color material_deep_teal_500 0x0
-int color material_grey_100 0x0
-int color material_grey_300 0x0
-int color material_grey_50 0x0
-int color material_grey_600 0x0
-int color material_grey_800 0x0
-int color material_grey_850 0x0
-int color material_grey_900 0x0
-int color notification_action_color_filter 0x0
-int color notification_icon_bg_color 0x0
-int color primary_dark_material_dark 0x0
-int color primary_dark_material_light 0x0
-int color primary_material_dark 0x0
-int color primary_material_light 0x0
-int color primary_text_default_material_dark 0x0
-int color primary_text_default_material_light 0x0
-int color primary_text_disabled_material_dark 0x0
-int color primary_text_disabled_material_light 0x0
-int color ripple_material_dark 0x0
-int color ripple_material_light 0x0
-int color secondary_text_default_material_dark 0x0
-int color secondary_text_default_material_light 0x0
-int color secondary_text_disabled_material_dark 0x0
-int color secondary_text_disabled_material_light 0x0
-int color switch_thumb_disabled_material_dark 0x0
-int color switch_thumb_disabled_material_light 0x0
-int color switch_thumb_material_dark 0x0
-int color switch_thumb_material_light 0x0
-int color switch_thumb_normal_material_dark 0x0
-int color switch_thumb_normal_material_light 0x0
-int color tooltip_background_dark 0x0
-int color tooltip_background_light 0x0
-int dimen abc_action_bar_content_inset_material 0x0
-int dimen abc_action_bar_content_inset_with_nav 0x0
-int dimen abc_action_bar_default_height_material 0x0
-int dimen abc_action_bar_default_padding_end_material 0x0
-int dimen abc_action_bar_default_padding_start_material 0x0
-int dimen abc_action_bar_elevation_material 0x0
-int dimen abc_action_bar_icon_vertical_padding_material 0x0
-int dimen abc_action_bar_overflow_padding_end_material 0x0
-int dimen abc_action_bar_overflow_padding_start_material 0x0
-int dimen abc_action_bar_stacked_max_height 0x0
-int dimen abc_action_bar_stacked_tab_max_width 0x0
-int dimen abc_action_bar_subtitle_bottom_margin_material 0x0
-int dimen abc_action_bar_subtitle_top_margin_material 0x0
-int dimen abc_action_button_min_height_material 0x0
-int dimen abc_action_button_min_width_material 0x0
-int dimen abc_action_button_min_width_overflow_material 0x0
-int dimen abc_alert_dialog_button_bar_height 0x0
-int dimen abc_alert_dialog_button_dimen 0x0
-int dimen abc_button_inset_horizontal_material 0x0
-int dimen abc_button_inset_vertical_material 0x0
-int dimen abc_button_padding_horizontal_material 0x0
-int dimen abc_button_padding_vertical_material 0x0
-int dimen abc_cascading_menus_min_smallest_width 0x0
-int dimen abc_config_prefDialogWidth 0x0
-int dimen abc_control_corner_material 0x0
-int dimen abc_control_inset_material 0x0
-int dimen abc_control_padding_material 0x0
-int dimen abc_dialog_corner_radius_material 0x0
-int dimen abc_dialog_fixed_height_major 0x0
-int dimen abc_dialog_fixed_height_minor 0x0
-int dimen abc_dialog_fixed_width_major 0x0
-int dimen abc_dialog_fixed_width_minor 0x0
-int dimen abc_dialog_list_padding_bottom_no_buttons 0x0
-int dimen abc_dialog_list_padding_top_no_title 0x0
-int dimen abc_dialog_min_width_major 0x0
-int dimen abc_dialog_min_width_minor 0x0
-int dimen abc_dialog_padding_material 0x0
-int dimen abc_dialog_padding_top_material 0x0
-int dimen abc_dialog_title_divider_material 0x0
-int dimen abc_disabled_alpha_material_dark 0x0
-int dimen abc_disabled_alpha_material_light 0x0
-int dimen abc_dropdownitem_icon_width 0x0
-int dimen abc_dropdownitem_text_padding_left 0x0
-int dimen abc_dropdownitem_text_padding_right 0x0
-int dimen abc_edit_text_inset_bottom_material 0x0
-int dimen abc_edit_text_inset_horizontal_material 0x0
-int dimen abc_edit_text_inset_top_material 0x0
-int dimen abc_floating_window_z 0x0
-int dimen abc_list_item_height_large_material 0x0
-int dimen abc_list_item_height_material 0x0
-int dimen abc_list_item_height_small_material 0x0
-int dimen abc_list_item_padding_horizontal_material 0x0
-int dimen abc_panel_menu_list_width 0x0
-int dimen abc_progress_bar_height_material 0x0
-int dimen abc_search_view_preferred_height 0x0
-int dimen abc_search_view_preferred_width 0x0
-int dimen abc_seekbar_track_background_height_material 0x0
-int dimen abc_seekbar_track_progress_height_material 0x0
-int dimen abc_select_dialog_padding_start_material 0x0
-int dimen abc_star_big 0x0
-int dimen abc_star_medium 0x0
-int dimen abc_star_small 0x0
-int dimen abc_switch_padding 0x0
-int dimen abc_text_size_body_1_material 0x0
-int dimen abc_text_size_body_2_material 0x0
-int dimen abc_text_size_button_material 0x0
-int dimen abc_text_size_caption_material 0x0
-int dimen abc_text_size_display_1_material 0x0
-int dimen abc_text_size_display_2_material 0x0
-int dimen abc_text_size_display_3_material 0x0
-int dimen abc_text_size_display_4_material 0x0
-int dimen abc_text_size_headline_material 0x0
-int dimen abc_text_size_large_material 0x0
-int dimen abc_text_size_medium_material 0x0
-int dimen abc_text_size_menu_header_material 0x0
-int dimen abc_text_size_menu_material 0x0
-int dimen abc_text_size_small_material 0x0
-int dimen abc_text_size_subhead_material 0x0
-int dimen abc_text_size_subtitle_material_toolbar 0x0
-int dimen abc_text_size_title_material 0x0
-int dimen abc_text_size_title_material_toolbar 0x0
-int dimen compat_button_inset_horizontal_material 0x0
-int dimen compat_button_inset_vertical_material 0x0
-int dimen compat_button_padding_horizontal_material 0x0
-int dimen compat_button_padding_vertical_material 0x0
-int dimen compat_control_corner_material 0x0
-int dimen compat_notification_large_icon_max_height 0x0
-int dimen compat_notification_large_icon_max_width 0x0
-int dimen disabled_alpha_material_dark 0x0
-int dimen disabled_alpha_material_light 0x0
-int dimen highlight_alpha_material_colored 0x0
-int dimen highlight_alpha_material_dark 0x0
-int dimen highlight_alpha_material_light 0x0
-int dimen hint_alpha_material_dark 0x0
-int dimen hint_alpha_material_light 0x0
-int dimen hint_pressed_alpha_material_dark 0x0
-int dimen hint_pressed_alpha_material_light 0x0
-int dimen notification_action_icon_size 0x0
-int dimen notification_action_text_size 0x0
-int dimen notification_big_circle_margin 0x0
-int dimen notification_content_margin_start 0x0
-int dimen notification_large_icon_height 0x0
-int dimen notification_large_icon_width 0x0
-int dimen notification_main_column_padding_top 0x0
-int dimen notification_media_narrow_margin 0x0
-int dimen notification_right_icon_size 0x0
-int dimen notification_right_side_padding_top 0x0
-int dimen notification_small_icon_background_padding 0x0
-int dimen notification_small_icon_size_as_large 0x0
-int dimen notification_subtext_size 0x0
-int dimen notification_top_pad 0x0
-int dimen notification_top_pad_large_text 0x0
-int dimen tooltip_corner_radius 0x0
-int dimen tooltip_horizontal_padding 0x0
-int dimen tooltip_margin 0x0
-int dimen tooltip_precise_anchor_extra_offset 0x0
-int dimen tooltip_precise_anchor_threshold 0x0
-int dimen tooltip_vertical_padding 0x0
-int dimen tooltip_y_offset_non_touch 0x0
-int dimen tooltip_y_offset_touch 0x0
-int drawable abc_ab_share_pack_mtrl_alpha 0x0
-int drawable abc_action_bar_item_background_material 0x0
-int drawable abc_btn_borderless_material 0x0
-int drawable abc_btn_check_material 0x0
-int drawable abc_btn_check_material_anim 0x0
-int drawable abc_btn_check_to_on_mtrl_000 0x0
-int drawable abc_btn_check_to_on_mtrl_015 0x0
-int drawable abc_btn_colored_material 0x0
-int drawable abc_btn_default_mtrl_shape 0x0
-int drawable abc_btn_radio_material 0x0
-int drawable abc_btn_radio_material_anim 0x0
-int drawable abc_btn_radio_to_on_mtrl_000 0x0
-int drawable abc_btn_radio_to_on_mtrl_015 0x0
-int drawable abc_btn_switch_to_on_mtrl_00001 0x0
-int drawable abc_btn_switch_to_on_mtrl_00012 0x0
-int drawable abc_cab_background_internal_bg 0x0
-int drawable abc_cab_background_top_material 0x0
-int drawable abc_cab_background_top_mtrl_alpha 0x0
-int drawable abc_control_background_material 0x0
-int drawable abc_dialog_material_background 0x0
-int drawable abc_edit_text_material 0x0
-int drawable abc_ic_ab_back_material 0x0
-int drawable abc_ic_arrow_drop_right_black_24dp 0x0
-int drawable abc_ic_clear_material 0x0
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x0
-int drawable abc_ic_go_search_api_material 0x0
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x0
-int drawable abc_ic_menu_cut_mtrl_alpha 0x0
-int drawable abc_ic_menu_overflow_material 0x0
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x0
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x0
-int drawable abc_ic_menu_share_mtrl_alpha 0x0
-int drawable abc_ic_search_api_material 0x0
-int drawable abc_ic_voice_search_api_material 0x0
-int drawable abc_item_background_holo_dark 0x0
-int drawable abc_item_background_holo_light 0x0
-int drawable abc_list_divider_material 0x0
-int drawable abc_list_divider_mtrl_alpha 0x0
-int drawable abc_list_focused_holo 0x0
-int drawable abc_list_longpressed_holo 0x0
-int drawable abc_list_pressed_holo_dark 0x0
-int drawable abc_list_pressed_holo_light 0x0
-int drawable abc_list_selector_background_transition_holo_dark 0x0
-int drawable abc_list_selector_background_transition_holo_light 0x0
-int drawable abc_list_selector_disabled_holo_dark 0x0
-int drawable abc_list_selector_disabled_holo_light 0x0
-int drawable abc_list_selector_holo_dark 0x0
-int drawable abc_list_selector_holo_light 0x0
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x0
-int drawable abc_popup_background_mtrl_mult 0x0
-int drawable abc_ratingbar_indicator_material 0x0
-int drawable abc_ratingbar_material 0x0
-int drawable abc_ratingbar_small_material 0x0
-int drawable abc_scrubber_control_off_mtrl_alpha 0x0
-int drawable abc_scrubber_control_to_pressed_mtrl_000 0x0
-int drawable abc_scrubber_control_to_pressed_mtrl_005 0x0
-int drawable abc_scrubber_primary_mtrl_alpha 0x0
-int drawable abc_scrubber_track_mtrl_alpha 0x0
-int drawable abc_seekbar_thumb_material 0x0
-int drawable abc_seekbar_tick_mark_material 0x0
-int drawable abc_seekbar_track_material 0x0
-int drawable abc_spinner_mtrl_am_alpha 0x0
-int drawable abc_spinner_textfield_background_material 0x0
-int drawable abc_star_black_48dp 0x0
-int drawable abc_star_half_black_48dp 0x0
-int drawable abc_switch_thumb_material 0x0
-int drawable abc_switch_track_mtrl_alpha 0x0
-int drawable abc_tab_indicator_material 0x0
-int drawable abc_tab_indicator_mtrl_alpha 0x0
-int drawable abc_text_cursor_material 0x0
-int drawable abc_text_select_handle_left_mtrl 0x0
-int drawable abc_text_select_handle_middle_mtrl 0x0
-int drawable abc_text_select_handle_right_mtrl 0x0
-int drawable abc_textfield_activated_mtrl_alpha 0x0
-int drawable abc_textfield_default_mtrl_alpha 0x0
-int drawable abc_textfield_search_activated_mtrl_alpha 0x0
-int drawable abc_textfield_search_default_mtrl_alpha 0x0
-int drawable abc_textfield_search_material 0x0
-int drawable abc_vector_test 0x0
-int drawable btn_checkbox_checked_mtrl 0x0
-int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x0
-int drawable btn_checkbox_unchecked_mtrl 0x0
-int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x0
-int drawable btn_radio_off_mtrl 0x0
-int drawable btn_radio_off_to_on_mtrl_animation 0x0
-int drawable btn_radio_on_mtrl 0x0
-int drawable btn_radio_on_to_off_mtrl_animation 0x0
-int drawable notification_action_background 0x0
-int drawable notification_bg 0x0
-int drawable notification_bg_low 0x0
-int drawable notification_bg_low_normal 0x0
-int drawable notification_bg_low_pressed 0x0
-int drawable notification_bg_normal 0x0
-int drawable notification_bg_normal_pressed 0x0
-int drawable notification_icon_background 0x0
-int drawable notification_template_icon_bg 0x0
-int drawable notification_template_icon_low_bg 0x0
-int drawable notification_tile_bg 0x0
-int drawable notify_panel_notification_icon_bg 0x0
-int drawable tooltip_frame_dark 0x0
-int drawable tooltip_frame_light 0x0
-int id accessibility_action_clickable_span 0x0
-int id accessibility_custom_action_0 0x0
-int id accessibility_custom_action_1 0x0
-int id accessibility_custom_action_10 0x0
-int id accessibility_custom_action_11 0x0
-int id accessibility_custom_action_12 0x0
-int id accessibility_custom_action_13 0x0
-int id accessibility_custom_action_14 0x0
-int id accessibility_custom_action_15 0x0
-int id accessibility_custom_action_16 0x0
-int id accessibility_custom_action_17 0x0
-int id accessibility_custom_action_18 0x0
-int id accessibility_custom_action_19 0x0
-int id accessibility_custom_action_2 0x0
-int id accessibility_custom_action_20 0x0
-int id accessibility_custom_action_21 0x0
-int id accessibility_custom_action_22 0x0
-int id accessibility_custom_action_23 0x0
-int id accessibility_custom_action_24 0x0
-int id accessibility_custom_action_25 0x0
-int id accessibility_custom_action_26 0x0
-int id accessibility_custom_action_27 0x0
-int id accessibility_custom_action_28 0x0
-int id accessibility_custom_action_29 0x0
-int id accessibility_custom_action_3 0x0
-int id accessibility_custom_action_30 0x0
-int id accessibility_custom_action_31 0x0
-int id accessibility_custom_action_4 0x0
-int id accessibility_custom_action_5 0x0
-int id accessibility_custom_action_6 0x0
-int id accessibility_custom_action_7 0x0
-int id accessibility_custom_action_8 0x0
-int id accessibility_custom_action_9 0x0
-int id action_bar 0x0
-int id action_bar_activity_content 0x0
-int id action_bar_container 0x0
-int id action_bar_root 0x0
-int id action_bar_spinner 0x0
-int id action_bar_subtitle 0x0
-int id action_bar_title 0x0
-int id action_container 0x0
-int id action_context_bar 0x0
-int id action_divider 0x0
-int id action_image 0x0
-int id action_menu_divider 0x0
-int id action_menu_presenter 0x0
-int id action_mode_bar 0x0
-int id action_mode_bar_stub 0x0
-int id action_mode_close_button 0x0
-int id action_text 0x0
-int id actions 0x0
-int id activity_chooser_view_content 0x0
-int id add 0x0
-int id alertTitle 0x0
-int id androidx_compose_ui_view_composition_context 0x0
-int id async 0x0
-int id blocking 0x0
-int id buttonPanel 0x0
-int id checkbox 0x0
-int id checked 0x0
-int id chronometer 0x0
-int id compose_view_saveable_id_tag 0x0
-int id content 0x0
-int id contentPanel 0x0
-int id custom 0x0
-int id customPanel 0x0
-int id decor_content_parent 0x0
-int id default_activity_button 0x0
-int id dialog_button 0x0
-int id edit_query 0x0
-int id expand_activities_button 0x0
-int id expanded_menu 0x0
-int id forever 0x0
-int id fragment_container_view_tag 0x0
-int id group_divider 0x0
-int id hide_in_inspector_tag 0x0
-int id home 0x0
-int id icon 0x0
-int id icon_group 0x0
-int id image 0x0
-int id info 0x0
-int id inspection_slot_table_set 0x0
-int id italic 0x0
-int id line1 0x0
-int id line3 0x0
-int id listMode 0x0
-int id list_item 0x0
-int id message 0x0
-int id multiply 0x0
-int id none 0x0
-int id normal 0x0
-int id notification_background 0x0
-int id notification_main_column 0x0
-int id notification_main_column_container 0x0
-int id off 0x0
-int id on 0x0
-int id parentPanel 0x0
-int id progress_circular 0x0
-int id progress_horizontal 0x0
-int id radio 0x0
-int id right_icon 0x0
-int id right_side 0x0
-int id screen 0x0
-int id scrollIndicatorDown 0x0
-int id scrollIndicatorUp 0x0
-int id scrollView 0x0
-int id search_badge 0x0
-int id search_bar 0x0
-int id search_button 0x0
-int id search_close_btn 0x0
-int id search_edit_frame 0x0
-int id search_go_btn 0x0
-int id search_mag_icon 0x0
-int id search_plate 0x0
-int id search_src_text 0x0
-int id search_voice_btn 0x0
-int id select_dialog_listview 0x0
-int id shortcut 0x0
-int id spacer 0x0
-int id special_effects_controller_view_tag 0x0
-int id split_action_bar 0x0
-int id src_atop 0x0
-int id src_in 0x0
-int id src_over 0x0
-int id submenuarrow 0x0
-int id submit_area 0x0
-int id tabMode 0x0
-int id tag_accessibility_actions 0x0
-int id tag_accessibility_clickable_spans 0x0
-int id tag_accessibility_heading 0x0
-int id tag_accessibility_pane_title 0x0
-int id tag_on_apply_window_listener 0x0
-int id tag_on_receive_content_listener 0x0
-int id tag_on_receive_content_mime_types 0x0
-int id tag_screen_reader_focusable 0x0
-int id tag_state_description 0x0
-int id tag_transition_group 0x0
-int id tag_unhandled_key_event_manager 0x0
-int id tag_unhandled_key_listeners 0x0
-int id tag_window_insets_animation_callback 0x0
-int id text 0x0
-int id text2 0x0
-int id textSpacerNoButtons 0x0
-int id textSpacerNoTitle 0x0
-int id time 0x0
-int id title 0x0
-int id titleDividerNoCustom 0x0
-int id title_template 0x0
-int id topPanel 0x0
-int id unchecked 0x0
-int id uniform 0x0
-int id up 0x0
-int id view_tree_lifecycle_owner 0x0
-int id view_tree_saved_state_registry_owner 0x0
-int id view_tree_view_model_store_owner 0x0
-int id visible_removing_fragment_view_tag 0x0
-int id wrap_content 0x0
-int id wrapped_composition_tag 0x0
-int integer abc_config_activityDefaultDur 0x0
-int integer abc_config_activityShortDur 0x0
-int integer cancel_button_image_alpha 0x0
-int integer config_tooltipAnimTime 0x0
-int integer status_bar_notification_info_maxnum 0x0
-int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x0
-int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x0
-int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x0
-int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x0
-int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x0
-int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x0
-int interpolator fast_out_slow_in 0x0
-int layout abc_action_bar_title_item 0x0
-int layout abc_action_bar_up_container 0x0
-int layout abc_action_menu_item_layout 0x0
-int layout abc_action_menu_layout 0x0
-int layout abc_action_mode_bar 0x0
-int layout abc_action_mode_close_item_material 0x0
-int layout abc_activity_chooser_view 0x0
-int layout abc_activity_chooser_view_list_item 0x0
-int layout abc_alert_dialog_button_bar_material 0x0
-int layout abc_alert_dialog_material 0x0
-int layout abc_alert_dialog_title_material 0x0
-int layout abc_cascading_menu_item_layout 0x0
-int layout abc_dialog_title_material 0x0
-int layout abc_expanded_menu_layout 0x0
-int layout abc_list_menu_item_checkbox 0x0
-int layout abc_list_menu_item_icon 0x0
-int layout abc_list_menu_item_layout 0x0
-int layout abc_list_menu_item_radio 0x0
-int layout abc_popup_menu_header_item_layout 0x0
-int layout abc_popup_menu_item_layout 0x0
-int layout abc_screen_content_include 0x0
-int layout abc_screen_simple 0x0
-int layout abc_screen_simple_overlay_action_mode 0x0
-int layout abc_screen_toolbar 0x0
-int layout abc_search_dropdown_item_icons_2line 0x0
-int layout abc_search_view 0x0
-int layout abc_select_dialog_material 0x0
-int layout abc_tooltip 0x0
-int layout custom_dialog 0x0
-int layout notification_action 0x0
-int layout notification_action_tombstone 0x0
-int layout notification_template_custom_big 0x0
-int layout notification_template_icon_group 0x0
-int layout notification_template_part_chronometer 0x0
-int layout notification_template_part_time 0x0
-int layout select_dialog_item_material 0x0
-int layout select_dialog_multichoice_material 0x0
-int layout select_dialog_singlechoice_material 0x0
-int layout support_simple_spinner_dropdown_item 0x0
-int string abc_action_bar_home_description 0x0
-int string abc_action_bar_up_description 0x0
-int string abc_action_menu_overflow_description 0x0
-int string abc_action_mode_done 0x0
-int string abc_activity_chooser_view_see_all 0x0
-int string abc_activitychooserview_choose_application 0x0
-int string abc_capital_off 0x0
-int string abc_capital_on 0x0
-int string abc_menu_alt_shortcut_label 0x0
-int string abc_menu_ctrl_shortcut_label 0x0
-int string abc_menu_delete_shortcut_label 0x0
-int string abc_menu_enter_shortcut_label 0x0
-int string abc_menu_function_shortcut_label 0x0
-int string abc_menu_meta_shortcut_label 0x0
-int string abc_menu_shift_shortcut_label 0x0
-int string abc_menu_space_shortcut_label 0x0
-int string abc_menu_sym_shortcut_label 0x0
-int string abc_prepend_shortcut_label 0x0
-int string abc_search_hint 0x0
-int string abc_searchview_description_clear 0x0
-int string abc_searchview_description_query 0x0
-int string abc_searchview_description_search 0x0
-int string abc_searchview_description_submit 0x0
-int string abc_searchview_description_voice 0x0
-int string abc_shareactionprovider_share_with 0x0
-int string abc_shareactionprovider_share_with_application 0x0
-int string abc_toolbar_collapse_description 0x0
-int string androidx_startup 0x0
-int string close_drawer 0x0
-int string close_sheet 0x0
-int string default_error_message 0x0
-int string in_progress 0x0
-int string indeterminate 0x0
-int string navigation_menu 0x0
-int string not_selected 0x0
-int string off 0x0
-int string on 0x0
-int string search_menu_title 0x0
-int string selected 0x0
-int string status_bar_notification_info_overflow 0x0
-int string tab 0x0
-int string template_percent 0x0
-int style AlertDialog_AppCompat 0x0
-int style AlertDialog_AppCompat_Light 0x0
-int style Animation_AppCompat_Dialog 0x0
-int style Animation_AppCompat_DropDownUp 0x0
-int style Animation_AppCompat_Tooltip 0x0
-int style Base_AlertDialog_AppCompat 0x0
-int style Base_AlertDialog_AppCompat_Light 0x0
-int style Base_Animation_AppCompat_Dialog 0x0
-int style Base_Animation_AppCompat_DropDownUp 0x0
-int style Base_Animation_AppCompat_Tooltip 0x0
-int style Base_DialogWindowTitleBackground_AppCompat 0x0
-int style Base_DialogWindowTitle_AppCompat 0x0
-int style Base_TextAppearance_AppCompat 0x0
-int style Base_TextAppearance_AppCompat_Body1 0x0
-int style Base_TextAppearance_AppCompat_Body2 0x0
-int style Base_TextAppearance_AppCompat_Button 0x0
-int style Base_TextAppearance_AppCompat_Caption 0x0
-int style Base_TextAppearance_AppCompat_Display1 0x0
-int style Base_TextAppearance_AppCompat_Display2 0x0
-int style Base_TextAppearance_AppCompat_Display3 0x0
-int style Base_TextAppearance_AppCompat_Display4 0x0
-int style Base_TextAppearance_AppCompat_Headline 0x0
-int style Base_TextAppearance_AppCompat_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Large 0x0
-int style Base_TextAppearance_AppCompat_Large_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
-int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
-int style Base_TextAppearance_AppCompat_Medium 0x0
-int style Base_TextAppearance_AppCompat_Medium_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Menu 0x0
-int style Base_TextAppearance_AppCompat_SearchResult 0x0
-int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x0
-int style Base_TextAppearance_AppCompat_SearchResult_Title 0x0
-int style Base_TextAppearance_AppCompat_Small 0x0
-int style Base_TextAppearance_AppCompat_Small_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Subhead 0x0
-int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Title 0x0
-int style Base_TextAppearance_AppCompat_Title_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Tooltip 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
-int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
-int style Base_TextAppearance_AppCompat_Widget_Button 0x0
-int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
-int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x0
-int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x0
-int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x0
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
-int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
-int style Base_TextAppearance_AppCompat_Widget_Switch 0x0
-int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
-int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
-int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
-int style Base_ThemeOverlay_AppCompat 0x0
-int style Base_ThemeOverlay_AppCompat_ActionBar 0x0
-int style Base_ThemeOverlay_AppCompat_Dark 0x0
-int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x0
-int style Base_ThemeOverlay_AppCompat_Dialog 0x0
-int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x0
-int style Base_ThemeOverlay_AppCompat_Light 0x0
-int style Base_Theme_AppCompat 0x0
-int style Base_Theme_AppCompat_CompactMenu 0x0
-int style Base_Theme_AppCompat_Dialog 0x0
-int style Base_Theme_AppCompat_DialogWhenLarge 0x0
-int style Base_Theme_AppCompat_Dialog_Alert 0x0
-int style Base_Theme_AppCompat_Dialog_FixedSize 0x0
-int style Base_Theme_AppCompat_Dialog_MinWidth 0x0
-int style Base_Theme_AppCompat_Light 0x0
-int style Base_Theme_AppCompat_Light_DarkActionBar 0x0
-int style Base_Theme_AppCompat_Light_Dialog 0x0
-int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x0
-int style Base_Theme_AppCompat_Light_Dialog_Alert 0x0
-int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x0
-int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x0
-int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x0
-int style Base_V21_Theme_AppCompat 0x0
-int style Base_V21_Theme_AppCompat_Dialog 0x0
-int style Base_V21_Theme_AppCompat_Light 0x0
-int style Base_V21_Theme_AppCompat_Light_Dialog 0x0
-int style Base_V22_Theme_AppCompat 0x0
-int style Base_V22_Theme_AppCompat_Light 0x0
-int style Base_V23_Theme_AppCompat 0x0
-int style Base_V23_Theme_AppCompat_Light 0x0
-int style Base_V26_Theme_AppCompat 0x0
-int style Base_V26_Theme_AppCompat_Light 0x0
-int style Base_V26_Widget_AppCompat_Toolbar 0x0
-int style Base_V28_Theme_AppCompat 0x0
-int style Base_V28_Theme_AppCompat_Light 0x0
-int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x0
-int style Base_V7_Theme_AppCompat 0x0
-int style Base_V7_Theme_AppCompat_Dialog 0x0
-int style Base_V7_Theme_AppCompat_Light 0x0
-int style Base_V7_Theme_AppCompat_Light_Dialog 0x0
-int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x0
-int style Base_V7_Widget_AppCompat_EditText 0x0
-int style Base_V7_Widget_AppCompat_Toolbar 0x0
-int style Base_Widget_AppCompat_ActionBar 0x0
-int style Base_Widget_AppCompat_ActionBar_Solid 0x0
-int style Base_Widget_AppCompat_ActionBar_TabBar 0x0
-int style Base_Widget_AppCompat_ActionBar_TabText 0x0
-int style Base_Widget_AppCompat_ActionBar_TabView 0x0
-int style Base_Widget_AppCompat_ActionButton 0x0
-int style Base_Widget_AppCompat_ActionButton_CloseMode 0x0
-int style Base_Widget_AppCompat_ActionButton_Overflow 0x0
-int style Base_Widget_AppCompat_ActionMode 0x0
-int style Base_Widget_AppCompat_ActivityChooserView 0x0
-int style Base_Widget_AppCompat_AutoCompleteTextView 0x0
-int style Base_Widget_AppCompat_Button 0x0
-int style Base_Widget_AppCompat_ButtonBar 0x0
-int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x0
-int style Base_Widget_AppCompat_Button_Borderless 0x0
-int style Base_Widget_AppCompat_Button_Borderless_Colored 0x0
-int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
-int style Base_Widget_AppCompat_Button_Colored 0x0
-int style Base_Widget_AppCompat_Button_Small 0x0
-int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x0
-int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x0
-int style Base_Widget_AppCompat_CompoundButton_Switch 0x0
-int style Base_Widget_AppCompat_DrawerArrowToggle 0x0
-int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x0
-int style Base_Widget_AppCompat_DropDownItem_Spinner 0x0
-int style Base_Widget_AppCompat_EditText 0x0
-int style Base_Widget_AppCompat_ImageButton 0x0
-int style Base_Widget_AppCompat_Light_ActionBar 0x0
-int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x0
-int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x0
-int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x0
-int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
-int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x0
-int style Base_Widget_AppCompat_Light_PopupMenu 0x0
-int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x0
-int style Base_Widget_AppCompat_ListMenuView 0x0
-int style Base_Widget_AppCompat_ListPopupWindow 0x0
-int style Base_Widget_AppCompat_ListView 0x0
-int style Base_Widget_AppCompat_ListView_DropDown 0x0
-int style Base_Widget_AppCompat_ListView_Menu 0x0
-int style Base_Widget_AppCompat_PopupMenu 0x0
-int style Base_Widget_AppCompat_PopupMenu_Overflow 0x0
-int style Base_Widget_AppCompat_PopupWindow 0x0
-int style Base_Widget_AppCompat_ProgressBar 0x0
-int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x0
-int style Base_Widget_AppCompat_RatingBar 0x0
-int style Base_Widget_AppCompat_RatingBar_Indicator 0x0
-int style Base_Widget_AppCompat_RatingBar_Small 0x0
-int style Base_Widget_AppCompat_SearchView 0x0
-int style Base_Widget_AppCompat_SearchView_ActionBar 0x0
-int style Base_Widget_AppCompat_SeekBar 0x0
-int style Base_Widget_AppCompat_SeekBar_Discrete 0x0
-int style Base_Widget_AppCompat_Spinner 0x0
-int style Base_Widget_AppCompat_Spinner_Underlined 0x0
-int style Base_Widget_AppCompat_TextView 0x0
-int style Base_Widget_AppCompat_TextView_SpinnerItem 0x0
-int style Base_Widget_AppCompat_Toolbar 0x0
-int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x0
-int style DialogWindowTheme 0x0
-int style Platform_AppCompat 0x0
-int style Platform_AppCompat_Light 0x0
-int style Platform_ThemeOverlay_AppCompat 0x0
-int style Platform_ThemeOverlay_AppCompat_Dark 0x0
-int style Platform_ThemeOverlay_AppCompat_Light 0x0
-int style Platform_V21_AppCompat 0x0
-int style Platform_V21_AppCompat_Light 0x0
-int style Platform_V25_AppCompat 0x0
-int style Platform_V25_AppCompat_Light 0x0
-int style Platform_Widget_AppCompat_Spinner 0x0
-int style RtlOverlay_DialogWindowTitle_AppCompat 0x0
-int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x0
-int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x0
-int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x0
-int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x0
-int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x0
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x0
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x0
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x0
-int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x0
-int style RtlUnderlay_Widget_AppCompat_ActionButton 0x0
-int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x0
-int style TextAppearance_AppCompat 0x0
-int style TextAppearance_AppCompat_Body1 0x0
-int style TextAppearance_AppCompat_Body2 0x0
-int style TextAppearance_AppCompat_Button 0x0
-int style TextAppearance_AppCompat_Caption 0x0
-int style TextAppearance_AppCompat_Display1 0x0
-int style TextAppearance_AppCompat_Display2 0x0
-int style TextAppearance_AppCompat_Display3 0x0
-int style TextAppearance_AppCompat_Display4 0x0
-int style TextAppearance_AppCompat_Headline 0x0
-int style TextAppearance_AppCompat_Inverse 0x0
-int style TextAppearance_AppCompat_Large 0x0
-int style TextAppearance_AppCompat_Large_Inverse 0x0
-int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x0
-int style TextAppearance_AppCompat_Light_SearchResult_Title 0x0
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x0
-int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x0
-int style TextAppearance_AppCompat_Medium 0x0
-int style TextAppearance_AppCompat_Medium_Inverse 0x0
-int style TextAppearance_AppCompat_Menu 0x0
-int style TextAppearance_AppCompat_SearchResult_Subtitle 0x0
-int style TextAppearance_AppCompat_SearchResult_Title 0x0
-int style TextAppearance_AppCompat_Small 0x0
-int style TextAppearance_AppCompat_Small_Inverse 0x0
-int style TextAppearance_AppCompat_Subhead 0x0
-int style TextAppearance_AppCompat_Subhead_Inverse 0x0
-int style TextAppearance_AppCompat_Title 0x0
-int style TextAppearance_AppCompat_Title_Inverse 0x0
-int style TextAppearance_AppCompat_Tooltip 0x0
-int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x0
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x0
-int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x0
-int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x0
-int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x0
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x0
-int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x0
-int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x0
-int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x0
-int style TextAppearance_AppCompat_Widget_Button 0x0
-int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x0
-int style TextAppearance_AppCompat_Widget_Button_Colored 0x0
-int style TextAppearance_AppCompat_Widget_Button_Inverse 0x0
-int style TextAppearance_AppCompat_Widget_DropDownItem 0x0
-int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x0
-int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x0
-int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x0
-int style TextAppearance_AppCompat_Widget_Switch 0x0
-int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x0
-int style TextAppearance_Compat_Notification 0x0
-int style TextAppearance_Compat_Notification_Info 0x0
-int style TextAppearance_Compat_Notification_Line2 0x0
-int style TextAppearance_Compat_Notification_Time 0x0
-int style TextAppearance_Compat_Notification_Title 0x0
-int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x0
-int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x0
-int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x0
-int style ThemeOverlay_AppCompat 0x0
-int style ThemeOverlay_AppCompat_ActionBar 0x0
-int style ThemeOverlay_AppCompat_Dark 0x0
-int style ThemeOverlay_AppCompat_Dark_ActionBar 0x0
-int style ThemeOverlay_AppCompat_DayNight 0x0
-int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x0
-int style ThemeOverlay_AppCompat_Dialog 0x0
-int style ThemeOverlay_AppCompat_Dialog_Alert 0x0
-int style ThemeOverlay_AppCompat_Light 0x0
-int style Theme_AppCompat 0x0
-int style Theme_AppCompat_CompactMenu 0x0
-int style Theme_AppCompat_DayNight 0x0
-int style Theme_AppCompat_DayNight_DarkActionBar 0x0
-int style Theme_AppCompat_DayNight_Dialog 0x0
-int style Theme_AppCompat_DayNight_DialogWhenLarge 0x0
-int style Theme_AppCompat_DayNight_Dialog_Alert 0x0
-int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x0
-int style Theme_AppCompat_DayNight_NoActionBar 0x0
-int style Theme_AppCompat_Dialog 0x0
-int style Theme_AppCompat_DialogWhenLarge 0x0
-int style Theme_AppCompat_Dialog_Alert 0x0
-int style Theme_AppCompat_Dialog_MinWidth 0x0
-int style Theme_AppCompat_Empty 0x0
-int style Theme_AppCompat_Light 0x0
-int style Theme_AppCompat_Light_DarkActionBar 0x0
-int style Theme_AppCompat_Light_Dialog 0x0
-int style Theme_AppCompat_Light_DialogWhenLarge 0x0
-int style Theme_AppCompat_Light_Dialog_Alert 0x0
-int style Theme_AppCompat_Light_Dialog_MinWidth 0x0
-int style Theme_AppCompat_Light_NoActionBar 0x0
-int style Theme_AppCompat_NoActionBar 0x0
-int style Widget_AppCompat_ActionBar 0x0
-int style Widget_AppCompat_ActionBar_Solid 0x0
-int style Widget_AppCompat_ActionBar_TabBar 0x0
-int style Widget_AppCompat_ActionBar_TabText 0x0
-int style Widget_AppCompat_ActionBar_TabView 0x0
-int style Widget_AppCompat_ActionButton 0x0
-int style Widget_AppCompat_ActionButton_CloseMode 0x0
-int style Widget_AppCompat_ActionButton_Overflow 0x0
-int style Widget_AppCompat_ActionMode 0x0
-int style Widget_AppCompat_ActivityChooserView 0x0
-int style Widget_AppCompat_AutoCompleteTextView 0x0
-int style Widget_AppCompat_Button 0x0
-int style Widget_AppCompat_ButtonBar 0x0
-int style Widget_AppCompat_ButtonBar_AlertDialog 0x0
-int style Widget_AppCompat_Button_Borderless 0x0
-int style Widget_AppCompat_Button_Borderless_Colored 0x0
-int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x0
-int style Widget_AppCompat_Button_Colored 0x0
-int style Widget_AppCompat_Button_Small 0x0
-int style Widget_AppCompat_CompoundButton_CheckBox 0x0
-int style Widget_AppCompat_CompoundButton_RadioButton 0x0
-int style Widget_AppCompat_CompoundButton_Switch 0x0
-int style Widget_AppCompat_DrawerArrowToggle 0x0
-int style Widget_AppCompat_DropDownItem_Spinner 0x0
-int style Widget_AppCompat_EditText 0x0
-int style Widget_AppCompat_ImageButton 0x0
-int style Widget_AppCompat_Light_ActionBar 0x0
-int style Widget_AppCompat_Light_ActionBar_Solid 0x0
-int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x0
-int style Widget_AppCompat_Light_ActionBar_TabBar 0x0
-int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x0
-int style Widget_AppCompat_Light_ActionBar_TabText 0x0
-int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x0
-int style Widget_AppCompat_Light_ActionBar_TabView 0x0
-int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x0
-int style Widget_AppCompat_Light_ActionButton 0x0
-int style Widget_AppCompat_Light_ActionButton_CloseMode 0x0
-int style Widget_AppCompat_Light_ActionButton_Overflow 0x0
-int style Widget_AppCompat_Light_ActionMode_Inverse 0x0
-int style Widget_AppCompat_Light_ActivityChooserView 0x0
-int style Widget_AppCompat_Light_AutoCompleteTextView 0x0
-int style Widget_AppCompat_Light_DropDownItem_Spinner 0x0
-int style Widget_AppCompat_Light_ListPopupWindow 0x0
-int style Widget_AppCompat_Light_ListView_DropDown 0x0
-int style Widget_AppCompat_Light_PopupMenu 0x0
-int style Widget_AppCompat_Light_PopupMenu_Overflow 0x0
-int style Widget_AppCompat_Light_SearchView 0x0
-int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x0
-int style Widget_AppCompat_ListMenuView 0x0
-int style Widget_AppCompat_ListPopupWindow 0x0
-int style Widget_AppCompat_ListView 0x0
-int style Widget_AppCompat_ListView_DropDown 0x0
-int style Widget_AppCompat_ListView_Menu 0x0
-int style Widget_AppCompat_PopupMenu 0x0
-int style Widget_AppCompat_PopupMenu_Overflow 0x0
-int style Widget_AppCompat_PopupWindow 0x0
-int style Widget_AppCompat_ProgressBar 0x0
-int style Widget_AppCompat_ProgressBar_Horizontal 0x0
-int style Widget_AppCompat_RatingBar 0x0
-int style Widget_AppCompat_RatingBar_Indicator 0x0
-int style Widget_AppCompat_RatingBar_Small 0x0
-int style Widget_AppCompat_SearchView 0x0
-int style Widget_AppCompat_SearchView_ActionBar 0x0
-int style Widget_AppCompat_SeekBar 0x0
-int style Widget_AppCompat_SeekBar_Discrete 0x0
-int style Widget_AppCompat_Spinner 0x0
-int style Widget_AppCompat_Spinner_DropDown 0x0
-int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x0
-int style Widget_AppCompat_Spinner_Underlined 0x0
-int style Widget_AppCompat_TextView 0x0
-int style Widget_AppCompat_TextView_SpinnerItem 0x0
-int style Widget_AppCompat_Toolbar 0x0
-int style Widget_AppCompat_Toolbar_Button_Navigation 0x0
-int style Widget_Compat_NotificationActionContainer 0x0
-int style Widget_Compat_NotificationActionText 0x0
-int[] styleable ActionBar { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable ActionBar_background 0
-int styleable ActionBar_backgroundSplit 1
-int styleable ActionBar_backgroundStacked 2
-int styleable ActionBar_contentInsetEnd 3
-int styleable ActionBar_contentInsetEndWithActions 4
-int styleable ActionBar_contentInsetLeft 5
-int styleable ActionBar_contentInsetRight 6
-int styleable ActionBar_contentInsetStart 7
-int styleable ActionBar_contentInsetStartWithNavigation 8
-int styleable ActionBar_customNavigationLayout 9
-int styleable ActionBar_displayOptions 10
-int styleable ActionBar_divider 11
-int styleable ActionBar_elevation 12
-int styleable ActionBar_height 13
-int styleable ActionBar_hideOnContentScroll 14
-int styleable ActionBar_homeAsUpIndicator 15
-int styleable ActionBar_homeLayout 16
-int styleable ActionBar_icon 17
-int styleable ActionBar_indeterminateProgressStyle 18
-int styleable ActionBar_itemPadding 19
-int styleable ActionBar_logo 20
-int styleable ActionBar_navigationMode 21
-int styleable ActionBar_popupTheme 22
-int styleable ActionBar_progressBarPadding 23
-int styleable ActionBar_progressBarStyle 24
-int styleable ActionBar_subtitle 25
-int styleable ActionBar_subtitleTextStyle 26
-int styleable ActionBar_title 27
-int styleable ActionBar_titleTextStyle 28
-int[] styleable ActionBarLayout { 0x10100b3 }
-int styleable ActionBarLayout_android_layout_gravity 0
-int[] styleable ActionMenuItemView { 0x101013f }
-int styleable ActionMenuItemView_android_minWidth 0
-int[] styleable ActionMenuView { }
-int[] styleable ActionMode { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable ActionMode_background 0
-int styleable ActionMode_backgroundSplit 1
-int styleable ActionMode_closeItemLayout 2
-int styleable ActionMode_height 3
-int styleable ActionMode_subtitleTextStyle 4
-int styleable ActionMode_titleTextStyle 5
-int[] styleable ActivityChooserView { 0x0, 0x0 }
-int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0
-int styleable ActivityChooserView_initialActivityCount 1
-int[] styleable AlertDialog { 0x10100f2, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable AlertDialog_android_layout 0
-int styleable AlertDialog_buttonIconDimen 1
-int styleable AlertDialog_buttonPanelSideLayout 2
-int styleable AlertDialog_listItemLayout 3
-int styleable AlertDialog_listLayout 4
-int styleable AlertDialog_multiChoiceItemLayout 5
-int styleable AlertDialog_showTitle 6
-int styleable AlertDialog_singleChoiceItemLayout 7
-int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
-int styleable AnimatedStateListDrawableCompat_android_constantSize 0
-int styleable AnimatedStateListDrawableCompat_android_dither 1
-int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2
-int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3
-int styleable AnimatedStateListDrawableCompat_android_variablePadding 4
-int styleable AnimatedStateListDrawableCompat_android_visible 5
-int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 }
-int styleable AnimatedStateListDrawableItem_android_drawable 0
-int styleable AnimatedStateListDrawableItem_android_id 1
-int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 }
-int styleable AnimatedStateListDrawableTransition_android_drawable 0
-int styleable AnimatedStateListDrawableTransition_android_fromId 1
-int styleable AnimatedStateListDrawableTransition_android_reversible 2
-int styleable AnimatedStateListDrawableTransition_android_toId 3
-int[] styleable AppCompatImageView { 0x1010119, 0x0, 0x0, 0x0 }
-int styleable AppCompatImageView_android_src 0
-int styleable AppCompatImageView_srcCompat 1
-int styleable AppCompatImageView_tint 2
-int styleable AppCompatImageView_tintMode 3
-int[] styleable AppCompatSeekBar { 0x1010142, 0x0, 0x0, 0x0 }
-int styleable AppCompatSeekBar_android_thumb 0
-int styleable AppCompatSeekBar_tickMark 1
-int styleable AppCompatSeekBar_tickMarkTint 2
-int styleable AppCompatSeekBar_tickMarkTintMode 3
-int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 }
-int styleable AppCompatTextHelper_android_drawableBottom 0
-int styleable AppCompatTextHelper_android_drawableEnd 1
-int styleable AppCompatTextHelper_android_drawableLeft 2
-int styleable AppCompatTextHelper_android_drawableRight 3
-int styleable AppCompatTextHelper_android_drawableStart 4
-int styleable AppCompatTextHelper_android_drawableTop 5
-int styleable AppCompatTextHelper_android_textAppearance 6
-int[] styleable AppCompatTextView { 0x1010034, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable AppCompatTextView_android_textAppearance 0
-int styleable AppCompatTextView_autoSizeMaxTextSize 1
-int styleable AppCompatTextView_autoSizeMinTextSize 2
-int styleable AppCompatTextView_autoSizePresetSizes 3
-int styleable AppCompatTextView_autoSizeStepGranularity 4
-int styleable AppCompatTextView_autoSizeTextType 5
-int styleable AppCompatTextView_drawableBottomCompat 6
-int styleable AppCompatTextView_drawableEndCompat 7
-int styleable AppCompatTextView_drawableLeftCompat 8
-int styleable AppCompatTextView_drawableRightCompat 9
-int styleable AppCompatTextView_drawableStartCompat 10
-int styleable AppCompatTextView_drawableTint 11
-int styleable AppCompatTextView_drawableTintMode 12
-int styleable AppCompatTextView_drawableTopCompat 13
-int styleable AppCompatTextView_firstBaselineToTopHeight 14
-int styleable AppCompatTextView_fontFamily 15
-int styleable AppCompatTextView_fontVariationSettings 16
-int styleable AppCompatTextView_lastBaselineToBottomHeight 17
-int styleable AppCompatTextView_lineHeight 18
-int styleable AppCompatTextView_textAllCaps 19
-int styleable AppCompatTextView_textLocale 20
-int[] styleable AppCompatTheme { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x10100ae, 0x1010057, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable AppCompatTheme_actionBarDivider 0
-int styleable AppCompatTheme_actionBarItemBackground 1
-int styleable AppCompatTheme_actionBarPopupTheme 2
-int styleable AppCompatTheme_actionBarSize 3
-int styleable AppCompatTheme_actionBarSplitStyle 4
-int styleable AppCompatTheme_actionBarStyle 5
-int styleable AppCompatTheme_actionBarTabBarStyle 6
-int styleable AppCompatTheme_actionBarTabStyle 7
-int styleable AppCompatTheme_actionBarTabTextStyle 8
-int styleable AppCompatTheme_actionBarTheme 9
-int styleable AppCompatTheme_actionBarWidgetTheme 10
-int styleable AppCompatTheme_actionButtonStyle 11
-int styleable AppCompatTheme_actionDropDownStyle 12
-int styleable AppCompatTheme_actionMenuTextAppearance 13
-int styleable AppCompatTheme_actionMenuTextColor 14
-int styleable AppCompatTheme_actionModeBackground 15
-int styleable AppCompatTheme_actionModeCloseButtonStyle 16
-int styleable AppCompatTheme_actionModeCloseContentDescription 17
-int styleable AppCompatTheme_actionModeCloseDrawable 18
-int styleable AppCompatTheme_actionModeCopyDrawable 19
-int styleable AppCompatTheme_actionModeCutDrawable 20
-int styleable AppCompatTheme_actionModeFindDrawable 21
-int styleable AppCompatTheme_actionModePasteDrawable 22
-int styleable AppCompatTheme_actionModePopupWindowStyle 23
-int styleable AppCompatTheme_actionModeSelectAllDrawable 24
-int styleable AppCompatTheme_actionModeShareDrawable 25
-int styleable AppCompatTheme_actionModeSplitBackground 26
-int styleable AppCompatTheme_actionModeStyle 27
-int styleable AppCompatTheme_actionModeTheme 28
-int styleable AppCompatTheme_actionModeWebSearchDrawable 29
-int styleable AppCompatTheme_actionOverflowButtonStyle 30
-int styleable AppCompatTheme_actionOverflowMenuStyle 31
-int styleable AppCompatTheme_activityChooserViewStyle 32
-int styleable AppCompatTheme_alertDialogButtonGroupStyle 33
-int styleable AppCompatTheme_alertDialogCenterButtons 34
-int styleable AppCompatTheme_alertDialogStyle 35
-int styleable AppCompatTheme_alertDialogTheme 36
-int styleable AppCompatTheme_android_windowAnimationStyle 37
-int styleable AppCompatTheme_android_windowIsFloating 38
-int styleable AppCompatTheme_autoCompleteTextViewStyle 39
-int styleable AppCompatTheme_borderlessButtonStyle 40
-int styleable AppCompatTheme_buttonBarButtonStyle 41
-int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42
-int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43
-int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44
-int styleable AppCompatTheme_buttonBarStyle 45
-int styleable AppCompatTheme_buttonStyle 46
-int styleable AppCompatTheme_buttonStyleSmall 47
-int styleable AppCompatTheme_checkboxStyle 48
-int styleable AppCompatTheme_checkedTextViewStyle 49
-int styleable AppCompatTheme_colorAccent 50
-int styleable AppCompatTheme_colorBackgroundFloating 51
-int styleable AppCompatTheme_colorButtonNormal 52
-int styleable AppCompatTheme_colorControlActivated 53
-int styleable AppCompatTheme_colorControlHighlight 54
-int styleable AppCompatTheme_colorControlNormal 55
-int styleable AppCompatTheme_colorError 56
-int styleable AppCompatTheme_colorPrimary 57
-int styleable AppCompatTheme_colorPrimaryDark 58
-int styleable AppCompatTheme_colorSwitchThumbNormal 59
-int styleable AppCompatTheme_controlBackground 60
-int styleable AppCompatTheme_dialogCornerRadius 61
-int styleable AppCompatTheme_dialogPreferredPadding 62
-int styleable AppCompatTheme_dialogTheme 63
-int styleable AppCompatTheme_dividerHorizontal 64
-int styleable AppCompatTheme_dividerVertical 65
-int styleable AppCompatTheme_dropDownListViewStyle 66
-int styleable AppCompatTheme_dropdownListPreferredItemHeight 67
-int styleable AppCompatTheme_editTextBackground 68
-int styleable AppCompatTheme_editTextColor 69
-int styleable AppCompatTheme_editTextStyle 70
-int styleable AppCompatTheme_homeAsUpIndicator 71
-int styleable AppCompatTheme_imageButtonStyle 72
-int styleable AppCompatTheme_listChoiceBackgroundIndicator 73
-int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74
-int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75
-int styleable AppCompatTheme_listDividerAlertDialog 76
-int styleable AppCompatTheme_listMenuViewStyle 77
-int styleable AppCompatTheme_listPopupWindowStyle 78
-int styleable AppCompatTheme_listPreferredItemHeight 79
-int styleable AppCompatTheme_listPreferredItemHeightLarge 80
-int styleable AppCompatTheme_listPreferredItemHeightSmall 81
-int styleable AppCompatTheme_listPreferredItemPaddingEnd 82
-int styleable AppCompatTheme_listPreferredItemPaddingLeft 83
-int styleable AppCompatTheme_listPreferredItemPaddingRight 84
-int styleable AppCompatTheme_listPreferredItemPaddingStart 85
-int styleable AppCompatTheme_panelBackground 86
-int styleable AppCompatTheme_panelMenuListTheme 87
-int styleable AppCompatTheme_panelMenuListWidth 88
-int styleable AppCompatTheme_popupMenuStyle 89
-int styleable AppCompatTheme_popupWindowStyle 90
-int styleable AppCompatTheme_radioButtonStyle 91
-int styleable AppCompatTheme_ratingBarStyle 92
-int styleable AppCompatTheme_ratingBarStyleIndicator 93
-int styleable AppCompatTheme_ratingBarStyleSmall 94
-int styleable AppCompatTheme_searchViewStyle 95
-int styleable AppCompatTheme_seekBarStyle 96
-int styleable AppCompatTheme_selectableItemBackground 97
-int styleable AppCompatTheme_selectableItemBackgroundBorderless 98
-int styleable AppCompatTheme_spinnerDropDownItemStyle 99
-int styleable AppCompatTheme_spinnerStyle 100
-int styleable AppCompatTheme_switchStyle 101
-int styleable AppCompatTheme_textAppearanceLargePopupMenu 102
-int styleable AppCompatTheme_textAppearanceListItem 103
-int styleable AppCompatTheme_textAppearanceListItemSecondary 104
-int styleable AppCompatTheme_textAppearanceListItemSmall 105
-int styleable AppCompatTheme_textAppearancePopupMenuHeader 106
-int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107
-int styleable AppCompatTheme_textAppearanceSearchResultTitle 108
-int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109
-int styleable AppCompatTheme_textColorAlertDialogListItem 110
-int styleable AppCompatTheme_textColorSearchUrl 111
-int styleable AppCompatTheme_toolbarNavigationButtonStyle 112
-int styleable AppCompatTheme_toolbarStyle 113
-int styleable AppCompatTheme_tooltipForegroundColor 114
-int styleable AppCompatTheme_tooltipFrameBackground 115
-int styleable AppCompatTheme_viewInflaterClass 116
-int styleable AppCompatTheme_windowActionBar 117
-int styleable AppCompatTheme_windowActionBarOverlay 118
-int styleable AppCompatTheme_windowActionModeOverlay 119
-int styleable AppCompatTheme_windowFixedHeightMajor 120
-int styleable AppCompatTheme_windowFixedHeightMinor 121
-int styleable AppCompatTheme_windowFixedWidthMajor 122
-int styleable AppCompatTheme_windowFixedWidthMinor 123
-int styleable AppCompatTheme_windowMinWidthMajor 124
-int styleable AppCompatTheme_windowMinWidthMinor 125
-int styleable AppCompatTheme_windowNoTitle 126
-int[] styleable ButtonBarLayout { 0x0 }
-int styleable ButtonBarLayout_allowStacking 0
-int[] styleable Capability { 0x0, 0x0 }
-int styleable Capability_queryPatterns 0
-int styleable Capability_shortcutMatchRequired 1
-int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5 }
-int styleable ColorStateListItem_alpha 0
-int styleable ColorStateListItem_android_alpha 1
-int styleable ColorStateListItem_android_color 2
-int[] styleable CompoundButton { 0x1010107, 0x0, 0x0, 0x0 }
-int styleable CompoundButton_android_button 0
-int styleable CompoundButton_buttonCompat 1
-int styleable CompoundButton_buttonTint 2
-int styleable CompoundButton_buttonTintMode 3
-int[] styleable DrawerArrowToggle { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable DrawerArrowToggle_arrowHeadLength 0
-int styleable DrawerArrowToggle_arrowShaftLength 1
-int styleable DrawerArrowToggle_barLength 2
-int styleable DrawerArrowToggle_color 3
-int styleable DrawerArrowToggle_drawableSize 4
-int styleable DrawerArrowToggle_gapBetweenBars 5
-int styleable DrawerArrowToggle_spinBars 6
-int styleable DrawerArrowToggle_thickness 7
-int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable FontFamily_fontProviderAuthority 0
-int styleable FontFamily_fontProviderCerts 1
-int styleable FontFamily_fontProviderFetchStrategy 2
-int styleable FontFamily_fontProviderFetchTimeout 3
-int styleable FontFamily_fontProviderPackage 4
-int styleable FontFamily_fontProviderQuery 5
-int styleable FontFamily_fontProviderSystemFontFamily 6
-int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable FontFamilyFont_android_font 0
-int styleable FontFamilyFont_android_fontStyle 1
-int styleable FontFamilyFont_android_fontVariationSettings 2
-int styleable FontFamilyFont_android_fontWeight 3
-int styleable FontFamilyFont_android_ttcIndex 4
-int styleable FontFamilyFont_font 5
-int styleable FontFamilyFont_fontStyle 6
-int styleable FontFamilyFont_fontVariationSettings 7
-int styleable FontFamilyFont_fontWeight 8
-int styleable FontFamilyFont_ttcIndex 9
-int[] styleable Fragment { 0x10100d0, 0x1010003, 0x10100d1 }
-int styleable Fragment_android_id 0
-int styleable Fragment_android_name 1
-int styleable Fragment_android_tag 2
-int[] styleable FragmentContainerView { 0x1010003, 0x10100d1 }
-int styleable FragmentContainerView_android_name 0
-int styleable FragmentContainerView_android_tag 1
-int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 }
-int styleable GradientColor_android_centerColor 0
-int styleable GradientColor_android_centerX 1
-int styleable GradientColor_android_centerY 2
-int styleable GradientColor_android_endColor 3
-int styleable GradientColor_android_endX 4
-int styleable GradientColor_android_endY 5
-int styleable GradientColor_android_gradientRadius 6
-int styleable GradientColor_android_startColor 7
-int styleable GradientColor_android_startX 8
-int styleable GradientColor_android_startY 9
-int styleable GradientColor_android_tileMode 10
-int styleable GradientColor_android_type 11
-int[] styleable GradientColorItem { 0x10101a5, 0x1010514 }
-int styleable GradientColorItem_android_color 0
-int styleable GradientColorItem_android_offset 1
-int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x0, 0x0, 0x0, 0x0 }
-int styleable LinearLayoutCompat_android_baselineAligned 0
-int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1
-int styleable LinearLayoutCompat_android_gravity 2
-int styleable LinearLayoutCompat_android_orientation 3
-int styleable LinearLayoutCompat_android_weightSum 4
-int styleable LinearLayoutCompat_divider 5
-int styleable LinearLayoutCompat_dividerPadding 6
-int styleable LinearLayoutCompat_measureWithLargestChild 7
-int styleable LinearLayoutCompat_showDividers 8
-int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 }
-int styleable LinearLayoutCompat_Layout_android_layout_gravity 0
-int styleable LinearLayoutCompat_Layout_android_layout_height 1
-int styleable LinearLayoutCompat_Layout_android_layout_weight 2
-int styleable LinearLayoutCompat_Layout_android_layout_width 3
-int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad }
-int styleable ListPopupWindow_android_dropDownHorizontalOffset 0
-int styleable ListPopupWindow_android_dropDownVerticalOffset 1
-int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 }
-int styleable MenuGroup_android_checkableBehavior 0
-int styleable MenuGroup_android_enabled 1
-int styleable MenuGroup_android_id 2
-int styleable MenuGroup_android_menuCategory 3
-int styleable MenuGroup_android_orderInCategory 4
-int styleable MenuGroup_android_visible 5
-int[] styleable MenuItem { 0x0, 0x0, 0x0, 0x0, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable MenuItem_actionLayout 0
-int styleable MenuItem_actionProviderClass 1
-int styleable MenuItem_actionViewClass 2
-int styleable MenuItem_alphabeticModifiers 3
-int styleable MenuItem_android_alphabeticShortcut 4
-int styleable MenuItem_android_checkable 5
-int styleable MenuItem_android_checked 6
-int styleable MenuItem_android_enabled 7
-int styleable MenuItem_android_icon 8
-int styleable MenuItem_android_id 9
-int styleable MenuItem_android_menuCategory 10
-int styleable MenuItem_android_numericShortcut 11
-int styleable MenuItem_android_onClick 12
-int styleable MenuItem_android_orderInCategory 13
-int styleable MenuItem_android_title 14
-int styleable MenuItem_android_titleCondensed 15
-int styleable MenuItem_android_visible 16
-int styleable MenuItem_contentDescription 17
-int styleable MenuItem_iconTint 18
-int styleable MenuItem_iconTintMode 19
-int styleable MenuItem_numericModifiers 20
-int styleable MenuItem_showAsAction 21
-int styleable MenuItem_tooltipText 22
-int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x0, 0x0 }
-int styleable MenuView_android_headerBackground 0
-int styleable MenuView_android_horizontalDivider 1
-int styleable MenuView_android_itemBackground 2
-int styleable MenuView_android_itemIconDisabledAlpha 3
-int styleable MenuView_android_itemTextAppearance 4
-int styleable MenuView_android_verticalDivider 5
-int styleable MenuView_android_windowAnimationStyle 6
-int styleable MenuView_preserveIconSpacing 7
-int styleable MenuView_subMenuArrow 8
-int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x0 }
-int styleable PopupWindow_android_popupAnimationStyle 0
-int styleable PopupWindow_android_popupBackground 1
-int styleable PopupWindow_overlapAnchor 2
-int[] styleable PopupWindowBackgroundState { 0x0 }
-int styleable PopupWindowBackgroundState_state_above_anchor 0
-int[] styleable RecycleListView { 0x0, 0x0 }
-int styleable RecycleListView_paddingBottomNoButtons 0
-int styleable RecycleListView_paddingTopNoTitle 1
-int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable SearchView_android_focusable 0
-int styleable SearchView_android_imeOptions 1
-int styleable SearchView_android_inputType 2
-int styleable SearchView_android_maxWidth 3
-int styleable SearchView_closeIcon 4
-int styleable SearchView_commitIcon 5
-int styleable SearchView_defaultQueryHint 6
-int styleable SearchView_goIcon 7
-int styleable SearchView_iconifiedByDefault 8
-int styleable SearchView_layout 9
-int styleable SearchView_queryBackground 10
-int styleable SearchView_queryHint 11
-int styleable SearchView_searchHintIcon 12
-int styleable SearchView_searchIcon 13
-int styleable SearchView_submitBackground 14
-int styleable SearchView_suggestionRowLayout 15
-int styleable SearchView_voiceIcon 16
-int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x0 }
-int styleable Spinner_android_dropDownWidth 0
-int styleable Spinner_android_entries 1
-int styleable Spinner_android_popupBackground 2
-int styleable Spinner_android_prompt 3
-int styleable Spinner_popupTheme 4
-int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 }
-int styleable StateListDrawable_android_constantSize 0
-int styleable StateListDrawable_android_dither 1
-int styleable StateListDrawable_android_enterFadeDuration 2
-int styleable StateListDrawable_android_exitFadeDuration 3
-int styleable StateListDrawable_android_variablePadding 4
-int styleable StateListDrawable_android_visible 5
-int[] styleable StateListDrawableItem { 0x1010199 }
-int styleable StateListDrawableItem_android_drawable 0
-int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable SwitchCompat_android_textOff 0
-int styleable SwitchCompat_android_textOn 1
-int styleable SwitchCompat_android_thumb 2
-int styleable SwitchCompat_showText 3
-int styleable SwitchCompat_splitTrack 4
-int styleable SwitchCompat_switchMinWidth 5
-int styleable SwitchCompat_switchPadding 6
-int styleable SwitchCompat_switchTextAppearance 7
-int styleable SwitchCompat_thumbTextPadding 8
-int styleable SwitchCompat_thumbTint 9
-int styleable SwitchCompat_thumbTintMode 10
-int styleable SwitchCompat_track 11
-int styleable SwitchCompat_trackTint 12
-int styleable SwitchCompat_trackTintMode 13
-int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x0, 0x0, 0x0, 0x0 }
-int styleable TextAppearance_android_fontFamily 0
-int styleable TextAppearance_android_shadowColor 1
-int styleable TextAppearance_android_shadowDx 2
-int styleable TextAppearance_android_shadowDy 3
-int styleable TextAppearance_android_shadowRadius 4
-int styleable TextAppearance_android_textColor 5
-int styleable TextAppearance_android_textColorHint 6
-int styleable TextAppearance_android_textColorLink 7
-int styleable TextAppearance_android_textFontWeight 8
-int styleable TextAppearance_android_textSize 9
-int styleable TextAppearance_android_textStyle 10
-int styleable TextAppearance_android_typeface 11
-int styleable TextAppearance_fontFamily 12
-int styleable TextAppearance_fontVariationSettings 13
-int styleable TextAppearance_textAllCaps 14
-int styleable TextAppearance_textLocale 15
-int[] styleable Toolbar { 0x10100af, 0x1010140, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 }
-int styleable Toolbar_android_gravity 0
-int styleable Toolbar_android_minHeight 1
-int styleable Toolbar_buttonGravity 2
-int styleable Toolbar_collapseContentDescription 3
-int styleable Toolbar_collapseIcon 4
-int styleable Toolbar_contentInsetEnd 5
-int styleable Toolbar_contentInsetEndWithActions 6
-int styleable Toolbar_contentInsetLeft 7
-int styleable Toolbar_contentInsetRight 8
-int styleable Toolbar_contentInsetStart 9
-int styleable Toolbar_contentInsetStartWithNavigation 10
-int styleable Toolbar_logo 11
-int styleable Toolbar_logoDescription 12
-int styleable Toolbar_maxButtonHeight 13
-int styleable Toolbar_menu 14
-int styleable Toolbar_navigationContentDescription 15
-int styleable Toolbar_navigationIcon 16
-int styleable Toolbar_popupTheme 17
-int styleable Toolbar_subtitle 18
-int styleable Toolbar_subtitleTextAppearance 19
-int styleable Toolbar_subtitleTextColor 20
-int styleable Toolbar_title 21
-int styleable Toolbar_titleMargin 22
-int styleable Toolbar_titleMarginBottom 23
-int styleable Toolbar_titleMarginEnd 24
-int styleable Toolbar_titleMarginStart 25
-int styleable Toolbar_titleMarginTop 26
-int styleable Toolbar_titleMargins 27
-int styleable Toolbar_titleTextAppearance 28
-int styleable Toolbar_titleTextColor 29
-int[] styleable View { 0x10100da, 0x1010000, 0x0, 0x0, 0x0 }
-int styleable View_android_focusable 0
-int styleable View_android_theme 1
-int styleable View_paddingEnd 2
-int styleable View_paddingStart 3
-int styleable View_theme 4
-int[] styleable ViewBackgroundHelper { 0x10100d4, 0x0, 0x0 }
-int styleable ViewBackgroundHelper_android_background 0
-int styleable ViewBackgroundHelper_backgroundTint 1
-int styleable ViewBackgroundHelper_backgroundTintMode 2
-int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 }
-int styleable ViewStubCompat_android_id 0
-int styleable ViewStubCompat_android_inflatedId 1
-int styleable ViewStubCompat_android_layout 2
diff --git a/vanite-log/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml b/vanite-log/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
index 0703dbd..4c6617c 100644
--- a/vanite-log/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
+++ b/vanite-log/build/intermediates/incremental/mergeReleaseJniLibFolders/merger.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/incremental/mergeReleaseShaders/merger.xml b/vanite-log/build/intermediates/incremental/mergeReleaseShaders/merger.xml
index 869ce71..7475e3e 100644
--- a/vanite-log/build/intermediates/incremental/mergeReleaseShaders/merger.xml
+++ b/vanite-log/build/intermediates/incremental/mergeReleaseShaders/merger.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/incremental/packageReleaseAssets/merger.xml b/vanite-log/build/intermediates/incremental/packageReleaseAssets/merger.xml
index f5abfec..ae557a9 100644
--- a/vanite-log/build/intermediates/incremental/packageReleaseAssets/merger.xml
+++ b/vanite-log/build/intermediates/incremental/packageReleaseAssets/merger.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties b/vanite-log/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
deleted file mode 100644
index 5fc152c..0000000
--- a/vanite-log/build/intermediates/incremental/packageReleaseResources/compile-file-map.properties
+++ /dev/null
@@ -1 +0,0 @@
-#Thu Mar 10 17:20:07 PST 2022
diff --git a/vanite-log/build/intermediates/incremental/packageReleaseResources/merger.xml b/vanite-log/build/intermediates/incremental/packageReleaseResources/merger.xml
deleted file mode 100644
index d87e1e8..0000000
--- a/vanite-log/build/intermediates/incremental/packageReleaseResources/merger.xml
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/incremental/release-mergeJavaRes/merge-state b/vanite-log/build/intermediates/incremental/release-mergeJavaRes/merge-state
index 873ddcd..4f8711a 100644
Binary files a/vanite-log/build/intermediates/incremental/release-mergeJavaRes/merge-state and b/vanite-log/build/intermediates/incremental/release-mergeJavaRes/merge-state differ
diff --git a/vanite-log/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties b/vanite-log/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties
new file mode 100644
index 0000000..7566cbd
--- /dev/null
+++ b/vanite-log/build/intermediates/incremental/release/packageReleaseResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Sat Feb 18 11:09:15 EET 2023
diff --git a/vanite-log/build/intermediates/incremental/release/packageReleaseResources/merger.xml b/vanite-log/build/intermediates/incremental/release/packageReleaseResources/merger.xml
new file mode 100644
index 0000000..d451f36
--- /dev/null
+++ b/vanite-log/build/intermediates/incremental/release/packageReleaseResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/javac/release/classes/io/vanite/android/state/BuildConfig.class b/vanite-log/build/intermediates/javac/release/classes/io/vanite/android/state/BuildConfig.class
deleted file mode 100644
index 262a265..0000000
Binary files a/vanite-log/build/intermediates/javac/release/classes/io/vanite/android/state/BuildConfig.class and /dev/null differ
diff --git a/vanite-log/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt b/vanite-log/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt
index eb3186f..bc278f8 100644
--- a/vanite-log/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt
+++ b/vanite-log/build/intermediates/manifest_merge_blame_file/release/manifest-merger-blame-release-report.txt
@@ -1,11 +1,7 @@
1
2
+3 package="io.vanite.android.log" >
4
-5 D:\Vortex\vanite-log\src\main\AndroidManifest.xml
-7 android:targetSdkVersion="31" />
-7-->D:\Vortex\vanite-log\src\main\AndroidManifest.xml
-8
-9
+5
+6
+7
diff --git a/vanite-log/build/intermediates/merged_java_res/release/feature-vanite-log.jar b/vanite-log/build/intermediates/merged_java_res/release/feature-vanite-log.jar
index 5fb3289..feee12e 100644
Binary files a/vanite-log/build/intermediates/merged_java_res/release/feature-vanite-log.jar and b/vanite-log/build/intermediates/merged_java_res/release/feature-vanite-log.jar differ
diff --git a/vanite-log/build/intermediates/merged_manifest/release/AndroidManifest.xml b/vanite-log/build/intermediates/merged_manifest/release/AndroidManifest.xml
index 9954e62..b3a9c1b 100644
--- a/vanite-log/build/intermediates/merged_manifest/release/AndroidManifest.xml
+++ b/vanite-log/build/intermediates/merged_manifest/release/AndroidManifest.xml
@@ -1,9 +1,7 @@
+ package="io.vanite.android.log" >
-
+
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/packaged_manifests/release/output-metadata.json b/vanite-log/build/intermediates/packaged_manifests/release/output-metadata.json
deleted file mode 100644
index a44ebf4..0000000
--- a/vanite-log/build/intermediates/packaged_manifests/release/output-metadata.json
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- "version": 3,
- "artifactType": {
- "type": "PACKAGED_MANIFESTS",
- "kind": "Directory"
- },
- "applicationId": "io.vanite.android.state",
- "variantName": "release",
- "elements": [
- {
- "type": "SINGLE",
- "filters": [],
- "attributes": [],
- "outputFile": "../../merged_manifest/release/AndroidManifest.xml"
- }
- ],
- "elementType": "File"
-}
\ No newline at end of file
diff --git a/vanite-log/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt b/vanite-log/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt
index 9452686..f681e88 100644
--- a/vanite-log/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt
+++ b/vanite-log/build/intermediates/symbol_list_with_package_name/release/package-aware-r.txt
@@ -1,1273 +1 @@
-io.vanite.android.state
-anim abc_fade_in
-anim abc_fade_out
-anim abc_grow_fade_in_from_bottom
-anim abc_popup_enter
-anim abc_popup_exit
-anim abc_shrink_fade_out_from_bottom
-anim abc_slide_in_bottom
-anim abc_slide_in_top
-anim abc_slide_out_bottom
-anim abc_slide_out_top
-anim abc_tooltip_enter
-anim abc_tooltip_exit
-anim btn_checkbox_to_checked_box_inner_merged_animation
-anim btn_checkbox_to_checked_box_outer_merged_animation
-anim btn_checkbox_to_checked_icon_null_animation
-anim btn_checkbox_to_unchecked_box_inner_merged_animation
-anim btn_checkbox_to_unchecked_check_path_merged_animation
-anim btn_checkbox_to_unchecked_icon_null_animation
-anim btn_radio_to_off_mtrl_dot_group_animation
-anim btn_radio_to_off_mtrl_ring_outer_animation
-anim btn_radio_to_off_mtrl_ring_outer_path_animation
-anim btn_radio_to_on_mtrl_dot_group_animation
-anim btn_radio_to_on_mtrl_ring_outer_animation
-anim btn_radio_to_on_mtrl_ring_outer_path_animation
-anim fragment_fast_out_extra_slow_in
-animator fragment_close_enter
-animator fragment_close_exit
-animator fragment_fade_enter
-animator fragment_fade_exit
-animator fragment_open_enter
-animator fragment_open_exit
-attr actionBarDivider
-attr actionBarItemBackground
-attr actionBarPopupTheme
-attr actionBarSize
-attr actionBarSplitStyle
-attr actionBarStyle
-attr actionBarTabBarStyle
-attr actionBarTabStyle
-attr actionBarTabTextStyle
-attr actionBarTheme
-attr actionBarWidgetTheme
-attr actionButtonStyle
-attr actionDropDownStyle
-attr actionLayout
-attr actionMenuTextAppearance
-attr actionMenuTextColor
-attr actionModeBackground
-attr actionModeCloseButtonStyle
-attr actionModeCloseContentDescription
-attr actionModeCloseDrawable
-attr actionModeCopyDrawable
-attr actionModeCutDrawable
-attr actionModeFindDrawable
-attr actionModePasteDrawable
-attr actionModePopupWindowStyle
-attr actionModeSelectAllDrawable
-attr actionModeShareDrawable
-attr actionModeSplitBackground
-attr actionModeStyle
-attr actionModeTheme
-attr actionModeWebSearchDrawable
-attr actionOverflowButtonStyle
-attr actionOverflowMenuStyle
-attr actionProviderClass
-attr actionViewClass
-attr activityChooserViewStyle
-attr alertDialogButtonGroupStyle
-attr alertDialogCenterButtons
-attr alertDialogStyle
-attr alertDialogTheme
-attr allowStacking
-attr alpha
-attr alphabeticModifiers
-attr arrowHeadLength
-attr arrowShaftLength
-attr autoCompleteTextViewStyle
-attr autoSizeMaxTextSize
-attr autoSizeMinTextSize
-attr autoSizePresetSizes
-attr autoSizeStepGranularity
-attr autoSizeTextType
-attr background
-attr backgroundSplit
-attr backgroundStacked
-attr backgroundTint
-attr backgroundTintMode
-attr barLength
-attr borderlessButtonStyle
-attr buttonBarButtonStyle
-attr buttonBarNegativeButtonStyle
-attr buttonBarNeutralButtonStyle
-attr buttonBarPositiveButtonStyle
-attr buttonBarStyle
-attr buttonCompat
-attr buttonGravity
-attr buttonIconDimen
-attr buttonPanelSideLayout
-attr buttonStyle
-attr buttonStyleSmall
-attr buttonTint
-attr buttonTintMode
-attr checkboxStyle
-attr checkedTextViewStyle
-attr closeIcon
-attr closeItemLayout
-attr collapseContentDescription
-attr collapseIcon
-attr color
-attr colorAccent
-attr colorBackgroundFloating
-attr colorButtonNormal
-attr colorControlActivated
-attr colorControlHighlight
-attr colorControlNormal
-attr colorError
-attr colorPrimary
-attr colorPrimaryDark
-attr colorSwitchThumbNormal
-attr commitIcon
-attr contentDescription
-attr contentInsetEnd
-attr contentInsetEndWithActions
-attr contentInsetLeft
-attr contentInsetRight
-attr contentInsetStart
-attr contentInsetStartWithNavigation
-attr controlBackground
-attr customNavigationLayout
-attr defaultQueryHint
-attr dialogCornerRadius
-attr dialogPreferredPadding
-attr dialogTheme
-attr displayOptions
-attr divider
-attr dividerHorizontal
-attr dividerPadding
-attr dividerVertical
-attr drawableBottomCompat
-attr drawableEndCompat
-attr drawableLeftCompat
-attr drawableRightCompat
-attr drawableSize
-attr drawableStartCompat
-attr drawableTint
-attr drawableTintMode
-attr drawableTopCompat
-attr drawerArrowStyle
-attr dropDownListViewStyle
-attr dropdownListPreferredItemHeight
-attr editTextBackground
-attr editTextColor
-attr editTextStyle
-attr elevation
-attr expandActivityOverflowButtonDrawable
-attr firstBaselineToTopHeight
-attr font
-attr fontFamily
-attr fontProviderAuthority
-attr fontProviderCerts
-attr fontProviderFetchStrategy
-attr fontProviderFetchTimeout
-attr fontProviderPackage
-attr fontProviderQuery
-attr fontProviderSystemFontFamily
-attr fontStyle
-attr fontVariationSettings
-attr fontWeight
-attr gapBetweenBars
-attr goIcon
-attr height
-attr hideOnContentScroll
-attr homeAsUpIndicator
-attr homeLayout
-attr icon
-attr iconTint
-attr iconTintMode
-attr iconifiedByDefault
-attr imageButtonStyle
-attr indeterminateProgressStyle
-attr initialActivityCount
-attr isLightTheme
-attr itemPadding
-attr lastBaselineToBottomHeight
-attr layout
-attr lineHeight
-attr listChoiceBackgroundIndicator
-attr listChoiceIndicatorMultipleAnimated
-attr listChoiceIndicatorSingleAnimated
-attr listDividerAlertDialog
-attr listItemLayout
-attr listLayout
-attr listMenuViewStyle
-attr listPopupWindowStyle
-attr listPreferredItemHeight
-attr listPreferredItemHeightLarge
-attr listPreferredItemHeightSmall
-attr listPreferredItemPaddingEnd
-attr listPreferredItemPaddingLeft
-attr listPreferredItemPaddingRight
-attr listPreferredItemPaddingStart
-attr logo
-attr logoDescription
-attr maxButtonHeight
-attr measureWithLargestChild
-attr menu
-attr multiChoiceItemLayout
-attr navigationContentDescription
-attr navigationIcon
-attr navigationMode
-attr nestedScrollViewStyle
-attr numericModifiers
-attr overlapAnchor
-attr paddingBottomNoButtons
-attr paddingEnd
-attr paddingStart
-attr paddingTopNoTitle
-attr panelBackground
-attr panelMenuListTheme
-attr panelMenuListWidth
-attr popupMenuStyle
-attr popupTheme
-attr popupWindowStyle
-attr preserveIconSpacing
-attr progressBarPadding
-attr progressBarStyle
-attr queryBackground
-attr queryHint
-attr queryPatterns
-attr radioButtonStyle
-attr ratingBarStyle
-attr ratingBarStyleIndicator
-attr ratingBarStyleSmall
-attr searchHintIcon
-attr searchIcon
-attr searchViewStyle
-attr seekBarStyle
-attr selectableItemBackground
-attr selectableItemBackgroundBorderless
-attr shortcutMatchRequired
-attr showAsAction
-attr showDividers
-attr showText
-attr showTitle
-attr singleChoiceItemLayout
-attr spinBars
-attr spinnerDropDownItemStyle
-attr spinnerStyle
-attr splitTrack
-attr srcCompat
-attr state_above_anchor
-attr subMenuArrow
-attr submitBackground
-attr subtitle
-attr subtitleTextAppearance
-attr subtitleTextColor
-attr subtitleTextStyle
-attr suggestionRowLayout
-attr switchMinWidth
-attr switchPadding
-attr switchStyle
-attr switchTextAppearance
-attr textAllCaps
-attr textAppearanceLargePopupMenu
-attr textAppearanceListItem
-attr textAppearanceListItemSecondary
-attr textAppearanceListItemSmall
-attr textAppearancePopupMenuHeader
-attr textAppearanceSearchResultSubtitle
-attr textAppearanceSearchResultTitle
-attr textAppearanceSmallPopupMenu
-attr textColorAlertDialogListItem
-attr textColorSearchUrl
-attr textLocale
-attr theme
-attr thickness
-attr thumbTextPadding
-attr thumbTint
-attr thumbTintMode
-attr tickMark
-attr tickMarkTint
-attr tickMarkTintMode
-attr tint
-attr tintMode
-attr title
-attr titleMargin
-attr titleMarginBottom
-attr titleMarginEnd
-attr titleMarginStart
-attr titleMarginTop
-attr titleMargins
-attr titleTextAppearance
-attr titleTextColor
-attr titleTextStyle
-attr toolbarNavigationButtonStyle
-attr toolbarStyle
-attr tooltipForegroundColor
-attr tooltipFrameBackground
-attr tooltipText
-attr track
-attr trackTint
-attr trackTintMode
-attr ttcIndex
-attr viewInflaterClass
-attr voiceIcon
-attr windowActionBar
-attr windowActionBarOverlay
-attr windowActionModeOverlay
-attr windowFixedHeightMajor
-attr windowFixedHeightMinor
-attr windowFixedWidthMajor
-attr windowFixedWidthMinor
-attr windowMinWidthMajor
-attr windowMinWidthMinor
-attr windowNoTitle
-bool abc_action_bar_embed_tabs
-bool abc_config_actionMenuItemAllCaps
-color abc_background_cache_hint_selector_material_dark
-color abc_background_cache_hint_selector_material_light
-color abc_btn_colored_borderless_text_material
-color abc_btn_colored_text_material
-color abc_color_highlight_material
-color abc_decor_view_status_guard
-color abc_decor_view_status_guard_light
-color abc_hint_foreground_material_dark
-color abc_hint_foreground_material_light
-color abc_primary_text_disable_only_material_dark
-color abc_primary_text_disable_only_material_light
-color abc_primary_text_material_dark
-color abc_primary_text_material_light
-color abc_search_url_text
-color abc_search_url_text_normal
-color abc_search_url_text_pressed
-color abc_search_url_text_selected
-color abc_secondary_text_material_dark
-color abc_secondary_text_material_light
-color abc_tint_btn_checkable
-color abc_tint_default
-color abc_tint_edittext
-color abc_tint_seek_thumb
-color abc_tint_spinner
-color abc_tint_switch_track
-color accent_material_dark
-color accent_material_light
-color androidx_core_ripple_material_light
-color androidx_core_secondary_text_default_material_light
-color background_floating_material_dark
-color background_floating_material_light
-color background_material_dark
-color background_material_light
-color bright_foreground_disabled_material_dark
-color bright_foreground_disabled_material_light
-color bright_foreground_inverse_material_dark
-color bright_foreground_inverse_material_light
-color bright_foreground_material_dark
-color bright_foreground_material_light
-color button_material_dark
-color button_material_light
-color dim_foreground_disabled_material_dark
-color dim_foreground_disabled_material_light
-color dim_foreground_material_dark
-color dim_foreground_material_light
-color error_color_material_dark
-color error_color_material_light
-color foreground_material_dark
-color foreground_material_light
-color highlighted_text_material_dark
-color highlighted_text_material_light
-color material_blue_grey_800
-color material_blue_grey_900
-color material_blue_grey_950
-color material_deep_teal_200
-color material_deep_teal_500
-color material_grey_100
-color material_grey_300
-color material_grey_50
-color material_grey_600
-color material_grey_800
-color material_grey_850
-color material_grey_900
-color notification_action_color_filter
-color notification_icon_bg_color
-color primary_dark_material_dark
-color primary_dark_material_light
-color primary_material_dark
-color primary_material_light
-color primary_text_default_material_dark
-color primary_text_default_material_light
-color primary_text_disabled_material_dark
-color primary_text_disabled_material_light
-color ripple_material_dark
-color ripple_material_light
-color secondary_text_default_material_dark
-color secondary_text_default_material_light
-color secondary_text_disabled_material_dark
-color secondary_text_disabled_material_light
-color switch_thumb_disabled_material_dark
-color switch_thumb_disabled_material_light
-color switch_thumb_material_dark
-color switch_thumb_material_light
-color switch_thumb_normal_material_dark
-color switch_thumb_normal_material_light
-color tooltip_background_dark
-color tooltip_background_light
-dimen abc_action_bar_content_inset_material
-dimen abc_action_bar_content_inset_with_nav
-dimen abc_action_bar_default_height_material
-dimen abc_action_bar_default_padding_end_material
-dimen abc_action_bar_default_padding_start_material
-dimen abc_action_bar_elevation_material
-dimen abc_action_bar_icon_vertical_padding_material
-dimen abc_action_bar_overflow_padding_end_material
-dimen abc_action_bar_overflow_padding_start_material
-dimen abc_action_bar_stacked_max_height
-dimen abc_action_bar_stacked_tab_max_width
-dimen abc_action_bar_subtitle_bottom_margin_material
-dimen abc_action_bar_subtitle_top_margin_material
-dimen abc_action_button_min_height_material
-dimen abc_action_button_min_width_material
-dimen abc_action_button_min_width_overflow_material
-dimen abc_alert_dialog_button_bar_height
-dimen abc_alert_dialog_button_dimen
-dimen abc_button_inset_horizontal_material
-dimen abc_button_inset_vertical_material
-dimen abc_button_padding_horizontal_material
-dimen abc_button_padding_vertical_material
-dimen abc_cascading_menus_min_smallest_width
-dimen abc_config_prefDialogWidth
-dimen abc_control_corner_material
-dimen abc_control_inset_material
-dimen abc_control_padding_material
-dimen abc_dialog_corner_radius_material
-dimen abc_dialog_fixed_height_major
-dimen abc_dialog_fixed_height_minor
-dimen abc_dialog_fixed_width_major
-dimen abc_dialog_fixed_width_minor
-dimen abc_dialog_list_padding_bottom_no_buttons
-dimen abc_dialog_list_padding_top_no_title
-dimen abc_dialog_min_width_major
-dimen abc_dialog_min_width_minor
-dimen abc_dialog_padding_material
-dimen abc_dialog_padding_top_material
-dimen abc_dialog_title_divider_material
-dimen abc_disabled_alpha_material_dark
-dimen abc_disabled_alpha_material_light
-dimen abc_dropdownitem_icon_width
-dimen abc_dropdownitem_text_padding_left
-dimen abc_dropdownitem_text_padding_right
-dimen abc_edit_text_inset_bottom_material
-dimen abc_edit_text_inset_horizontal_material
-dimen abc_edit_text_inset_top_material
-dimen abc_floating_window_z
-dimen abc_list_item_height_large_material
-dimen abc_list_item_height_material
-dimen abc_list_item_height_small_material
-dimen abc_list_item_padding_horizontal_material
-dimen abc_panel_menu_list_width
-dimen abc_progress_bar_height_material
-dimen abc_search_view_preferred_height
-dimen abc_search_view_preferred_width
-dimen abc_seekbar_track_background_height_material
-dimen abc_seekbar_track_progress_height_material
-dimen abc_select_dialog_padding_start_material
-dimen abc_star_big
-dimen abc_star_medium
-dimen abc_star_small
-dimen abc_switch_padding
-dimen abc_text_size_body_1_material
-dimen abc_text_size_body_2_material
-dimen abc_text_size_button_material
-dimen abc_text_size_caption_material
-dimen abc_text_size_display_1_material
-dimen abc_text_size_display_2_material
-dimen abc_text_size_display_3_material
-dimen abc_text_size_display_4_material
-dimen abc_text_size_headline_material
-dimen abc_text_size_large_material
-dimen abc_text_size_medium_material
-dimen abc_text_size_menu_header_material
-dimen abc_text_size_menu_material
-dimen abc_text_size_small_material
-dimen abc_text_size_subhead_material
-dimen abc_text_size_subtitle_material_toolbar
-dimen abc_text_size_title_material
-dimen abc_text_size_title_material_toolbar
-dimen compat_button_inset_horizontal_material
-dimen compat_button_inset_vertical_material
-dimen compat_button_padding_horizontal_material
-dimen compat_button_padding_vertical_material
-dimen compat_control_corner_material
-dimen compat_notification_large_icon_max_height
-dimen compat_notification_large_icon_max_width
-dimen disabled_alpha_material_dark
-dimen disabled_alpha_material_light
-dimen highlight_alpha_material_colored
-dimen highlight_alpha_material_dark
-dimen highlight_alpha_material_light
-dimen hint_alpha_material_dark
-dimen hint_alpha_material_light
-dimen hint_pressed_alpha_material_dark
-dimen hint_pressed_alpha_material_light
-dimen notification_action_icon_size
-dimen notification_action_text_size
-dimen notification_big_circle_margin
-dimen notification_content_margin_start
-dimen notification_large_icon_height
-dimen notification_large_icon_width
-dimen notification_main_column_padding_top
-dimen notification_media_narrow_margin
-dimen notification_right_icon_size
-dimen notification_right_side_padding_top
-dimen notification_small_icon_background_padding
-dimen notification_small_icon_size_as_large
-dimen notification_subtext_size
-dimen notification_top_pad
-dimen notification_top_pad_large_text
-dimen tooltip_corner_radius
-dimen tooltip_horizontal_padding
-dimen tooltip_margin
-dimen tooltip_precise_anchor_extra_offset
-dimen tooltip_precise_anchor_threshold
-dimen tooltip_vertical_padding
-dimen tooltip_y_offset_non_touch
-dimen tooltip_y_offset_touch
-drawable abc_ab_share_pack_mtrl_alpha
-drawable abc_action_bar_item_background_material
-drawable abc_btn_borderless_material
-drawable abc_btn_check_material
-drawable abc_btn_check_material_anim
-drawable abc_btn_check_to_on_mtrl_000
-drawable abc_btn_check_to_on_mtrl_015
-drawable abc_btn_colored_material
-drawable abc_btn_default_mtrl_shape
-drawable abc_btn_radio_material
-drawable abc_btn_radio_material_anim
-drawable abc_btn_radio_to_on_mtrl_000
-drawable abc_btn_radio_to_on_mtrl_015
-drawable abc_btn_switch_to_on_mtrl_00001
-drawable abc_btn_switch_to_on_mtrl_00012
-drawable abc_cab_background_internal_bg
-drawable abc_cab_background_top_material
-drawable abc_cab_background_top_mtrl_alpha
-drawable abc_control_background_material
-drawable abc_dialog_material_background
-drawable abc_edit_text_material
-drawable abc_ic_ab_back_material
-drawable abc_ic_arrow_drop_right_black_24dp
-drawable abc_ic_clear_material
-drawable abc_ic_commit_search_api_mtrl_alpha
-drawable abc_ic_go_search_api_material
-drawable abc_ic_menu_copy_mtrl_am_alpha
-drawable abc_ic_menu_cut_mtrl_alpha
-drawable abc_ic_menu_overflow_material
-drawable abc_ic_menu_paste_mtrl_am_alpha
-drawable abc_ic_menu_selectall_mtrl_alpha
-drawable abc_ic_menu_share_mtrl_alpha
-drawable abc_ic_search_api_material
-drawable abc_ic_voice_search_api_material
-drawable abc_item_background_holo_dark
-drawable abc_item_background_holo_light
-drawable abc_list_divider_material
-drawable abc_list_divider_mtrl_alpha
-drawable abc_list_focused_holo
-drawable abc_list_longpressed_holo
-drawable abc_list_pressed_holo_dark
-drawable abc_list_pressed_holo_light
-drawable abc_list_selector_background_transition_holo_dark
-drawable abc_list_selector_background_transition_holo_light
-drawable abc_list_selector_disabled_holo_dark
-drawable abc_list_selector_disabled_holo_light
-drawable abc_list_selector_holo_dark
-drawable abc_list_selector_holo_light
-drawable abc_menu_hardkey_panel_mtrl_mult
-drawable abc_popup_background_mtrl_mult
-drawable abc_ratingbar_indicator_material
-drawable abc_ratingbar_material
-drawable abc_ratingbar_small_material
-drawable abc_scrubber_control_off_mtrl_alpha
-drawable abc_scrubber_control_to_pressed_mtrl_000
-drawable abc_scrubber_control_to_pressed_mtrl_005
-drawable abc_scrubber_primary_mtrl_alpha
-drawable abc_scrubber_track_mtrl_alpha
-drawable abc_seekbar_thumb_material
-drawable abc_seekbar_tick_mark_material
-drawable abc_seekbar_track_material
-drawable abc_spinner_mtrl_am_alpha
-drawable abc_spinner_textfield_background_material
-drawable abc_star_black_48dp
-drawable abc_star_half_black_48dp
-drawable abc_switch_thumb_material
-drawable abc_switch_track_mtrl_alpha
-drawable abc_tab_indicator_material
-drawable abc_tab_indicator_mtrl_alpha
-drawable abc_text_cursor_material
-drawable abc_text_select_handle_left_mtrl
-drawable abc_text_select_handle_middle_mtrl
-drawable abc_text_select_handle_right_mtrl
-drawable abc_textfield_activated_mtrl_alpha
-drawable abc_textfield_default_mtrl_alpha
-drawable abc_textfield_search_activated_mtrl_alpha
-drawable abc_textfield_search_default_mtrl_alpha
-drawable abc_textfield_search_material
-drawable abc_vector_test
-drawable btn_checkbox_checked_mtrl
-drawable btn_checkbox_checked_to_unchecked_mtrl_animation
-drawable btn_checkbox_unchecked_mtrl
-drawable btn_checkbox_unchecked_to_checked_mtrl_animation
-drawable btn_radio_off_mtrl
-drawable btn_radio_off_to_on_mtrl_animation
-drawable btn_radio_on_mtrl
-drawable btn_radio_on_to_off_mtrl_animation
-drawable notification_action_background
-drawable notification_bg
-drawable notification_bg_low
-drawable notification_bg_low_normal
-drawable notification_bg_low_pressed
-drawable notification_bg_normal
-drawable notification_bg_normal_pressed
-drawable notification_icon_background
-drawable notification_template_icon_bg
-drawable notification_template_icon_low_bg
-drawable notification_tile_bg
-drawable notify_panel_notification_icon_bg
-drawable tooltip_frame_dark
-drawable tooltip_frame_light
-id accessibility_action_clickable_span
-id accessibility_custom_action_0
-id accessibility_custom_action_1
-id accessibility_custom_action_10
-id accessibility_custom_action_11
-id accessibility_custom_action_12
-id accessibility_custom_action_13
-id accessibility_custom_action_14
-id accessibility_custom_action_15
-id accessibility_custom_action_16
-id accessibility_custom_action_17
-id accessibility_custom_action_18
-id accessibility_custom_action_19
-id accessibility_custom_action_2
-id accessibility_custom_action_20
-id accessibility_custom_action_21
-id accessibility_custom_action_22
-id accessibility_custom_action_23
-id accessibility_custom_action_24
-id accessibility_custom_action_25
-id accessibility_custom_action_26
-id accessibility_custom_action_27
-id accessibility_custom_action_28
-id accessibility_custom_action_29
-id accessibility_custom_action_3
-id accessibility_custom_action_30
-id accessibility_custom_action_31
-id accessibility_custom_action_4
-id accessibility_custom_action_5
-id accessibility_custom_action_6
-id accessibility_custom_action_7
-id accessibility_custom_action_8
-id accessibility_custom_action_9
-id action_bar
-id action_bar_activity_content
-id action_bar_container
-id action_bar_root
-id action_bar_spinner
-id action_bar_subtitle
-id action_bar_title
-id action_container
-id action_context_bar
-id action_divider
-id action_image
-id action_menu_divider
-id action_menu_presenter
-id action_mode_bar
-id action_mode_bar_stub
-id action_mode_close_button
-id action_text
-id actions
-id activity_chooser_view_content
-id add
-id alertTitle
-id androidx_compose_ui_view_composition_context
-id async
-id blocking
-id buttonPanel
-id checkbox
-id checked
-id chronometer
-id compose_view_saveable_id_tag
-id content
-id contentPanel
-id custom
-id customPanel
-id decor_content_parent
-id default_activity_button
-id dialog_button
-id edit_query
-id expand_activities_button
-id expanded_menu
-id forever
-id fragment_container_view_tag
-id group_divider
-id hide_in_inspector_tag
-id home
-id icon
-id icon_group
-id image
-id info
-id inspection_slot_table_set
-id italic
-id line1
-id line3
-id listMode
-id list_item
-id message
-id multiply
-id none
-id normal
-id notification_background
-id notification_main_column
-id notification_main_column_container
-id off
-id on
-id parentPanel
-id progress_circular
-id progress_horizontal
-id radio
-id right_icon
-id right_side
-id screen
-id scrollIndicatorDown
-id scrollIndicatorUp
-id scrollView
-id search_badge
-id search_bar
-id search_button
-id search_close_btn
-id search_edit_frame
-id search_go_btn
-id search_mag_icon
-id search_plate
-id search_src_text
-id search_voice_btn
-id select_dialog_listview
-id shortcut
-id spacer
-id special_effects_controller_view_tag
-id split_action_bar
-id src_atop
-id src_in
-id src_over
-id submenuarrow
-id submit_area
-id tabMode
-id tag_accessibility_actions
-id tag_accessibility_clickable_spans
-id tag_accessibility_heading
-id tag_accessibility_pane_title
-id tag_on_apply_window_listener
-id tag_on_receive_content_listener
-id tag_on_receive_content_mime_types
-id tag_screen_reader_focusable
-id tag_state_description
-id tag_transition_group
-id tag_unhandled_key_event_manager
-id tag_unhandled_key_listeners
-id tag_window_insets_animation_callback
-id text
-id text2
-id textSpacerNoButtons
-id textSpacerNoTitle
-id time
-id title
-id titleDividerNoCustom
-id title_template
-id topPanel
-id unchecked
-id uniform
-id up
-id view_tree_lifecycle_owner
-id view_tree_saved_state_registry_owner
-id view_tree_view_model_store_owner
-id visible_removing_fragment_view_tag
-id wrap_content
-id wrapped_composition_tag
-integer abc_config_activityDefaultDur
-integer abc_config_activityShortDur
-integer cancel_button_image_alpha
-integer config_tooltipAnimTime
-integer status_bar_notification_info_maxnum
-interpolator btn_checkbox_checked_mtrl_animation_interpolator_0
-interpolator btn_checkbox_checked_mtrl_animation_interpolator_1
-interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0
-interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1
-interpolator btn_radio_to_off_mtrl_animation_interpolator_0
-interpolator btn_radio_to_on_mtrl_animation_interpolator_0
-interpolator fast_out_slow_in
-layout abc_action_bar_title_item
-layout abc_action_bar_up_container
-layout abc_action_menu_item_layout
-layout abc_action_menu_layout
-layout abc_action_mode_bar
-layout abc_action_mode_close_item_material
-layout abc_activity_chooser_view
-layout abc_activity_chooser_view_list_item
-layout abc_alert_dialog_button_bar_material
-layout abc_alert_dialog_material
-layout abc_alert_dialog_title_material
-layout abc_cascading_menu_item_layout
-layout abc_dialog_title_material
-layout abc_expanded_menu_layout
-layout abc_list_menu_item_checkbox
-layout abc_list_menu_item_icon
-layout abc_list_menu_item_layout
-layout abc_list_menu_item_radio
-layout abc_popup_menu_header_item_layout
-layout abc_popup_menu_item_layout
-layout abc_screen_content_include
-layout abc_screen_simple
-layout abc_screen_simple_overlay_action_mode
-layout abc_screen_toolbar
-layout abc_search_dropdown_item_icons_2line
-layout abc_search_view
-layout abc_select_dialog_material
-layout abc_tooltip
-layout custom_dialog
-layout notification_action
-layout notification_action_tombstone
-layout notification_template_custom_big
-layout notification_template_icon_group
-layout notification_template_part_chronometer
-layout notification_template_part_time
-layout select_dialog_item_material
-layout select_dialog_multichoice_material
-layout select_dialog_singlechoice_material
-layout support_simple_spinner_dropdown_item
-string abc_action_bar_home_description
-string abc_action_bar_up_description
-string abc_action_menu_overflow_description
-string abc_action_mode_done
-string abc_activity_chooser_view_see_all
-string abc_activitychooserview_choose_application
-string abc_capital_off
-string abc_capital_on
-string abc_menu_alt_shortcut_label
-string abc_menu_ctrl_shortcut_label
-string abc_menu_delete_shortcut_label
-string abc_menu_enter_shortcut_label
-string abc_menu_function_shortcut_label
-string abc_menu_meta_shortcut_label
-string abc_menu_shift_shortcut_label
-string abc_menu_space_shortcut_label
-string abc_menu_sym_shortcut_label
-string abc_prepend_shortcut_label
-string abc_search_hint
-string abc_searchview_description_clear
-string abc_searchview_description_query
-string abc_searchview_description_search
-string abc_searchview_description_submit
-string abc_searchview_description_voice
-string abc_shareactionprovider_share_with
-string abc_shareactionprovider_share_with_application
-string abc_toolbar_collapse_description
-string androidx_startup
-string close_drawer
-string close_sheet
-string default_error_message
-string in_progress
-string indeterminate
-string navigation_menu
-string not_selected
-string off
-string on
-string search_menu_title
-string selected
-string status_bar_notification_info_overflow
-string tab
-string template_percent
-style AlertDialog_AppCompat
-style AlertDialog_AppCompat_Light
-style Animation_AppCompat_Dialog
-style Animation_AppCompat_DropDownUp
-style Animation_AppCompat_Tooltip
-style Base_AlertDialog_AppCompat
-style Base_AlertDialog_AppCompat_Light
-style Base_Animation_AppCompat_Dialog
-style Base_Animation_AppCompat_DropDownUp
-style Base_Animation_AppCompat_Tooltip
-style Base_DialogWindowTitleBackground_AppCompat
-style Base_DialogWindowTitle_AppCompat
-style Base_TextAppearance_AppCompat
-style Base_TextAppearance_AppCompat_Body1
-style Base_TextAppearance_AppCompat_Body2
-style Base_TextAppearance_AppCompat_Button
-style Base_TextAppearance_AppCompat_Caption
-style Base_TextAppearance_AppCompat_Display1
-style Base_TextAppearance_AppCompat_Display2
-style Base_TextAppearance_AppCompat_Display3
-style Base_TextAppearance_AppCompat_Display4
-style Base_TextAppearance_AppCompat_Headline
-style Base_TextAppearance_AppCompat_Inverse
-style Base_TextAppearance_AppCompat_Large
-style Base_TextAppearance_AppCompat_Large_Inverse
-style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
-style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
-style Base_TextAppearance_AppCompat_Medium
-style Base_TextAppearance_AppCompat_Medium_Inverse
-style Base_TextAppearance_AppCompat_Menu
-style Base_TextAppearance_AppCompat_SearchResult
-style Base_TextAppearance_AppCompat_SearchResult_Subtitle
-style Base_TextAppearance_AppCompat_SearchResult_Title
-style Base_TextAppearance_AppCompat_Small
-style Base_TextAppearance_AppCompat_Small_Inverse
-style Base_TextAppearance_AppCompat_Subhead
-style Base_TextAppearance_AppCompat_Subhead_Inverse
-style Base_TextAppearance_AppCompat_Title
-style Base_TextAppearance_AppCompat_Title_Inverse
-style Base_TextAppearance_AppCompat_Tooltip
-style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
-style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
-style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
-style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
-style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
-style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
-style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
-style Base_TextAppearance_AppCompat_Widget_Button
-style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored
-style Base_TextAppearance_AppCompat_Widget_Button_Colored
-style Base_TextAppearance_AppCompat_Widget_Button_Inverse
-style Base_TextAppearance_AppCompat_Widget_DropDownItem
-style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header
-style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
-style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
-style Base_TextAppearance_AppCompat_Widget_Switch
-style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
-style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
-style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
-style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
-style Base_ThemeOverlay_AppCompat
-style Base_ThemeOverlay_AppCompat_ActionBar
-style Base_ThemeOverlay_AppCompat_Dark
-style Base_ThemeOverlay_AppCompat_Dark_ActionBar
-style Base_ThemeOverlay_AppCompat_Dialog
-style Base_ThemeOverlay_AppCompat_Dialog_Alert
-style Base_ThemeOverlay_AppCompat_Light
-style Base_Theme_AppCompat
-style Base_Theme_AppCompat_CompactMenu
-style Base_Theme_AppCompat_Dialog
-style Base_Theme_AppCompat_DialogWhenLarge
-style Base_Theme_AppCompat_Dialog_Alert
-style Base_Theme_AppCompat_Dialog_FixedSize
-style Base_Theme_AppCompat_Dialog_MinWidth
-style Base_Theme_AppCompat_Light
-style Base_Theme_AppCompat_Light_DarkActionBar
-style Base_Theme_AppCompat_Light_Dialog
-style Base_Theme_AppCompat_Light_DialogWhenLarge
-style Base_Theme_AppCompat_Light_Dialog_Alert
-style Base_Theme_AppCompat_Light_Dialog_FixedSize
-style Base_Theme_AppCompat_Light_Dialog_MinWidth
-style Base_V21_ThemeOverlay_AppCompat_Dialog
-style Base_V21_Theme_AppCompat
-style Base_V21_Theme_AppCompat_Dialog
-style Base_V21_Theme_AppCompat_Light
-style Base_V21_Theme_AppCompat_Light_Dialog
-style Base_V22_Theme_AppCompat
-style Base_V22_Theme_AppCompat_Light
-style Base_V23_Theme_AppCompat
-style Base_V23_Theme_AppCompat_Light
-style Base_V26_Theme_AppCompat
-style Base_V26_Theme_AppCompat_Light
-style Base_V26_Widget_AppCompat_Toolbar
-style Base_V28_Theme_AppCompat
-style Base_V28_Theme_AppCompat_Light
-style Base_V7_ThemeOverlay_AppCompat_Dialog
-style Base_V7_Theme_AppCompat
-style Base_V7_Theme_AppCompat_Dialog
-style Base_V7_Theme_AppCompat_Light
-style Base_V7_Theme_AppCompat_Light_Dialog
-style Base_V7_Widget_AppCompat_AutoCompleteTextView
-style Base_V7_Widget_AppCompat_EditText
-style Base_V7_Widget_AppCompat_Toolbar
-style Base_Widget_AppCompat_ActionBar
-style Base_Widget_AppCompat_ActionBar_Solid
-style Base_Widget_AppCompat_ActionBar_TabBar
-style Base_Widget_AppCompat_ActionBar_TabText
-style Base_Widget_AppCompat_ActionBar_TabView
-style Base_Widget_AppCompat_ActionButton
-style Base_Widget_AppCompat_ActionButton_CloseMode
-style Base_Widget_AppCompat_ActionButton_Overflow
-style Base_Widget_AppCompat_ActionMode
-style Base_Widget_AppCompat_ActivityChooserView
-style Base_Widget_AppCompat_AutoCompleteTextView
-style Base_Widget_AppCompat_Button
-style Base_Widget_AppCompat_ButtonBar
-style Base_Widget_AppCompat_ButtonBar_AlertDialog
-style Base_Widget_AppCompat_Button_Borderless
-style Base_Widget_AppCompat_Button_Borderless_Colored
-style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
-style Base_Widget_AppCompat_Button_Colored
-style Base_Widget_AppCompat_Button_Small
-style Base_Widget_AppCompat_CompoundButton_CheckBox
-style Base_Widget_AppCompat_CompoundButton_RadioButton
-style Base_Widget_AppCompat_CompoundButton_Switch
-style Base_Widget_AppCompat_DrawerArrowToggle
-style Base_Widget_AppCompat_DrawerArrowToggle_Common
-style Base_Widget_AppCompat_DropDownItem_Spinner
-style Base_Widget_AppCompat_EditText
-style Base_Widget_AppCompat_ImageButton
-style Base_Widget_AppCompat_Light_ActionBar
-style Base_Widget_AppCompat_Light_ActionBar_Solid
-style Base_Widget_AppCompat_Light_ActionBar_TabBar
-style Base_Widget_AppCompat_Light_ActionBar_TabText
-style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
-style Base_Widget_AppCompat_Light_ActionBar_TabView
-style Base_Widget_AppCompat_Light_PopupMenu
-style Base_Widget_AppCompat_Light_PopupMenu_Overflow
-style Base_Widget_AppCompat_ListMenuView
-style Base_Widget_AppCompat_ListPopupWindow
-style Base_Widget_AppCompat_ListView
-style Base_Widget_AppCompat_ListView_DropDown
-style Base_Widget_AppCompat_ListView_Menu
-style Base_Widget_AppCompat_PopupMenu
-style Base_Widget_AppCompat_PopupMenu_Overflow
-style Base_Widget_AppCompat_PopupWindow
-style Base_Widget_AppCompat_ProgressBar
-style Base_Widget_AppCompat_ProgressBar_Horizontal
-style Base_Widget_AppCompat_RatingBar
-style Base_Widget_AppCompat_RatingBar_Indicator
-style Base_Widget_AppCompat_RatingBar_Small
-style Base_Widget_AppCompat_SearchView
-style Base_Widget_AppCompat_SearchView_ActionBar
-style Base_Widget_AppCompat_SeekBar
-style Base_Widget_AppCompat_SeekBar_Discrete
-style Base_Widget_AppCompat_Spinner
-style Base_Widget_AppCompat_Spinner_Underlined
-style Base_Widget_AppCompat_TextView
-style Base_Widget_AppCompat_TextView_SpinnerItem
-style Base_Widget_AppCompat_Toolbar
-style Base_Widget_AppCompat_Toolbar_Button_Navigation
-style DialogWindowTheme
-style Platform_AppCompat
-style Platform_AppCompat_Light
-style Platform_ThemeOverlay_AppCompat
-style Platform_ThemeOverlay_AppCompat_Dark
-style Platform_ThemeOverlay_AppCompat_Light
-style Platform_V21_AppCompat
-style Platform_V21_AppCompat_Light
-style Platform_V25_AppCompat
-style Platform_V25_AppCompat_Light
-style Platform_Widget_AppCompat_Spinner
-style RtlOverlay_DialogWindowTitle_AppCompat
-style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
-style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
-style RtlOverlay_Widget_AppCompat_PopupMenuItem
-style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
-style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut
-style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow
-style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
-style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title
-style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
-style RtlOverlay_Widget_AppCompat_Search_DropDown
-style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
-style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
-style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
-style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
-style RtlUnderlay_Widget_AppCompat_ActionButton
-style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow
-style TextAppearance_AppCompat
-style TextAppearance_AppCompat_Body1
-style TextAppearance_AppCompat_Body2
-style TextAppearance_AppCompat_Button
-style TextAppearance_AppCompat_Caption
-style TextAppearance_AppCompat_Display1
-style TextAppearance_AppCompat_Display2
-style TextAppearance_AppCompat_Display3
-style TextAppearance_AppCompat_Display4
-style TextAppearance_AppCompat_Headline
-style TextAppearance_AppCompat_Inverse
-style TextAppearance_AppCompat_Large
-style TextAppearance_AppCompat_Large_Inverse
-style TextAppearance_AppCompat_Light_SearchResult_Subtitle
-style TextAppearance_AppCompat_Light_SearchResult_Title
-style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
-style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
-style TextAppearance_AppCompat_Medium
-style TextAppearance_AppCompat_Medium_Inverse
-style TextAppearance_AppCompat_Menu
-style TextAppearance_AppCompat_SearchResult_Subtitle
-style TextAppearance_AppCompat_SearchResult_Title
-style TextAppearance_AppCompat_Small
-style TextAppearance_AppCompat_Small_Inverse
-style TextAppearance_AppCompat_Subhead
-style TextAppearance_AppCompat_Subhead_Inverse
-style TextAppearance_AppCompat_Title
-style TextAppearance_AppCompat_Title_Inverse
-style TextAppearance_AppCompat_Tooltip
-style TextAppearance_AppCompat_Widget_ActionBar_Menu
-style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
-style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
-style TextAppearance_AppCompat_Widget_ActionBar_Title
-style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
-style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
-style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
-style TextAppearance_AppCompat_Widget_ActionMode_Title
-style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
-style TextAppearance_AppCompat_Widget_Button
-style TextAppearance_AppCompat_Widget_Button_Borderless_Colored
-style TextAppearance_AppCompat_Widget_Button_Colored
-style TextAppearance_AppCompat_Widget_Button_Inverse
-style TextAppearance_AppCompat_Widget_DropDownItem
-style TextAppearance_AppCompat_Widget_PopupMenu_Header
-style TextAppearance_AppCompat_Widget_PopupMenu_Large
-style TextAppearance_AppCompat_Widget_PopupMenu_Small
-style TextAppearance_AppCompat_Widget_Switch
-style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
-style TextAppearance_Compat_Notification
-style TextAppearance_Compat_Notification_Info
-style TextAppearance_Compat_Notification_Line2
-style TextAppearance_Compat_Notification_Time
-style TextAppearance_Compat_Notification_Title
-style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
-style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
-style TextAppearance_Widget_AppCompat_Toolbar_Title
-style ThemeOverlay_AppCompat
-style ThemeOverlay_AppCompat_ActionBar
-style ThemeOverlay_AppCompat_Dark
-style ThemeOverlay_AppCompat_Dark_ActionBar
-style ThemeOverlay_AppCompat_DayNight
-style ThemeOverlay_AppCompat_DayNight_ActionBar
-style ThemeOverlay_AppCompat_Dialog
-style ThemeOverlay_AppCompat_Dialog_Alert
-style ThemeOverlay_AppCompat_Light
-style Theme_AppCompat
-style Theme_AppCompat_CompactMenu
-style Theme_AppCompat_DayNight
-style Theme_AppCompat_DayNight_DarkActionBar
-style Theme_AppCompat_DayNight_Dialog
-style Theme_AppCompat_DayNight_DialogWhenLarge
-style Theme_AppCompat_DayNight_Dialog_Alert
-style Theme_AppCompat_DayNight_Dialog_MinWidth
-style Theme_AppCompat_DayNight_NoActionBar
-style Theme_AppCompat_Dialog
-style Theme_AppCompat_DialogWhenLarge
-style Theme_AppCompat_Dialog_Alert
-style Theme_AppCompat_Dialog_MinWidth
-style Theme_AppCompat_Empty
-style Theme_AppCompat_Light
-style Theme_AppCompat_Light_DarkActionBar
-style Theme_AppCompat_Light_Dialog
-style Theme_AppCompat_Light_DialogWhenLarge
-style Theme_AppCompat_Light_Dialog_Alert
-style Theme_AppCompat_Light_Dialog_MinWidth
-style Theme_AppCompat_Light_NoActionBar
-style Theme_AppCompat_NoActionBar
-style Widget_AppCompat_ActionBar
-style Widget_AppCompat_ActionBar_Solid
-style Widget_AppCompat_ActionBar_TabBar
-style Widget_AppCompat_ActionBar_TabText
-style Widget_AppCompat_ActionBar_TabView
-style Widget_AppCompat_ActionButton
-style Widget_AppCompat_ActionButton_CloseMode
-style Widget_AppCompat_ActionButton_Overflow
-style Widget_AppCompat_ActionMode
-style Widget_AppCompat_ActivityChooserView
-style Widget_AppCompat_AutoCompleteTextView
-style Widget_AppCompat_Button
-style Widget_AppCompat_ButtonBar
-style Widget_AppCompat_ButtonBar_AlertDialog
-style Widget_AppCompat_Button_Borderless
-style Widget_AppCompat_Button_Borderless_Colored
-style Widget_AppCompat_Button_ButtonBar_AlertDialog
-style Widget_AppCompat_Button_Colored
-style Widget_AppCompat_Button_Small
-style Widget_AppCompat_CompoundButton_CheckBox
-style Widget_AppCompat_CompoundButton_RadioButton
-style Widget_AppCompat_CompoundButton_Switch
-style Widget_AppCompat_DrawerArrowToggle
-style Widget_AppCompat_DropDownItem_Spinner
-style Widget_AppCompat_EditText
-style Widget_AppCompat_ImageButton
-style Widget_AppCompat_Light_ActionBar
-style Widget_AppCompat_Light_ActionBar_Solid
-style Widget_AppCompat_Light_ActionBar_Solid_Inverse
-style Widget_AppCompat_Light_ActionBar_TabBar
-style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
-style Widget_AppCompat_Light_ActionBar_TabText
-style Widget_AppCompat_Light_ActionBar_TabText_Inverse
-style Widget_AppCompat_Light_ActionBar_TabView
-style Widget_AppCompat_Light_ActionBar_TabView_Inverse
-style Widget_AppCompat_Light_ActionButton
-style Widget_AppCompat_Light_ActionButton_CloseMode
-style Widget_AppCompat_Light_ActionButton_Overflow
-style Widget_AppCompat_Light_ActionMode_Inverse
-style Widget_AppCompat_Light_ActivityChooserView
-style Widget_AppCompat_Light_AutoCompleteTextView
-style Widget_AppCompat_Light_DropDownItem_Spinner
-style Widget_AppCompat_Light_ListPopupWindow
-style Widget_AppCompat_Light_ListView_DropDown
-style Widget_AppCompat_Light_PopupMenu
-style Widget_AppCompat_Light_PopupMenu_Overflow
-style Widget_AppCompat_Light_SearchView
-style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
-style Widget_AppCompat_ListMenuView
-style Widget_AppCompat_ListPopupWindow
-style Widget_AppCompat_ListView
-style Widget_AppCompat_ListView_DropDown
-style Widget_AppCompat_ListView_Menu
-style Widget_AppCompat_PopupMenu
-style Widget_AppCompat_PopupMenu_Overflow
-style Widget_AppCompat_PopupWindow
-style Widget_AppCompat_ProgressBar
-style Widget_AppCompat_ProgressBar_Horizontal
-style Widget_AppCompat_RatingBar
-style Widget_AppCompat_RatingBar_Indicator
-style Widget_AppCompat_RatingBar_Small
-style Widget_AppCompat_SearchView
-style Widget_AppCompat_SearchView_ActionBar
-style Widget_AppCompat_SeekBar
-style Widget_AppCompat_SeekBar_Discrete
-style Widget_AppCompat_Spinner
-style Widget_AppCompat_Spinner_DropDown
-style Widget_AppCompat_Spinner_DropDown_ActionBar
-style Widget_AppCompat_Spinner_Underlined
-style Widget_AppCompat_TextView
-style Widget_AppCompat_TextView_SpinnerItem
-style Widget_AppCompat_Toolbar
-style Widget_AppCompat_Toolbar_Button_Navigation
-style Widget_Compat_NotificationActionContainer
-style Widget_Compat_NotificationActionText
-styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
-styleable ActionBarLayout android_layout_gravity
-styleable ActionMenuItemView android_minWidth
-styleable ActionMenuView
-styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
-styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
-styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout
-styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
-styleable AnimatedStateListDrawableItem android_drawable android_id
-styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId
-styleable AppCompatImageView android_src srcCompat tint tintMode
-styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode
-styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance
-styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale
-styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseContentDescription actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeTheme actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
-styleable ButtonBarLayout allowStacking
-styleable Capability queryPatterns shortcutMatchRequired
-styleable ColorStateListItem alpha android_alpha android_color
-styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode
-styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness
-styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery fontProviderSystemFontFamily
-styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex
-styleable Fragment android_id android_name android_tag
-styleable FragmentContainerView android_name android_tag
-styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type
-styleable GradientColorItem android_color android_offset
-styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers
-styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width
-styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
-styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible
-styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText
-styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow
-styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor
-styleable PopupWindowBackgroundState state_above_anchor
-styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle
-styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
-styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme
-styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible
-styleable StateListDrawableItem android_drawable
-styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode
-styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale
-styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor
-styleable View android_focusable android_theme paddingEnd paddingStart theme
-styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode
-styleable ViewStubCompat android_id android_inflatedId android_layout
+io.vanite.android.log
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/build-history.bin b/vanite-log/build/kotlin/compileReleaseKotlin/build-history.bin
deleted file mode 100644
index 315ec1e..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/build-history.bin and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
similarity index 96%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab
index b776a04..f25aad7 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
similarity index 76%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream
index 034c6e2..2f3adda 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at
new file mode 100644
index 0000000..8b4ce15
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
similarity index 98%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i
index 9b68bd2..4421061 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
new file mode 100644
index 0000000..319138d
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/constants.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at
similarity index 59%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at
index 9807456..3a8a4b2 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab.values.at and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/inline-functions.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/inline-functions.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
new file mode 100644
index 0000000..0ff0e08
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
similarity index 99%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at
index 84d9a85..136ad24 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
similarity index 76%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream
index b928994..92b676c 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/counters.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
similarity index 76%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream
index b928994..92b676c 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
similarity index 97%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i
index 1e491cd..d53c117 100644
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/file-to-id.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at
new file mode 100644
index 0000000..cd135aa
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.keystream.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab.values.at
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
similarity index 100%
rename from vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/lookups.tab_i.len
rename to vanite-log/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin
new file mode 100644
index 0000000..10bee0a
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at
deleted file mode 100644
index 7f5e131..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/inputs/source-to-output.tab.values.at and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at
deleted file mode 100644
index d7035cc..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at
deleted file mode 100644
index 3f220f5..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at
deleted file mode 100644
index d53ec91..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/caches-jvm/lookups/id-to-file.tab.values.at and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/last-build.bin b/vanite-log/build/kotlin/compileReleaseKotlin/last-build.bin
deleted file mode 100644
index 6be8dad..0000000
Binary files a/vanite-log/build/kotlin/compileReleaseKotlin/last-build.bin and /dev/null differ
diff --git a/vanite-log/build/kotlin/compileReleaseKotlin/local-state/build-history.bin b/vanite-log/build/kotlin/compileReleaseKotlin/local-state/build-history.bin
new file mode 100644
index 0000000..0be9222
Binary files /dev/null and b/vanite-log/build/kotlin/compileReleaseKotlin/local-state/build-history.bin differ
diff --git a/vanite-log/build/libs/vanite-log-1.0.0-sources.jar b/vanite-log/build/libs/vanite-log-1.0.0-sources.jar
deleted file mode 100644
index 44bdc1a..0000000
Binary files a/vanite-log/build/libs/vanite-log-1.0.0-sources.jar and /dev/null differ
diff --git a/vanite-log/build/libs/vanite-log-1.0.0-sources.jar.asc b/vanite-log/build/libs/vanite-log-1.0.0-sources.jar.asc
deleted file mode 100644
index b7f12c0..0000000
--- a/vanite-log/build/libs/vanite-log-1.0.0-sources.jar.asc
+++ /dev/null
@@ -1,17 +0,0 @@
------BEGIN PGP SIGNATURE-----
-Version: BCPG v1.68
-
-iQIcBAABCgAGBQJiKqPoAAoJEB1ITFGDIuUZIIkP/1qaIwegCapy8gYqrv6jHJs6
-1rc9knMsp7j5EPER5hjV1oCRQ9pZpf9UQOU1eApYA3l+C9Jki6oWta4uHaALdxHG
-hqbUYgVnAZS8EpRkTQbhg/ymgt16nNh7LyQBs46H8mxouPsgRLx1vF1HU4spG3vF
-Gettnfo3dqBU3QNMYsZqmy9PWsHMAqadQQCkf4uHataB3Nz4WwunzRwMKM2QSHRC
-DwJ29t74pzYJSrS26YxiYxVPZYLptCbFbYx9Y4j6beu5vB5SSZy4dIVN9Kjg3qKI
-ivTDlFvRuZhPVA69RP5sxXBThMh0jKU40TNAjaHNXuGpziAdarAraPCd8LJjW5vx
-lB7i98kYkk9zf1irAO5nI0dq5TnIu/r/VN2/DjwwIkewAORhbVFh70w69Ax/Kk6F
-pHt15pyWNDl0iLKyY66snTelfhvpjlCYOd53H+aZmNKqABugcg4Sx/RpbK3rnzKl
-Om4Ijl470x7eH3BLJEqNS47IeYPeV6DE+vGD5luHAWdfRT5EQqlTnyWLpAtj0PeY
-mS8sU6u7pqNwh77pbd3otaeO45WQbnSCTxWbjbPKgUnR+8gbIkMSAIvRswL3BngI
-dfsVstinuqzdx16NDf5K3ot6IIi7g+nUlWZdqP/fQo4V4kSRUh1oa63jgSXb60ff
-wXSl0YtpXPtqLDWBcJFS
-=+AsE
------END PGP SIGNATURE-----
diff --git a/vanite-log/build/libs/vanite-log-2.0.0-sources.jar b/vanite-log/build/libs/vanite-log-2.0.0-sources.jar
new file mode 100644
index 0000000..86e85f3
Binary files /dev/null and b/vanite-log/build/libs/vanite-log-2.0.0-sources.jar differ
diff --git a/vanite-log/build/libs/vanite-log-2.0.0-sources.jar.asc b/vanite-log/build/libs/vanite-log-2.0.0-sources.jar.asc
new file mode 100644
index 0000000..f1258f2
--- /dev/null
+++ b/vanite-log/build/libs/vanite-log-2.0.0-sources.jar.asc
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: BCPG v1.68
+
+iQIcBAABCgAGBQJj8JX8AAoJEB1ITFGDIuUZZZIP/iKsLQ+7uFJ7XPnXCF7hsPvU
+ssRg8iPV/JQJu/wRxD7vSp4Sj1RZ+uBDw332N5gBg+4j1r54qu1xsFqX2wC/wACg
+5Ner9JvoSngroZ+6siUKK8Vb4lfMjWcVhnUR6b/k3YhByi3ldTHK5IXEafYyC3Qg
+ojotbXYkffrLWdpB8nYqm0OJlkgAYhEcuq8AsLkfukGRo4JZ5kC1q4gpO9v38gNe
+lkKG809nzafHmPbE4cpFNroNIuTvQKBK7RxJnwDpGMWmh8GOXPoiYIlOqLF6/9G6
+ma/zD/c4YXtGNXz35Zf+ch+FV8ivAZzM2NmNYh8mrv64UEzNoMm4uGgfv71RJMi2
+YLvVICMmLCKve2d25+Fo6HzUbaVe+V4e/5DRIQy0OQIAKsImjMzr8DPXuVGoafKy
+qTlwHorAZB5EoiHpH+mk3unXSsohFo8JClDhdZ78WQ8rtd84ekjMnav+zGYMTH8m
+uPVkmMCNO45gNreF/UWkYdywxy9Q4QhfHe0Kk9RYD1Ow0qq7tGhMJ/xtPlLZIMAI
+TYHKHlU2P7mvCNvGwPCHArDvkeHwygVyxOfC9wKRd+Il6dmy5CmcGJKUHvwSG2Eq
+ffY1VS7ADsXr2YM0by22qvYKXn0kdg7YVcHtsJkbvTApXKmr0Wb/JMjlDTFgFR8t
+0gryo+krFELvl4T6C0MD
+=O04j
+-----END PGP SIGNATURE-----
diff --git a/vanite-log/build/outputs/aar/vanite-log-release.aar b/vanite-log/build/outputs/aar/vanite-log-release.aar
index 8f03a12..6aa3eae 100644
Binary files a/vanite-log/build/outputs/aar/vanite-log-release.aar and b/vanite-log/build/outputs/aar/vanite-log-release.aar differ
diff --git a/vanite-log/build/outputs/aar/vanite-log-release.aar.asc b/vanite-log/build/outputs/aar/vanite-log-release.aar.asc
index 0e61bd3..0b7f106 100644
--- a/vanite-log/build/outputs/aar/vanite-log-release.aar.asc
+++ b/vanite-log/build/outputs/aar/vanite-log-release.aar.asc
@@ -1,17 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68
-iQIcBAABCgAGBQJiKqPoAAoJEB1ITFGDIuUZT4kP/2ZGrsjP4xXf30McpHeTFPnd
-yOOEjbHnh6eMhhpyj1GQdGUL5H95yXChRkv9VZ8yR/DoH2ZZDlxw4S1Ewid0IPVY
-uYQtUacqEdFmLESVcFE7ulsoLqOJj1dWAhYkksmuEuOAEKD0u19ekWi5gN8FfrQj
-9bHCWWpmTqeeTqq1XRfp6hk/hHOVmS5W1GkXDFGx66FPPNVwkQp+M/AHrb/zujBW
-rAeydiRiRHtyF66vYYCxxvoIrHASWEjqS840B++xh+3BlxDjrBE0vZQTL/ZGk1Hj
-u2/ogQb+4gluJM7i6I8+j2HI24304jHdCgHxldOjJ6LsKe4FQiH+P6WIPnesZlZK
-PovEayR9SjDm03sn3eAhrXZFO9y16cHUAmF+FGO/0uyqMBuliGgq638pkIFOGbFP
-tCK1q/+6/rIKCykmuzCXdA4oVyiOjcfjkiubj/BNLHl5YiNSptktcXd9FCp0hjT5
-t24B0N5TOwskpBn+PsU69ZSXzXy8/EQ9b2FjD/vQlHGXEtP6nwFjwngyUt9A9wr5
-Xgk7o8zeEc9Fx3YJOpwmnKcnDtFBtXz93JKrG74hp0GNcPgTkGq/McU08LOP7Hdy
-ynHzp90UgBGo2zxoLP/+Muo9oAefWLudnoG/Sp5lFt4KCDBzEoYJ/DBnkEygmvg6
-fuqzgDOXvoucAlbqWee9
-=gyiK
+iQIcBAABCgAGBQJj8JX9AAoJEB1ITFGDIuUZ9tcP+gJj2X7dzA7OgiJ/uZahQf08
+/Zte51XofbYHFJyGytUHDz0enqfMVkluXw1d55+CqDDw1V7Aq4bGa0KdeHEa0QjI
+ZkWG6+IbT1tiDH0DW1C3Y6CZ2bMHTZ8cwnAFcej3VLB1Okx64s+sa6PRq+I8/41O
+d0VKE/rt9JsKRR7hAj5Gk7AxP5SwoIujBjAhFK/NbumBILaO8csbitV0k8gw+sEP
+eO6j2tGKLtUNsd9vpcInNV2TH7rmwMZUkw1MK3rHX8YljoyAEVm4wOB2Ml/R9j/K
+N3F9EZLRStfguowniTa2awjj9P/x3NQV4RJm5ZSOhCbZWOOFMJeyHnjQLkDeCg9c
+50UKtNFLIO4r0oVJ9iosc+xEINVoqP6Lz0JyniociFTSrMIkxqxUh0OFgPWcXkfJ
+RrZPI4k3GCbl3SipPMplZrt2v0iemMWaWVz1iR2psbQAzzHCZOLS7JH87U9vYpTS
+DwynT1EqJj8kF3UykqIPw6NuGuByYW0PneVpjRxZnJJueadBzNW+XsnIcvsqDnBu
+R7JzyIOsElEVEB8L++gnv+qgGoWLZLcnXSHxTulXNsksCGiLf63VtgenVDzA9pEk
+htyafKcwxqwfRjR52LRogYHotEGYUe/Spqhoa+2HK2cAZhOn0g1JBoguyOgOAreN
+2HYlhuOnR6BzKI3fyVx5
+=zh8E
-----END PGP SIGNATURE-----
diff --git a/vanite-log/build/outputs/logs/manifest-merger-release-report.txt b/vanite-log/build/outputs/logs/manifest-merger-release-report.txt
index ac2e871..37a114e 100644
--- a/vanite-log/build/outputs/logs/manifest-merger-release-report.txt
+++ b/vanite-log/build/outputs/logs/manifest-merger-release-report.txt
@@ -1,25 +1,23 @@
-- Merging decision tree log ---
manifest
-ADDED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml:1:1-2:41
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml:1:1-2:41
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml:1:1-2:41
+ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
package
- ADDED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml:2:5-38
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+ ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:1-2:7
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
xmlns:android
- ADDED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml:1:11-69
+ ADDED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml:1:11-69
uses-sdk
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml reason: use-sdk injection requested
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
-INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml reason: use-sdk injection requested
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
android:targetSdkVersion
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
- ADDED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
android:minSdkVersion
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
- ADDED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
- INJECTED from D:\Vortex\vanite-log\src\main\AndroidManifest.xml
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
+ INJECTED from /Users/yazantarifi/DevelopmentProjects/Vanite/vanite-log/src/main/AndroidManifest.xml
diff --git a/vanite-log/build/publications/release/module.json b/vanite-log/build/publications/release/module.json
index db4419b..6b028c8 100644
--- a/vanite-log/build/publications/release/module.json
+++ b/vanite-log/build/publications/release/module.json
@@ -3,58 +3,56 @@
"component": {
"group": "com.yazantarifi",
"module": "vanite-log",
- "version": "1.0.0",
+ "version": "2.0.0",
"attributes": {
"org.gradle.status": "release"
}
},
"createdBy": {
"gradle": {
- "version": "7.1"
+ "version": "8.0-rc-2"
}
},
"variants": [
{
- "name": "releaseApiPublication",
+ "name": "releaseApiElements-published",
"attributes": {
"org.gradle.category": "library",
- "org.gradle.dependency.bundling": "external",
- "org.gradle.libraryelements": "aar",
- "org.gradle.usage": "java-api"
+ "org.gradle.usage": "java-api",
+ "org.jetbrains.kotlin.platform.type": "androidJvm"
},
"files": [
{
- "name": "vanite-log-1.0.0.aar",
- "url": "vanite-log-1.0.0.aar",
- "size": 31222,
- "sha512": "036ebb409a8cfdb7cd0cf330254b2dee0d9b300cc01578ce7040dc0f8acbb71417c181170ccde59ce8584bb9edb62a427b497c9192769d30a23633711bdb3717",
- "sha256": "4d1191d36a73680b098ac5b591b8f8c67b47bc66113bedcc30f75b5efdd4e3fa",
- "sha1": "ed8d5abd876118a530ef1dafbc05ceeb5b0b129d",
- "md5": "91afa58a2cfdae53e5e4e12cf805369a"
+ "name": "vanite-log-2.0.0.aar",
+ "url": "vanite-log-2.0.0.aar",
+ "size": 19318,
+ "sha512": "294f0bd5d255ebe1492d289719e209cc6f22c18ad64c0c37a9b9dbc6c870cbd8a5dc9ab2e049e1c2497a3f837d1dee2377b9a670e7710781f74dc031c1b40ce2",
+ "sha256": "1d8f06374f3f67cb39dd407ae4a51f754beb48e6c97477faa9d17130a6aa8d73",
+ "sha1": "6639c9b24898cbb02593350ff20dd676addf13a9",
+ "md5": "78cb4ff1d47705fd5d48bb062bbfc163"
}
]
},
{
- "name": "releaseRuntimePublication",
+ "name": "releaseRuntimeElements-published",
"attributes": {
"org.gradle.category": "library",
- "org.gradle.dependency.bundling": "external",
- "org.gradle.libraryelements": "aar",
- "org.gradle.usage": "java-runtime"
+ "org.gradle.usage": "java-runtime",
+ "org.jetbrains.kotlin.platform.type": "androidJvm"
},
"dependencies": [
{
"group": "org.jetbrains.kotlin",
"module": "kotlin-android-extensions-runtime",
"version": {
- "requires": "1.6.10"
+ "requires": "1.7.20"
}
},
{
"group": "org.jetbrains.kotlin",
"module": "kotlin-stdlib-jdk7",
"version": {
- "requires": "1.5.20"
+ "requires": "null"
}
},
{
@@ -103,19 +101,19 @@
"group": "com.yazantarifi",
"module": "vanite",
"version": {
- "requires": "1.0.0"
+ "requires": "2.0.0"
}
}
],
"files": [
{
- "name": "vanite-log-1.0.0.aar",
- "url": "vanite-log-1.0.0.aar",
- "size": 31222,
- "sha512": "036ebb409a8cfdb7cd0cf330254b2dee0d9b300cc01578ce7040dc0f8acbb71417c181170ccde59ce8584bb9edb62a427b497c9192769d30a23633711bdb3717",
- "sha256": "4d1191d36a73680b098ac5b591b8f8c67b47bc66113bedcc30f75b5efdd4e3fa",
- "sha1": "ed8d5abd876118a530ef1dafbc05ceeb5b0b129d",
- "md5": "91afa58a2cfdae53e5e4e12cf805369a"
+ "name": "vanite-log-2.0.0.aar",
+ "url": "vanite-log-2.0.0.aar",
+ "size": 19318,
+ "sha512": "294f0bd5d255ebe1492d289719e209cc6f22c18ad64c0c37a9b9dbc6c870cbd8a5dc9ab2e049e1c2497a3f837d1dee2377b9a670e7710781f74dc031c1b40ce2",
+ "sha256": "1d8f06374f3f67cb39dd407ae4a51f754beb48e6c97477faa9d17130a6aa8d73",
+ "sha1": "6639c9b24898cbb02593350ff20dd676addf13a9",
+ "md5": "78cb4ff1d47705fd5d48bb062bbfc163"
}
]
}
diff --git a/vanite-log/build/publications/release/module.json.asc b/vanite-log/build/publications/release/module.json.asc
index 787f478..a003c6e 100644
--- a/vanite-log/build/publications/release/module.json.asc
+++ b/vanite-log/build/publications/release/module.json.asc
@@ -1,17 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68
-iQIcBAABCgAGBQJiKqPoAAoJEB1ITFGDIuUZfqsQAI7agz7gU6hWVY+hGEz9v+pC
-PASsNLcKStgyADJuAnL1mdQIeZVBBuaIQAwDMmbIuzRtTz3pVUhRYFF2tTj+qMr/
-4POrn1o6PMqDpLe0xS4nbSSVSXFkNCjJ7tIMjlkfpnic6ciPxIGLsrvF8ZrMQsDU
-xD6Ovp0mWsHS9RQuHjW9go/Tbwwo6pDUPdFRheHS4tf9BsJld61fhxqRR9M2e2pK
-NrbXJ+3tw8HjOzMzvHihOIn1tkdQywZyrEReUUeYP7UuK+88XBcx331LpbbmqHt3
-GsnTXMVJRrS9a6naq5HCju7BCC+Kty75tJmxODAKy8gptvqcgFRZWhAssqoTxoCA
-yx1p7EYF2r/3cJ9APXxlcfqZn2g2vfYhkiHt33WLozC6Cc+XRZvqS9CK5iawU40p
-iqy/pZ4yZ+av/oMzd/k0tS2qSmI2K8QE/B8k+3jBt4mvo1LR1ZILTK0vDcQRDoTQ
-xHgxcizdAYkktMlSBrzm2b2DjL4acD3VL7qNA4DoI1OrbsnqsKEttuo2Wpm9KF5N
-uPx2MJ8jIuVNh3Ty+EWBmUfPeRn0rr3elRGIWiSSHtmrfpPzItSNHWJcqU3OqrVy
-GmlZ7VXLyodKbYqfuLtUFMPYFyK9rxdeN1+rbgpU+Q15MAo/LXbP7QsZuqBdT33e
-nrs9LYYXR9yyjENzdEah
-=srfd
+iQIcBAABCgAGBQJj8JX9AAoJEB1ITFGDIuUZaLcP/34UXjO0H7ypNZg9cjMXwteU
+i94Cpi+4zOJPvrSXNngkOTQ+oKhSDUIZyPy8CaW2R0nwASMbzcy2PeNFh9NAWANi
+KM0+V2sprIwo3mXlPvZ4H/TQJdtib5MJnggkQHc73PuIHtBIIyjnDn8vxTlQDxB+
+3gB5m6BBAZw5ngjOHVkd99J1t02qkXoNuuUbi9A2LJy7sVAC0LEg68PTrbrdXcVK
+vMJMthzA1GUsg+cgCp9yap/GV1CRug1049G7XUw2+6CaWKklw0mW0iCWmnVs0y3g
+fVyin5sADTTww0fM3bS9Yvv5rXn/TfrkvMDvcOV7AeranpxHYgNn9RJWFot5u+Em
+JuUvBwdpKcs2L4Hy2FP5C6QjbOUdhiGmaZ8J1Q5fVsD0mrOQiW87k6YdcFgXxrTs
+ceLkVNr1DTo68oFKx7HU+zgwAuFZcZnpTi9Mqp3tRwlWDT0lzO9X+UTjcx6v2QuO
+v8ZSGrUPItbhobWHcgi2VBxv/tv8SvMy0hqeiQhD/KzOBZL2tnrvT7YXALI5wjoO
+JScFO3m71jRxhTf6wbMS0a23wzwGAODjMemBRy3AHTltw2pmg01TOogGKyFzEihD
+BJkF8DyLXpQknoobeco8/CLQNncaDHGKa5bdF64TRiIRd+D2PmQeJO6Cnl89o65C
+p9aAzo7Uc1/nRNjnb9+Y
+=DS2C
-----END PGP SIGNATURE-----
diff --git a/vanite-log/build/publications/release/pom-default.xml b/vanite-log/build/publications/release/pom-default.xml
index 47f7c56..3ceecf6 100644
--- a/vanite-log/build/publications/release/pom-default.xml
+++ b/vanite-log/build/publications/release/pom-default.xml
@@ -9,7 +9,7 @@
4.0.0
com.yazantarifi
vanite-log
- 1.0.0
+ 2.0.0
aar
vanite-log
Application Structure, Base Code, Configuration, Utility Classes to Build Android Applications
@@ -36,13 +36,13 @@
org.jetbrains.kotlin
kotlin-android-extensions-runtime
- 1.6.10
+ 1.7.20
runtime
org.jetbrains.kotlin
kotlin-stdlib-jdk7
- 1.5.20
+ null
runtime
@@ -84,7 +84,7 @@
com.yazantarifi
vanite
- 1.0.0
+ 2.0.0
runtime
diff --git a/vanite-log/build/publications/release/pom-default.xml.asc b/vanite-log/build/publications/release/pom-default.xml.asc
index 3276a3f..3eefae4 100644
--- a/vanite-log/build/publications/release/pom-default.xml.asc
+++ b/vanite-log/build/publications/release/pom-default.xml.asc
@@ -1,17 +1,17 @@
-----BEGIN PGP SIGNATURE-----
Version: BCPG v1.68
-iQIcBAABCgAGBQJiKqPoAAoJEB1ITFGDIuUZI/gQAJ9krwoN/01EzA3IlJvL+Wwl
-15rIYe8NEcHIWKpcD9SCLOMvbkdTVgTNr0iglnROxBvHC+VC2vAmZO5fCqZBVHOw
-ZLdfgH+erjz3iRedmG55IBZgBPYA6pZ6x8si+02HK4enlBu0p0doD1fnbUaWtNh3
-oc8OLJVAau8zY1fVp1Zvx1Z688O81LqX0jh1P6kgjQBnpH9Dtx+uKku+XAwOosea
-VOtvndpCqo0byu8vU2YKidBMUUT/kkQCaVtSg+ZJ81LeETHusAeB0ljsH083KVoe
-YIuPUkSz8oxMejUgF+UMTwomqilcOGU5snCsKerJwQTEOZVHNglLiNft1V8dtcl5
-ZtYKo3f+wqJRahNbgxrPtIcHUhbv8nzQQyokCTMAzBkFqeTTB4OBJJ5ZxMr093x6
-c1wAsaNyCyXQr6+u9jyCsRuUKvLl4dlrZK0otliXXntssRIMgicBEiB4BwqYjuKZ
-oDv2+fhIjY8YAJDlB+VZxObMhL0pq++xtuBAI9eA8yWQTghHJqEo7s4IOgt1pXkN
-ImMNS1B/WlxYwG0CSdIDd9apTNLO86aw9x2Nc7hqPHA8iUo75Tb2bIwk1mlNz/97
-uuSbMYLm/rXB5c1BDxZRtYtXGb70UDmfuh8s0tGkL8VCkEKsxgqx8nWXF+PH3Ls0
-FOlaDw08HDx1emogiYA6
-=VAo1
+iQIcBAABCgAGBQJj8JX9AAoJEB1ITFGDIuUZL5kQAIrWXoKEoOlu/qP/rIcAwSKG
+pAZ+ezDCDZLD6gRsVj4NKFaAbX6PsVRHLFPSDMyAeW8asZEXq8k/6QE0JwKCBYxj
+D+yaG2bfNe3rxcrzREVxlO+oyor9Ah29QcfZeKrIw+bECvc3Q7LQ7fAvd9qvVxGU
+DNHQXSXIcMWLNNTpZSYTnXDj/ZWvclaFYfx5g9wPLUeZFowp6MZAth396GlRL8pX
+bTpYCBwIGb0T6B/CH4WaMnMxEffh90wWt3HR/XhmfQh4HsMg+EPmcjVXbfdiuJIA
+/6PnBG/EmHOu688hNZBf/cWMILLkxgSZEI260VTVypzwHshrASn5AhC9ttDuAQvv
+PhFwqjk/AStFSuFANYLOE8EvIlUZvtjLMnZLwH4mn+t4jKf9zYnx8eP5t7C2Sd2d
+NBb2/l1OSnpqGVvJfbNYfixPgBRg9/qVIGghvNl4FT4VWqXqfN3ASPkUzp4yFob5
+8buTw7a32rIrhuDJ4Pgsrra/Z8NK73g2XMNRLKCSueUFXpzzzZlsS2wDEm0DgSbA
+QHEmqnWPeEiXL5uy04Z+/Ze/VZkXlRx7AG8AJYE/MRQOARzmDmv8ghZXCWVT5HQq
+ZVILJP3PFYxekD22hgAvTNPULoR7UViuBgk7aXeYODKbDNXXkCDWL7mAG+UcFwTE
+AATCozG0Ga/GoS4VeoIc
+=IQYG
-----END PGP SIGNATURE-----
diff --git a/vanite-log/build/tmp/androidSourcesJar/MANIFEST.MF b/vanite-log/build/tmp/androidSourcesJar/MANIFEST.MF
index 59499bc..58630c0 100644
--- a/vanite-log/build/tmp/androidSourcesJar/MANIFEST.MF
+++ b/vanite-log/build/tmp/androidSourcesJar/MANIFEST.MF
@@ -1,2 +1,2 @@
-Manifest-Version: 1.0
-
+Manifest-Version: 1.0
+
diff --git a/vanite-log/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin b/vanite-log/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin
deleted file mode 100644
index c08aa92..0000000
Binary files a/vanite-log/build/tmp/compileReleaseJavaWithJavac/previous-compilation-data.bin and /dev/null differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/META-INF/vanite-log_release.kotlin_module b/vanite-log/build/tmp/kotlin-classes/release/META-INF/vanite-log_release.kotlin_module
index 3a4e3bf..8c840dd 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/META-INF/vanite-log_release.kotlin_module and b/vanite-log/build/tmp/kotlin-classes/release/META-INF/vanite-log_release.kotlin_module differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$WhenMappings.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$WhenMappings.class
index f5639cf..778afe2 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$WhenMappings.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$WhenMappings.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$print$1.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$print$1.class
index 8f21346..893b6b8 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$print$1.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$print$1.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$printLevel$1.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$printLevel$1.class
index 7fd6099..3c08441 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$printLevel$1.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog$printLevel$1.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog.class
index 76a63b7..06ac41c 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLog.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerInitException.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerInitException.class
index 4988c24..e14c168 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerInitException.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerInitException.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerTesting.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerTesting.class
index 9a5eb0f..b8ca17c 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerTesting.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/VaniteLoggerTesting.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteBaseOptionsInitializer.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteBaseOptionsInitializer.class
index 051cd8c..eb7103d 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteBaseOptionsInitializer.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteBaseOptionsInitializer.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerConfiguration.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerConfiguration.class
index 79e636d..c653076 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerConfiguration.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerConfiguration.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions$Companion.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions$Companion.class
index 6cfe94a..b84f62a 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions$Companion.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions$Companion.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions.class
index 75a4349..15810d3 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerDefaultOptions.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions$Companion.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions$Companion.class
index 02a27d7..6f928b2 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions$Companion.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions$Companion.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions.class
index 7477f6c..0fdbfa5 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/config/VaniteLoggerOptions.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerLevel.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerLevel.class
index 2adb094..c7ebea8 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerLevel.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerLevel.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerMode.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerMode.class
index 4762842..d2a2d9b 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerMode.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggerMode.class differ
diff --git a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggingStatus.class b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggingStatus.class
index 61e229d..b8a1254 100644
Binary files a/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggingStatus.class and b/vanite-log/build/tmp/kotlin-classes/release/io/vanite/android/logger/keys/VaniteLoggingStatus.class differ
diff --git a/vanite-log/build/tmp/publishReleasePublicationToSonatypeRepository/module-maven-metadata.xml b/vanite-log/build/tmp/publishReleasePublicationToSonatypeRepository/module-maven-metadata.xml
index 7f3278f..5828949 100644
--- a/vanite-log/build/tmp/publishReleasePublicationToSonatypeRepository/module-maven-metadata.xml
+++ b/vanite-log/build/tmp/publishReleasePublicationToSonatypeRepository/module-maven-metadata.xml
@@ -3,11 +3,11 @@
com.yazantarifi
vanite-log
- 1.0.0
- 1.0.0
+ 2.0.0
+ 2.0.0
- 1.0.0
+ 2.0.0
- 20220311012047
+ 20230218091028
diff --git a/vanite-log/src/main/AndroidManifest.xml b/vanite-log/src/main/AndroidManifest.xml
index a242afb..5d283d3 100644
--- a/vanite-log/src/main/AndroidManifest.xml
+++ b/vanite-log/src/main/AndroidManifest.xml
@@ -1,2 +1,2 @@
+ />
diff --git a/vanite-permissions/build.gradle b/vanite-permissions/build.gradle
index e6bb4d6..ca523d4 100644
--- a/vanite-permissions/build.gradle
+++ b/vanite-permissions/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.permissions'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-permissions/src/main/AndroidManifest.xml b/vanite-permissions/src/main/AndroidManifest.xml
index f0096b0..672f5d2 100644
--- a/vanite-permissions/src/main/AndroidManifest.xml
+++ b/vanite-permissions/src/main/AndroidManifest.xml
@@ -1,2 +1,2 @@
+ />
diff --git a/vanite-prefs/build.gradle b/vanite-prefs/build.gradle
index b76e1e0..ed22b35 100644
--- a/vanite-prefs/build.gradle
+++ b/vanite-prefs/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.prefs'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-prefs/src/main/AndroidManifest.xml b/vanite-prefs/src/main/AndroidManifest.xml
index 4282e02..5d283d3 100644
--- a/vanite-prefs/src/main/AndroidManifest.xml
+++ b/vanite-prefs/src/main/AndroidManifest.xml
@@ -1,2 +1,2 @@
+ />
diff --git a/vanite-secured-prefs/.gitignore b/vanite-secured-prefs/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/vanite-secured-prefs/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/vanite-secured-prefs/build.gradle b/vanite-secured-prefs/build.gradle
new file mode 100644
index 0000000..7654b0d
--- /dev/null
+++ b/vanite-secured-prefs/build.gradle
@@ -0,0 +1,53 @@
+apply plugin: "${rootProject.ext.LibraryPlugin}"
+apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
+apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
+
+android {
+ compileSdk rootProject.ext.ApplicationCompileV
+
+ defaultConfig {
+ namespace 'io.vanite.android.secured.prefs'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
+ versionCode rootProject.ext.LibraryVersionCode
+ versionName "${rootProject.ext.LibraryVersion}"
+
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ debuggable false
+ }
+ }
+
+ lintOptions {
+ abortOnError false
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
+ kotlinOptions {
+ jvmTarget = '10'
+ }
+
+ buildFeatures {
+ buildConfig true
+ }
+}
+
+
+ext {
+ PUBLISH_ARTIFACT_ID = 'vanite-secured-prefs'
+}
+
+apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
+
+
+dependencies { configurations ->
+ implementation 'androidx.security:security-crypto-ktx:1.1.0-alpha04'
+ implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
+}
diff --git a/vanite-secured-prefs/consumer-rules.pro b/vanite-secured-prefs/consumer-rules.pro
new file mode 100644
index 0000000..e69de29
diff --git a/vanite-secured-prefs/proguard-rules.pro b/vanite-secured-prefs/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/vanite-secured-prefs/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/vanite-secured-prefs/src/androidTest/java/io/vanite/android/secured/prefs/ExampleInstrumentedTest.kt b/vanite-secured-prefs/src/androidTest/java/io/vanite/android/secured/prefs/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..4e38073
--- /dev/null
+++ b/vanite-secured-prefs/src/androidTest/java/io/vanite/android/secured/prefs/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package io.vanite.android.secured.prefs
+
+import androidx.test.platform.app.InstrumentationRegistry
+import androidx.test.ext.junit.runners.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getInstrumentation().targetContext
+ assertEquals("io.vanite.android.secured.prefs.test", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/vanite-secured-prefs/src/main/AndroidManifest.xml b/vanite-secured-prefs/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..a5918e6
--- /dev/null
+++ b/vanite-secured-prefs/src/main/AndroidManifest.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefs.kt b/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefs.kt
new file mode 100644
index 0000000..d980990
--- /dev/null
+++ b/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefs.kt
@@ -0,0 +1,103 @@
+package io.vanite.android.secured.prefs
+
+import android.content.SharedPreferences
+import kotlinx.coroutines.Dispatchers
+import kotlinx.coroutines.withContext
+
+open class VaniteSecuredPrefs constructor(private val sharedPreferences: SharedPreferences) {
+
+ companion object {
+ private const val ACCESS_TOKEN_KEY = "AccessToken"
+ private const val LANGUAGE = "LanguageSelected"
+ private const val USER_STATUS = "UserStatus"
+ }
+
+ private val prefsEditor: SharedPreferences.Editor by lazy {
+ sharedPreferences.edit()
+ }
+
+ suspend fun put(key: String, value: Any) {
+ withContext(Dispatchers.IO) {
+ when (value) {
+ is String -> prefsEditor.putString(key, value)
+ is Long -> prefsEditor.putLong(key, value)
+ is Float -> prefsEditor.putFloat(key, value)
+ is Boolean -> prefsEditor.putBoolean(key, value)
+ is Int -> prefsEditor.putInt(key, value)
+ else -> {
+ }
+ }
+ prefsEditor.commit()
+ }
+ }
+
+ suspend fun get(key: String, defVal: Any): Any? {
+ return withContext(Dispatchers.IO) {
+ when (defVal) {
+ is String -> sharedPreferences.getString(key, defVal) as Any
+ is Long -> sharedPreferences.getLong(key, defVal)
+ is Float -> sharedPreferences.getFloat(key, defVal)
+ is Boolean -> sharedPreferences.getBoolean(key, defVal)
+ is Int -> sharedPreferences.getInt(key, defVal)
+ else -> {
+ }
+ }
+ }
+ }
+
+ fun putLocalKey(key: String, value: Any) {
+ when (value) {
+ is String -> prefsEditor.putString(key, value)
+ is Long -> prefsEditor.putLong(key, value)
+ is Float -> prefsEditor.putFloat(key, value)
+ is Boolean -> prefsEditor.putBoolean(key, value)
+ is Int -> prefsEditor.putInt(key, value)
+ else -> {
+ }
+ }
+ prefsEditor.commit()
+ }
+
+ fun getLocalKey(key: String, defVal: Any): Any? {
+ return when (defVal) {
+ is String -> sharedPreferences.getString(key, defVal) as Any
+ is Long -> sharedPreferences.getLong(key, defVal)
+ is Float -> sharedPreferences.getFloat(key, defVal)
+ is Boolean -> sharedPreferences.getBoolean(key, defVal)
+ is Int -> sharedPreferences.getInt(key, defVal)
+ else -> {
+ }
+ }
+ }
+
+ suspend fun getAccessToken(): String? {
+ return get(ACCESS_TOKEN_KEY, "") as String
+ }
+
+ suspend fun saveAccessToken(token: String) {
+ withContext(Dispatchers.IO) {
+ put(ACCESS_TOKEN_KEY, token)
+ }
+ }
+
+ suspend fun getSelectedLanguage(): String? {
+ return get(LANGUAGE, "") as String
+ }
+
+ suspend fun saveSelectedLanguage(language: String) {
+ withContext(Dispatchers.IO) {
+ put(LANGUAGE, language)
+ }
+ }
+
+ suspend fun getUserStatus(): Boolean? {
+ return get(USER_STATUS, false) as Boolean
+ }
+
+ suspend fun saveUserStatus(status: Boolean) {
+ withContext(Dispatchers.IO) {
+ put(USER_STATUS, status)
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefsProvider.kt b/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefsProvider.kt
new file mode 100644
index 0000000..50b1405
--- /dev/null
+++ b/vanite-secured-prefs/src/main/java/io/vanite/android/secured/prefs/VaniteSecuredPrefsProvider.kt
@@ -0,0 +1,22 @@
+package io.vanite.android.secured.prefs
+
+import android.content.Context
+import android.content.SharedPreferences
+import androidx.security.crypto.EncryptedSharedPreferences
+import androidx.security.crypto.MasterKey
+
+object VaniteSecuredPrefsProvider {
+
+ fun getSecuredInstance(context: Context, name: String): SharedPreferences {
+ return EncryptedSharedPreferences.create(
+ context,
+ name,
+ MasterKey.Builder(context)
+ .setKeyScheme(MasterKey.KeyScheme.AES256_GCM)
+ .build(),
+ EncryptedSharedPreferences.PrefKeyEncryptionScheme.AES256_SIV,
+ EncryptedSharedPreferences.PrefValueEncryptionScheme.AES256_GCM
+ )
+ }
+
+}
\ No newline at end of file
diff --git a/vanite-secured-prefs/src/test/java/io/vanite/android/secured/prefs/ExampleUnitTest.kt b/vanite-secured-prefs/src/test/java/io/vanite/android/secured/prefs/ExampleUnitTest.kt
new file mode 100644
index 0000000..eaa16b3
--- /dev/null
+++ b/vanite-secured-prefs/src/test/java/io/vanite/android/secured/prefs/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package io.vanite.android.secured.prefs
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/vanite-ui-binding/build.gradle b/vanite-ui-binding/build.gradle
index c05f580..fd52af6 100644
--- a/vanite-ui-binding/build.gradle
+++ b/vanite-ui-binding/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.ui.binding'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-ui-binding/src/main/AndroidManifest.xml b/vanite-ui-binding/src/main/AndroidManifest.xml
index 9495c6e..a5918e6 100644
--- a/vanite-ui-binding/src/main/AndroidManifest.xml
+++ b/vanite-ui-binding/src/main/AndroidManifest.xml
@@ -1,5 +1,4 @@
-
+
\ No newline at end of file
diff --git a/vanite-ui/build.gradle b/vanite-ui/build.gradle
index 6db1354..451eee4 100644
--- a/vanite-ui/build.gradle
+++ b/vanite-ui/build.gradle
@@ -3,12 +3,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidPlugin}"
apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.ui'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -25,8 +25,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite-ui/src/main/AndroidManifest.xml b/vanite-ui/src/main/AndroidManifest.xml
index a3cbf55..5d283d3 100644
--- a/vanite-ui/src/main/AndroidManifest.xml
+++ b/vanite-ui/src/main/AndroidManifest.xml
@@ -1,2 +1,2 @@
+ />
diff --git a/vanite-ui/src/main/java/io/vanite/android/ui/dialog/VaniteBottomDialog.kt b/vanite-ui/src/main/java/io/vanite/android/ui/dialog/VaniteBottomDialog.kt
index 1cfb463..89d20d7 100644
--- a/vanite-ui/src/main/java/io/vanite/android/ui/dialog/VaniteBottomDialog.kt
+++ b/vanite-ui/src/main/java/io/vanite/android/ui/dialog/VaniteBottomDialog.kt
@@ -13,7 +13,6 @@ import com.google.android.material.bottomsheet.BottomSheetDialogFragment
import io.vanite.android.VaniteAction
import io.vanite.android.base.VaniteViewModel
import io.vanite.android.state.VaniteState
-import io.vanite.android.ui.R
abstract class VaniteBottomDialog> :
BottomSheetDialogFragment() {
@@ -46,8 +45,9 @@ abstract class VaniteBottomDialog(R.id.design_bottom_sheet)
+ val bottomSheet = d.findViewById(id)
bottomSheet?.let {
BottomSheetBehavior.from(it).setState(BottomSheetBehavior.STATE_EXPANDED)
}
@@ -66,9 +66,10 @@ abstract class VaniteBottomDialog(R.id.design_bottom_sheet)
+ fun onStartFullScreenBehavior(id: Int) {
+ val bottomSheet = dialog?.findViewById(id)
bottomSheet?.layoutParams?.height = ViewGroup.LayoutParams.MATCH_PARENT
}
diff --git a/vanite-utils/build.gradle b/vanite-utils/build.gradle
index 474a473..f1d2b53 100644
--- a/vanite-utils/build.gradle
+++ b/vanite-utils/build.gradle
@@ -4,12 +4,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
apply plugin: "${rootProject.ext.KotlinKaptPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android.utils'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -26,8 +26,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite/build.gradle b/vanite/build.gradle
index 9f0a6c6..c6fdcd4 100644
--- a/vanite/build.gradle
+++ b/vanite/build.gradle
@@ -4,12 +4,12 @@ apply plugin: "${rootProject.ext.KotlinAndroidExtPlugin}"
apply plugin: "${rootProject.ext.KotlinKaptPlugin}"
android {
- compileSdkVersion rootProject.ext.ApplicationCompileV
+ compileSdk rootProject.ext.ApplicationCompileV
defaultConfig {
-
- minSdkVersion rootProject.ext.MinSdkV
- targetSdkVersion rootProject.ext.ApplicationCompileV
+ namespace 'io.vanite.android'
+ minSdk rootProject.ext.MinSdkV
+ targetSdk rootProject.ext.ApplicationCompileV
versionCode rootProject.ext.LibraryVersionCode
versionName "${rootProject.ext.LibraryVersion}"
@@ -26,8 +26,13 @@ android {
abortOnError false
}
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_10
+ targetCompatibility JavaVersion.VERSION_1_10
+ }
+
kotlinOptions {
- jvmTarget = "1.8"
+ jvmTarget = '10'
}
}
diff --git a/vanite/src/main/AndroidManifest.xml b/vanite/src/main/AndroidManifest.xml
index c96d7b9..e889960 100644
--- a/vanite/src/main/AndroidManifest.xml
+++ b/vanite/src/main/AndroidManifest.xml
@@ -1,5 +1,4 @@
-
+
diff --git a/vanite/src/main/java/io/vanite/android/models/VaniteResult.kt b/vanite/src/main/java/io/vanite/android/models/VaniteResult.kt
index 3b59507..a151536 100644
--- a/vanite/src/main/java/io/vanite/android/models/VaniteResult.kt
+++ b/vanite/src/main/java/io/vanite/android/models/VaniteResult.kt
@@ -26,6 +26,7 @@ sealed class VaniteResult {
is Success -> successBlock(successData)
is Failure -> failureBlock(errorData)
is State -> stateBlock(this)
+ else -> stateBlock(this as State)
}
}
@@ -39,6 +40,7 @@ sealed class VaniteResult {
is State.Loaded -> onLoadingState(false)
is Success -> onSuccessResponse(successData)
is FailureResponse -> onFailedResponse(errorData)
+ else -> {}
}
}
}