@ -1,17 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="deploymentTargetDropDown">
|
||||
<targetSelectedWithDropDown>
|
||||
<Target>
|
||||
<type value="QUICK_BOOT_TARGET" />
|
||||
<deviceKey>
|
||||
<Key>
|
||||
<type value="VIRTUAL_DEVICE_PATH" />
|
||||
<value value="C:\Users\L\.android\avd\Pixel_2_API_30_1.avd" />
|
||||
</Key>
|
||||
</deviceKey>
|
||||
</Target>
|
||||
</targetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2023-05-30T12:45:13.333264200Z" />
|
||||
</component>
|
||||
</project>
|
@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package net.micode.notes;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = false;
|
||||
public static final String APPLICATION_ID = "net.micode.notes";
|
||||
public static final String BUILD_TYPE = "release";
|
||||
public static final int VERSION_CODE = 1;
|
||||
public static final String VERSION_NAME = "0.1";
|
||||
}
|
@ -0,0 +1 @@
|
||||
{}
|
@ -0,0 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../../../../../../桌面/作业/软件工程/release/output-metadata.json
|
@ -0,0 +1,2 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=7.4.2
|
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.9 KiB |
After Width: | Height: | Size: 5.5 KiB |
After Width: | Height: | Size: 4.9 KiB |
After Width: | Height: | Size: 3.8 KiB |
After Width: | Height: | Size: 5.9 KiB |
@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "net.micode.notes",
|
||||
"variantName": "release",
|
||||
"elements": []
|
||||
}
|
@ -0,0 +1,117 @@
|
||||
# This is a configuration file for ProGuard.
|
||||
# http://proguard.sourceforge.net/index.html#manual/usage.html
|
||||
#
|
||||
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
|
||||
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
|
||||
# will be ignored by new version of the Android plugin for Gradle.
|
||||
|
||||
# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file
|
||||
# instead of this one, which turns off the optimization flags.
|
||||
# Adding optimization introduces certain risks, since for example not all optimizations performed by
|
||||
# ProGuard works on all versions of Dalvik. The following flags turn off various optimizations
|
||||
# known to have issues, but the list may not be complete or up to date. (The "arithmetic"
|
||||
# optimization can be used if you are only targeting Android 2.0 or later.) Make sure you test
|
||||
# thoroughly if you go this route.
|
||||
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
|
||||
-optimizationpasses 5
|
||||
-allowaccessmodification
|
||||
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-verbose
|
||||
|
||||
# Preserve some attributes that may be required for reflection.
|
||||
-keepattributes AnnotationDefault,
|
||||
EnclosingMethod,
|
||||
InnerClasses,
|
||||
RuntimeVisibleAnnotations,
|
||||
RuntimeVisibleParameterAnnotations,
|
||||
RuntimeVisibleTypeAnnotations,
|
||||
Signature
|
||||
|
||||
-keep public class com.google.vending.licensing.ILicensingService
|
||||
-keep public class com.android.vending.licensing.ILicensingService
|
||||
-keep public class com.google.android.vending.licensing.ILicensingService
|
||||
-dontnote com.android.vending.licensing.ILicensingService
|
||||
-dontnote com.google.vending.licensing.ILicensingService
|
||||
-dontnote com.google.android.vending.licensing.ILicensingService
|
||||
|
||||
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
||||
-keepclasseswithmembernames,includedescriptorclasses class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
# Keep setters in Views so that animations can still work.
|
||||
-keepclassmembers public class * extends android.view.View {
|
||||
void set*(***);
|
||||
*** get*();
|
||||
}
|
||||
|
||||
# We want to keep methods in Activity that could be used in the XML attribute onClick.
|
||||
-keepclassmembers class * extends android.app.Activity {
|
||||
public void *(android.view.View);
|
||||
}
|
||||
|
||||
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
||||
-keepclassmembers enum * {
|
||||
public static **[] values();
|
||||
public static ** valueOf(java.lang.String);
|
||||
}
|
||||
|
||||
-keepclassmembers class * implements android.os.Parcelable {
|
||||
public static final ** CREATOR;
|
||||
}
|
||||
|
||||
# Preserve annotated Javascript interface methods.
|
||||
-keepclassmembers class * {
|
||||
@android.webkit.JavascriptInterface <methods>;
|
||||
}
|
||||
|
||||
# The support libraries contains references to newer platform versions.
|
||||
# Don't warn about those in case this app is linking against an older
|
||||
# platform version. We know about them, and they are safe.
|
||||
-dontnote android.support.**
|
||||
-dontnote androidx.**
|
||||
-dontwarn android.support.**
|
||||
-dontwarn androidx.**
|
||||
|
||||
# This class is deprecated, but remains for backward compatibility.
|
||||
-dontwarn android.util.FloatMath
|
||||
|
||||
# Understand the @Keep support annotation.
|
||||
-keep class android.support.annotation.Keep
|
||||
-keep class androidx.annotation.Keep
|
||||
|
||||
-keep @android.support.annotation.Keep class * {*;}
|
||||
-keep @androidx.annotation.Keep class * {*;}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
|
||||
-dontnote org.apache.http.**
|
||||
-dontnote android.net.http.**
|
||||
|
||||
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
|
||||
-dontnote java.lang.invoke.**
|
@ -0,0 +1,116 @@
|
||||
# This is a configuration file for ProGuard.
|
||||
# http://proguard.sourceforge.net/index.html#manual/usage.html
|
||||
#
|
||||
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
|
||||
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
|
||||
# will be ignored by new version of the Android plugin for Gradle.
|
||||
|
||||
# Optimization is turned off by default. Dex does not like code run
|
||||
# through the ProGuard optimize steps (and performs some
|
||||
# of these optimizations on its own).
|
||||
# Note that if you want to enable optimization, you cannot just
|
||||
# include optimization flags in your own project configuration file;
|
||||
# instead you will need to point to the
|
||||
# "proguard-android-optimize.txt" file instead of this one from your
|
||||
# project.properties file.
|
||||
-dontoptimize
|
||||
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-verbose
|
||||
|
||||
# Preserve some attributes that may be required for reflection.
|
||||
-keepattributes AnnotationDefault,
|
||||
EnclosingMethod,
|
||||
InnerClasses,
|
||||
RuntimeVisibleAnnotations,
|
||||
RuntimeVisibleParameterAnnotations,
|
||||
RuntimeVisibleTypeAnnotations,
|
||||
Signature
|
||||
|
||||
-keep public class com.google.vending.licensing.ILicensingService
|
||||
-keep public class com.android.vending.licensing.ILicensingService
|
||||
-keep public class com.google.android.vending.licensing.ILicensingService
|
||||
-dontnote com.android.vending.licensing.ILicensingService
|
||||
-dontnote com.google.vending.licensing.ILicensingService
|
||||
-dontnote com.google.android.vending.licensing.ILicensingService
|
||||
|
||||
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
||||
-keepclasseswithmembernames,includedescriptorclasses class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
# Keep setters in Views so that animations can still work.
|
||||
-keepclassmembers public class * extends android.view.View {
|
||||
void set*(***);
|
||||
*** get*();
|
||||
}
|
||||
|
||||
# We want to keep methods in Activity that could be used in the XML attribute onClick.
|
||||
-keepclassmembers class * extends android.app.Activity {
|
||||
public void *(android.view.View);
|
||||
}
|
||||
|
||||
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
||||
-keepclassmembers enum * {
|
||||
public static **[] values();
|
||||
public static ** valueOf(java.lang.String);
|
||||
}
|
||||
|
||||
-keepclassmembers class * implements android.os.Parcelable {
|
||||
public static final ** CREATOR;
|
||||
}
|
||||
|
||||
# Preserve annotated Javascript interface methods.
|
||||
-keepclassmembers class * {
|
||||
@android.webkit.JavascriptInterface <methods>;
|
||||
}
|
||||
|
||||
# The support libraries contains references to newer platform versions.
|
||||
# Don't warn about those in case this app is linking against an older
|
||||
# platform version. We know about them, and they are safe.
|
||||
-dontnote android.support.**
|
||||
-dontnote androidx.**
|
||||
-dontwarn android.support.**
|
||||
-dontwarn androidx.**
|
||||
|
||||
# This class is deprecated, but remains for backward compatibility.
|
||||
-dontwarn android.util.FloatMath
|
||||
|
||||
# Understand the @Keep support annotation.
|
||||
-keep class android.support.annotation.Keep
|
||||
-keep class androidx.annotation.Keep
|
||||
|
||||
-keep @android.support.annotation.Keep class * {*;}
|
||||
-keep @androidx.annotation.Keep class * {*;}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
|
||||
-dontnote org.apache.http.**
|
||||
-dontnote android.net.http.**
|
||||
|
||||
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
|
||||
-dontnote java.lang.invoke.**
|
@ -0,0 +1,117 @@
|
||||
# This is a configuration file for ProGuard.
|
||||
# http://proguard.sourceforge.net/index.html#manual/usage.html
|
||||
#
|
||||
# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with
|
||||
# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and
|
||||
# will be ignored by new version of the Android plugin for Gradle.
|
||||
|
||||
# Optimizations can be turned on and off in the 'postProcessing' DSL block.
|
||||
# The configuration below is applied if optimizations are enabled.
|
||||
# Adding optimization introduces certain risks, since for example not all optimizations performed by
|
||||
# ProGuard works on all versions of Dalvik. The following flags turn off various optimizations
|
||||
# known to have issues, but the list may not be complete or up to date. (The "arithmetic"
|
||||
# optimization can be used if you are only targeting Android 2.0 or later.) Make sure you test
|
||||
# thoroughly if you go this route.
|
||||
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
|
||||
-optimizationpasses 5
|
||||
-allowaccessmodification
|
||||
|
||||
-dontusemixedcaseclassnames
|
||||
-dontskipnonpubliclibraryclasses
|
||||
-verbose
|
||||
|
||||
# Preserve some attributes that may be required for reflection.
|
||||
-keepattributes AnnotationDefault,
|
||||
EnclosingMethod,
|
||||
InnerClasses,
|
||||
RuntimeVisibleAnnotations,
|
||||
RuntimeVisibleParameterAnnotations,
|
||||
RuntimeVisibleTypeAnnotations,
|
||||
Signature
|
||||
|
||||
-keep public class com.google.vending.licensing.ILicensingService
|
||||
-keep public class com.android.vending.licensing.ILicensingService
|
||||
-keep public class com.google.android.vending.licensing.ILicensingService
|
||||
-dontnote com.android.vending.licensing.ILicensingService
|
||||
-dontnote com.google.vending.licensing.ILicensingService
|
||||
-dontnote com.google.android.vending.licensing.ILicensingService
|
||||
|
||||
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
||||
-keepclasseswithmembernames,includedescriptorclasses class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
# Keep setters in Views so that animations can still work.
|
||||
-keepclassmembers public class * extends android.view.View {
|
||||
void set*(***);
|
||||
*** get*();
|
||||
}
|
||||
|
||||
# We want to keep methods in Activity that could be used in the XML attribute onClick.
|
||||
-keepclassmembers class * extends android.app.Activity {
|
||||
public void *(android.view.View);
|
||||
}
|
||||
|
||||
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
|
||||
-keepclassmembers enum * {
|
||||
public static **[] values();
|
||||
public static ** valueOf(java.lang.String);
|
||||
}
|
||||
|
||||
-keepclassmembers class * implements android.os.Parcelable {
|
||||
public static final ** CREATOR;
|
||||
}
|
||||
|
||||
# Preserve annotated Javascript interface methods.
|
||||
-keepclassmembers class * {
|
||||
@android.webkit.JavascriptInterface <methods>;
|
||||
}
|
||||
|
||||
# The support libraries contains references to newer platform versions.
|
||||
# Don't warn about those in case this app is linking against an older
|
||||
# platform version. We know about them, and they are safe.
|
||||
-dontnote android.support.**
|
||||
-dontnote androidx.**
|
||||
-dontwarn android.support.**
|
||||
-dontwarn androidx.**
|
||||
|
||||
# This class is deprecated, but remains for backward compatibility.
|
||||
-dontwarn android.util.FloatMath
|
||||
|
||||
# Understand the @Keep support annotation.
|
||||
-keep class android.support.annotation.Keep
|
||||
-keep class androidx.annotation.Keep
|
||||
|
||||
-keep @android.support.annotation.Keep class * {*;}
|
||||
-keep @androidx.annotation.Keep class * {*;}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <methods>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <fields>;
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@android.support.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
-keepclasseswithmembers class * {
|
||||
@androidx.annotation.Keep <init>(...);
|
||||
}
|
||||
|
||||
# These classes are duplicated between android.jar and org.apache.http.legacy.jar.
|
||||
-dontnote org.apache.http.**
|
||||
-dontnote android.net.http.**
|
||||
|
||||
# These classes are duplicated between android.jar and core-lambda-stubs.jar.
|
||||
-dontnote java.lang.invoke.**
|
@ -0,0 +1 @@
|
||||
4
|
@ -0,0 +1,19 @@
|
||||
<lint-module
|
||||
format="1"
|
||||
dir="D:\Myprogramfile\androidstudio\minote2\app"
|
||||
name=":app"
|
||||
type="APP"
|
||||
maven="minote2:app:"
|
||||
gradle="7.4.2"
|
||||
buildFolder="build"
|
||||
bootClassPath="D:\exe_Data\Android_Studio\sdk\platforms\android-33\android.jar;D:\exe_Data\Android_Studio\sdk\platforms\android-33\optional\org.apache.http.legacy.jar;D:\exe_Data\Android_Studio\sdk\build-tools\33.0.2\core-lambda-stubs.jar"
|
||||
javaSourceLevel="1.8"
|
||||
compileTarget="android-33"
|
||||
neverShrinking="true">
|
||||
<lintOptions
|
||||
abortOnError="true"
|
||||
absolutePaths="true"
|
||||
checkReleaseBuilds="true"
|
||||
explainIssues="true"/>
|
||||
<variant name="release"/>
|
||||
</lint-module>
|
@ -0,0 +1,50 @@
|
||||
<dependencies>
|
||||
<compile
|
||||
roots="androidx.core:core:1.1.0@aar,androidx.lifecycle:lifecycle-runtime:2.0.0@aar,androidx.lifecycle:lifecycle-common:2.0.0@jar,androidx.arch.core:core-common:2.0.0@jar,androidx.versionedparcelable:versionedparcelable:1.1.0@aar,androidx.collection:collection:1.0.0@jar,androidx.annotation:annotation:1.1.0@jar">
|
||||
<dependency
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
simpleName="androidx.core:core"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
simpleName="androidx.lifecycle:lifecycle-runtime"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
simpleName="androidx.lifecycle:lifecycle-common"/>
|
||||
<dependency
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
simpleName="androidx.arch.core:core-common"/>
|
||||
<dependency
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
simpleName="androidx.versionedparcelable:versionedparcelable"/>
|
||||
<dependency
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
simpleName="androidx.collection:collection"/>
|
||||
<dependency
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
simpleName="androidx.annotation:annotation"/>
|
||||
</compile>
|
||||
<package
|
||||
roots="androidx.core:core:1.1.0@aar,androidx.lifecycle:lifecycle-runtime:2.0.0@aar,androidx.lifecycle:lifecycle-common:2.0.0@jar,androidx.arch.core:core-common:2.0.0@jar,androidx.versionedparcelable:versionedparcelable:1.1.0@aar,androidx.collection:collection:1.0.0@jar,androidx.annotation:annotation:1.1.0@jar">
|
||||
<dependency
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
simpleName="androidx.core:core"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
simpleName="androidx.lifecycle:lifecycle-runtime"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
simpleName="androidx.lifecycle:lifecycle-common"/>
|
||||
<dependency
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
simpleName="androidx.arch.core:core-common"/>
|
||||
<dependency
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
simpleName="androidx.versionedparcelable:versionedparcelable"/>
|
||||
<dependency
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
simpleName="androidx.collection:collection"/>
|
||||
<dependency
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
simpleName="androidx.annotation:annotation"/>
|
||||
</package>
|
||||
</dependencies>
|
@ -0,0 +1,57 @@
|
||||
<libraries>
|
||||
<library
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\97881b8a00da9237e4f6388aa0680fa8\transformed\core-1.1.0\jars\classes.jar"
|
||||
resolved="androidx.core:core:1.1.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\97881b8a00da9237e4f6388aa0680fa8\transformed\core-1.1.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\78d878d69c727091c407dfc515c9dcc6\transformed\lifecycle-runtime-2.0.0\jars\classes.jar"
|
||||
resolved="androidx.lifecycle:lifecycle-runtime:2.0.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\78d878d69c727091c407dfc515c9dcc6\transformed\lifecycle-runtime-2.0.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.lifecycle\lifecycle-common\2.0.0\e070ffae07452331bc5684734fce6831d531785c\lifecycle-common-2.0.0.jar"
|
||||
resolved="androidx.lifecycle:lifecycle-common:2.0.0"/>
|
||||
<library
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.arch.core\core-common\2.0.0\bb21b9a11761451b51624ac428d1f1bb5deeac38\core-common-2.0.0.jar"
|
||||
resolved="androidx.arch.core:core-common:2.0.0"/>
|
||||
<library
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\9b0abf3aabf5fa180ae606d692d29462\transformed\versionedparcelable-1.1.0\jars\classes.jar"
|
||||
resolved="androidx.versionedparcelable:versionedparcelable:1.1.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\9b0abf3aabf5fa180ae606d692d29462\transformed\versionedparcelable-1.1.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.collection\collection\1.0.0\42858b26cafdaa69b6149f45dfc2894007bc2c7a\collection-1.0.0.jar"
|
||||
resolved="androidx.collection:collection:1.0.0"/>
|
||||
<library
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.annotation\annotation\1.1.0\e3a6fb2f40e3a3842e6b7472628ba4ce416ea4c8\annotation-1.1.0.jar"
|
||||
resolved="androidx.annotation:annotation:1.1.0"/>
|
||||
</libraries>
|
@ -0,0 +1,34 @@
|
||||
<variant
|
||||
name="release"
|
||||
package="net.micode.notes"
|
||||
minSdkVersion="14"
|
||||
targetSdkVersion="14"
|
||||
mergedManifest="build\intermediates\merged_manifest\release\AndroidManifest.xml"
|
||||
proguardFiles="build\intermediates\default_proguard_files\global\proguard-android.txt-7.4.2;proguard-rules.txt"
|
||||
partialResultsDir="build\intermediates\lint_vital_partial_results\release\out"
|
||||
desugaredMethodsFiles="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\7b6d0ea08c0302ddbfab745a7ac895d7\transformed\D8BackportedDesugaredMethods.txt">
|
||||
<buildFeatures
|
||||
namespacing="REQUIRED"/>
|
||||
<sourceProviders>
|
||||
<sourceProvider
|
||||
manifest="src\main\AndroidManifest.xml"
|
||||
javaDirectories="src\main\java;src\main\kotlin"
|
||||
resDirectories="src\main\res"
|
||||
assetsDirectories="src\main\assets"/>
|
||||
<sourceProvider
|
||||
manifest="src\release\AndroidManifest.xml"
|
||||
javaDirectories="src\release\java;src\release\kotlin"
|
||||
resDirectories="src\release\res"
|
||||
assetsDirectories="src\release\assets"/>
|
||||
</sourceProviders>
|
||||
<testSourceProviders>
|
||||
</testSourceProviders>
|
||||
<testFixturesSourceProviders>
|
||||
</testFixturesSourceProviders>
|
||||
<mainArtifact
|
||||
classOutputs="build\intermediates\javac\release\classes;build\intermediates\compile_and_runtime_not_namespaced_r_class_jar\release\R.jar"
|
||||
applicationId="net.micode.notes"
|
||||
generatedSourceFolders="build\generated\ap_generated_sources\release\out;build\generated\aidl_source_output_dir\release\out;build\generated\source\buildConfig\release;build\generated\renderscript_source_output_dir\release\out"
|
||||
generatedResourceFolders="build\generated\res\rs\release;build\generated\res\resValues\release">
|
||||
</mainArtifact>
|
||||
</variant>
|
@ -0,0 +1,19 @@
|
||||
<lint-module
|
||||
format="1"
|
||||
dir="D:\Myprogramfile\androidstudio\minote2\app"
|
||||
name=":app"
|
||||
type="APP"
|
||||
maven="minote2:app:"
|
||||
gradle="7.4.2"
|
||||
buildFolder="build"
|
||||
bootClassPath="D:\exe_Data\Android_Studio\sdk\platforms\android-33\android.jar;D:\exe_Data\Android_Studio\sdk\platforms\android-33\optional\org.apache.http.legacy.jar;D:\exe_Data\Android_Studio\sdk\build-tools\33.0.2\core-lambda-stubs.jar"
|
||||
javaSourceLevel="1.8"
|
||||
compileTarget="android-33"
|
||||
neverShrinking="true">
|
||||
<lintOptions
|
||||
abortOnError="true"
|
||||
absolutePaths="true"
|
||||
checkReleaseBuilds="true"
|
||||
explainIssues="true"/>
|
||||
<variant name="release"/>
|
||||
</lint-module>
|
@ -0,0 +1,50 @@
|
||||
<dependencies>
|
||||
<compile
|
||||
roots="androidx.core:core:1.1.0@aar,androidx.lifecycle:lifecycle-runtime:2.0.0@aar,androidx.lifecycle:lifecycle-common:2.0.0@jar,androidx.arch.core:core-common:2.0.0@jar,androidx.versionedparcelable:versionedparcelable:1.1.0@aar,androidx.collection:collection:1.0.0@jar,androidx.annotation:annotation:1.1.0@jar">
|
||||
<dependency
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
simpleName="androidx.core:core"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
simpleName="androidx.lifecycle:lifecycle-runtime"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
simpleName="androidx.lifecycle:lifecycle-common"/>
|
||||
<dependency
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
simpleName="androidx.arch.core:core-common"/>
|
||||
<dependency
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
simpleName="androidx.versionedparcelable:versionedparcelable"/>
|
||||
<dependency
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
simpleName="androidx.collection:collection"/>
|
||||
<dependency
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
simpleName="androidx.annotation:annotation"/>
|
||||
</compile>
|
||||
<package
|
||||
roots="androidx.core:core:1.1.0@aar,androidx.lifecycle:lifecycle-runtime:2.0.0@aar,androidx.lifecycle:lifecycle-common:2.0.0@jar,androidx.arch.core:core-common:2.0.0@jar,androidx.versionedparcelable:versionedparcelable:1.1.0@aar,androidx.collection:collection:1.0.0@jar,androidx.annotation:annotation:1.1.0@jar">
|
||||
<dependency
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
simpleName="androidx.core:core"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
simpleName="androidx.lifecycle:lifecycle-runtime"/>
|
||||
<dependency
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
simpleName="androidx.lifecycle:lifecycle-common"/>
|
||||
<dependency
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
simpleName="androidx.arch.core:core-common"/>
|
||||
<dependency
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
simpleName="androidx.versionedparcelable:versionedparcelable"/>
|
||||
<dependency
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
simpleName="androidx.collection:collection"/>
|
||||
<dependency
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
simpleName="androidx.annotation:annotation"/>
|
||||
</package>
|
||||
</dependencies>
|
@ -0,0 +1,57 @@
|
||||
<libraries>
|
||||
<library
|
||||
name="androidx.core:core:1.1.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\97881b8a00da9237e4f6388aa0680fa8\transformed\core-1.1.0\jars\classes.jar"
|
||||
resolved="androidx.core:core:1.1.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\97881b8a00da9237e4f6388aa0680fa8\transformed\core-1.1.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.lifecycle:lifecycle-runtime:2.0.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\78d878d69c727091c407dfc515c9dcc6\transformed\lifecycle-runtime-2.0.0\jars\classes.jar"
|
||||
resolved="androidx.lifecycle:lifecycle-runtime:2.0.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\78d878d69c727091c407dfc515c9dcc6\transformed\lifecycle-runtime-2.0.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.lifecycle:lifecycle-common:2.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.lifecycle\lifecycle-common\2.0.0\e070ffae07452331bc5684734fce6831d531785c\lifecycle-common-2.0.0.jar"
|
||||
resolved="androidx.lifecycle:lifecycle-common:2.0.0"/>
|
||||
<library
|
||||
name="androidx.arch.core:core-common:2.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.arch.core\core-common\2.0.0\bb21b9a11761451b51624ac428d1f1bb5deeac38\core-common-2.0.0.jar"
|
||||
resolved="androidx.arch.core:core-common:2.0.0"/>
|
||||
<library
|
||||
name="androidx.versionedparcelable:versionedparcelable:1.1.0@aar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\9b0abf3aabf5fa180ae606d692d29462\transformed\versionedparcelable-1.1.0\jars\classes.jar"
|
||||
resolved="androidx.versionedparcelable:versionedparcelable:1.1.0"
|
||||
folder="D:\ProgramTools\gradle\gradle-8.0.2\caches\transforms-3\9b0abf3aabf5fa180ae606d692d29462\transformed\versionedparcelable-1.1.0"
|
||||
manifest="AndroidManifest.xml"
|
||||
resFolder="res"
|
||||
assetsFolder="assets"
|
||||
lintJar="lint.jar"
|
||||
publicResources="public.txt"
|
||||
symbolFile="R.txt"
|
||||
externalAnnotations="annotations.zip"
|
||||
proguardRules="proguard.txt"/>
|
||||
<library
|
||||
name="androidx.collection:collection:1.0.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.collection\collection\1.0.0\42858b26cafdaa69b6149f45dfc2894007bc2c7a\collection-1.0.0.jar"
|
||||
resolved="androidx.collection:collection:1.0.0"/>
|
||||
<library
|
||||
name="androidx.annotation:annotation:1.1.0@jar"
|
||||
jars="D:\ProgramTools\gradle\gradle-8.0.2\caches\modules-2\files-2.1\androidx.annotation\annotation\1.1.0\e3a6fb2f40e3a3842e6b7472628ba4ce416ea4c8\annotation-1.1.0.jar"
|
||||
resolved="androidx.annotation:annotation:1.1.0"/>
|
||||
</libraries>
|
@ -0,0 +1,34 @@
|
||||
<variant
|
||||
name="release"
|
||||
package="net.micode.notes"
|
||||
minSdkVersion="14"
|
||||
targetSdkVersion="14"
|
||||
mergedManifest="build\intermediates\merged_manifest\release\AndroidManifest.xml"
|
||||
manifestMergeReport="build\outputs\logs\manifest-merger-release-report.txt"
|
||||
proguardFiles="build\intermediates\default_proguard_files\global\proguard-android.txt-7.4.2;proguard-rules.txt"
|
||||
partialResultsDir="build\intermediates\lint_vital_partial_results\release\out">
|
||||
<buildFeatures
|
||||
namespacing="REQUIRED"/>
|
||||
<sourceProviders>
|
||||
<sourceProvider
|
||||
manifest="src\main\AndroidManifest.xml"
|
||||
javaDirectories="src\main\java;src\main\kotlin"
|
||||
resDirectories="src\main\res"
|
||||
assetsDirectories="src\main\assets"/>
|
||||
<sourceProvider
|
||||
manifest="src\release\AndroidManifest.xml"
|
||||
javaDirectories="src\release\java;src\release\kotlin"
|
||||
resDirectories="src\release\res"
|
||||
assetsDirectories="src\release\assets"/>
|
||||
</sourceProviders>
|
||||
<testSourceProviders>
|
||||
</testSourceProviders>
|
||||
<testFixturesSourceProviders>
|
||||
</testFixturesSourceProviders>
|
||||
<mainArtifact
|
||||
classOutputs="build\intermediates\javac\release\classes;build\intermediates\compile_and_runtime_not_namespaced_r_class_jar\release\R.jar"
|
||||
applicationId="net.micode.notes"
|
||||
generatedSourceFolders="build\generated\ap_generated_sources\release\out;build\generated\aidl_source_output_dir\release\out;build\generated\source\buildConfig\release;build\generated\renderscript_source_output_dir\release\out"
|
||||
generatedResourceFolders="build\generated\res\rs\release;build\generated\res\resValues\release">
|
||||
</mainArtifact>
|
||||
</variant>
|
@ -1,2 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets"><file name="font/fangzhengfangsongjianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengfangsongjianti.ttf"/><file name="font/fangzhengheitijianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengheitijianti.ttf"/><file name="font/fangzhengxiaobiaosong.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengxiaobiaosong.ttf"/><file name="font/huawenlishu.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenlishu.ttf"/><file name="font/huawenxingkai.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenxingkai.ttf"/><file name="font/simhei.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\simhei.ttf"/><file name="font/siyuanheiti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuanheiti.otf"/><file name="font/siyuansongti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuansongti.otf"/></source><source path="D:\Myprogramfile\androidstudio\minote2\app\build\intermediates\shader_assets\debug\out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\debug\assets"/></dataSet></merger>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets"><file name="font/fangzhengfangsongjianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengfangsongjianti.ttf"/><file name="font/fangzhengheitijianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengheitijianti.ttf"/><file name="font/fangzhengxiaobiaosong.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengxiaobiaosong.ttf"/><file name="font/huawenlishu.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenlishu.ttf"/><file name="font/huawenxingkai.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenxingkai.ttf"/><file name="font/simhei.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\simhei.ttf"/><file name="font/siyuanheiti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuanheiti.otf"/><file name="font/siyuansongti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuansongti.otf"/><file name="backgrounds/edit_title_green.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_green.9.png"/><file name="backgrounds/edit_title_red.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_red.9.png"/><file name="backgrounds/edit_title_white.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_white.9.png"/><file name="backgrounds/edit_title_yellow.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_yellow.9.png"/></source><source path="D:\Myprogramfile\androidstudio\minote2\app\build\intermediates\shader_assets\debug\out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\debug\assets"/></dataSet></merger>
|
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets"><file name="backgrounds/edit_title_green.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_green.9.png"/><file name="backgrounds/edit_title_red.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_red.9.png"/><file name="backgrounds/edit_title_white.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_white.9.png"/><file name="backgrounds/edit_title_yellow.9.png" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\backgrounds\edit_title_yellow.9.png"/><file name="font/fangzhengfangsongjianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengfangsongjianti.ttf"/><file name="font/fangzhengheitijianti.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengheitijianti.ttf"/><file name="font/fangzhengxiaobiaosong.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\fangzhengxiaobiaosong.ttf"/><file name="font/huawenlishu.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenlishu.ttf"/><file name="font/huawenxingkai.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\huawenxingkai.ttf"/><file name="font/simhei.ttf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\simhei.ttf"/><file name="font/siyuanheiti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuanheiti.otf"/><file name="font/siyuansongti.otf" path="D:\Myprogramfile\androidstudio\minote2\app\src\main\assets\font\siyuansongti.otf"/></source><source path="D:\Myprogramfile\androidstudio\minote2\app\build\intermediates\shader_assets\release\out"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\release\assets"/></dataSet></merger>
|
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\main\jniLibs"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\release\jniLibs"/></dataSet></merger>
|
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\main\shaders"/></dataSet><dataSet config="release" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:<dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="D:\Myprogramfile\androidstudio\minote2\app\src\release\shaders"/></dataSet></merger>
|
@ -1,4 +1,4 @@
|
||||
#Thu Jun 01 15:03:19 CST 2023
|
||||
#Mon Jun 05 09:19:48 CST 2023
|
||||
base.0=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\dex\\debug\\mergeDexDebug\\classes.dex
|
||||
renamed.0=classes.dex
|
||||
path.0=classes.dex
|
||||
|
@ -0,0 +1,4 @@
|
||||
#Mon Jun 05 09:29:19 CST 2023
|
||||
base.0=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\dex\\release\\mergeDexRelease\\classes.dex
|
||||
renamed.0=classes.dex
|
||||
path.0=classes.dex
|
@ -0,0 +1,107 @@
|
||||
#Fri Jun 02 08:54:54 CST 2023
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_4x_yellow.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_4x_yellow.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/note_list_options.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_note_list_options.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_green_middle.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_green_middle.9.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/note_edit.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_note_edit.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_2x_yellow.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_2x_yellow.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_white_down.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_white_down.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_footer_bg.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_footer_bg.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_2x_green.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_2x_green.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/title_alert.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_title_alert.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/icon_app.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_icon_app.png.flat
|
||||
net.micode.notes.app-main-6\:/font/huawenlishu.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_huawenlishu.ttf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_background2.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_background2.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/title_bar_bg.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_title_bar_bg.9.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/settings_header.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_settings_header.xml.flat
|
||||
net.micode.notes.app-main-6\:/xml/searchable.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\xml_searchable.xml.flat
|
||||
net.micode.notes.app-main-6\:/layout/widget_4x.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_widget_4x.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_blue_up.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_blue_up.9.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/note_list.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_note_list.xml.flat
|
||||
net.micode.notes.app-main-6\:/raw/introduction=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\raw_introduction.flat
|
||||
net.micode.notes.app-main-6\:/xml/widget_2x_info.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\xml_widget_2x_info.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_red_up.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_red_up.9.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/folder_list_item.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_folder_list_item.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_title_white.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_title_white.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/font_super.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_font_super.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_blue_down.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_blue_down.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_red_single.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_red_single.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_yellow_single.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_yellow_single.9.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_list_dropdown_menu.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_list_dropdown_menu.xml.flat
|
||||
net.micode.notes.app-main-6\:/xml/file_paths.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\xml_file_paths.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/dropdown_icon.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_dropdown_icon.9.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/note_list_dropdown.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_note_list_dropdown.xml.flat
|
||||
net.micode.notes.app-main-6\:/layout/widget_2x.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_widget_2x.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_background.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_background.png.flat
|
||||
net.micode.notes.app-main-6\:/xml/preferences.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\xml_preferences.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/bg_btn_set_color.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_bg_btn_set_color.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/call_record_folder.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_call_record_folder.xml.flat
|
||||
net.micode.notes.app-main-6\:/font/siyuanheiti.otf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_siyuanheiti.otf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_title_green.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_title_green.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_green.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_green.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_white.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_white.9.png.flat
|
||||
net.micode.notes.app-main-6\:/font/fangzhengfangsongjianti.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_fangzhengfangsongjianti.ttf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_green_down.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_green_down.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/clock.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_clock.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_4x_red.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_4x_red.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/bg_color_btn_mask.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_bg_color_btn_mask.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_4x_white.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_4x_white.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_edit_list_item.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_edit_list_item.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/font_large.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_font_large.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/font_small.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_font_small.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_4x_blue.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_4x_blue.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/add_account_text.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_add_account_text.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/font_size_selector_bg.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_font_size_selector_bg.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/menu_delete.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_menu_delete.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_item.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_item.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_2x_red.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_2x_red.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_2x_white.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_2x_white.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_red_down.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_red_down.9.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_list.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_list.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_yellow.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_yellow.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_title_blue.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_title_blue.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_white_middle.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_white_middle.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_red_middle.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_red_middle.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/search_result.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_search_result.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/call_note_edit.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_call_note_edit.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_blue_single.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_blue_single.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_title_red.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_title_red.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/new_note_pressed.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_new_note_pressed.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_white_up.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_white_up.9.png.flat
|
||||
net.micode.notes.app-main-6\:/font/huawenxingkai.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_huawenxingkai.ttf.flat
|
||||
net.micode.notes.app-main-6\:/layout/account_dialog_title.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_account_dialog_title.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/notification.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_notification.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_green_single.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_green_single.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_blue.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_blue.9.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/dialog_edit_text.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_dialog_edit_text.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_white_single.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_white_single.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_red.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_red.9.png.flat
|
||||
net.micode.notes.app-main-6\:/font/fangzhengheitijianti.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_fangzhengheitijianti.ttf.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_list_footer.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_list_footer.xml.flat
|
||||
net.micode.notes.app-main-6\:/raw-zh-rCN/introduction=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\raw-zh-rCN_introduction.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_yellow_up.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_yellow_up.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_4x_green.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_4x_green.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_folder.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_folder.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_yellow_down.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_yellow_down.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/delete.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_delete.png.flat
|
||||
net.micode.notes.app-main-6\:/color/primary_text_dark.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\color_primary_text_dark.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_green_up.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_green_up.9.png.flat
|
||||
net.micode.notes.app-main-6\:/font/simhei.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_simhei.ttf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/edit_title_yellow.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_edit_title_yellow.9.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/note_edit_color_selector_panel.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_note_edit_color_selector_panel.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/note_edit.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_note_edit.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/font_normal.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_font_normal.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/call_record.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_call_record.png.flat
|
||||
net.micode.notes.app-main-6\:/font/siyuansongti.otf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_siyuansongti.otf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/widget_2x_blue.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_widget_2x_blue.png.flat
|
||||
net.micode.notes.app-main-6\:/menu/sub_folder.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\menu_sub_folder.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/new_note_normal.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_new_note_normal.png.flat
|
||||
net.micode.notes.app-main-6\:/layout/datetime_picker.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\layout_datetime_picker.xml.flat
|
||||
net.micode.notes.app-main-6\:/color/secondary_text_dark.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\color_secondary_text_dark.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/selected.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_selected.png.flat
|
||||
net.micode.notes.app-main-6\:/xml/widget_4x_info.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\xml_widget_4x_info.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable/new_note.xml=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable_new_note.xml.flat
|
||||
net.micode.notes.app-main-6\:/drawable/test.jpg=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable_test.jpg.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/menu_move.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_menu_move.png.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_yellow_middle.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_yellow_middle.9.png.flat
|
||||
net.micode.notes.app-main-6\:/font/fangzhengxiaobiaosong.ttf=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\font_fangzhengxiaobiaosong.ttf.flat
|
||||
net.micode.notes.app-main-6\:/drawable-hdpi/list_blue_middle.9.png=D\:\\Myprogramfile\\androidstudio\\minote2\\app\\build\\intermediates\\merged_res\\release\\drawable-hdpi_list_blue_middle.9.png.flat
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string msgid="8106346172024741305" name="status_bar_notification_info_overflow">"999+"</string>
|
||||
</resources>
|