Compare commits

..

No commits in common. 'main' and 'ljf_branch' have entirely different histories.

15
.gitignore vendored

@ -1,15 +0,0 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties

@ -1 +0,0 @@
g5kcdnnuqvdn5c3xilcbc4gcdmB»é 7ï ¦Uî]<01>ˆclasses¹=T[ŒÁ rÄWA”§ˆsourcesñƒÂY±LÎéS<><>

@ -1,307 +0,0 @@
package org.gradle.accessors.dm;
import org.gradle.api.NonNullApi;
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
import org.gradle.plugin.use.PluginDependency;
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
import org.gradle.api.artifacts.MutableVersionConstraint;
import org.gradle.api.provider.Provider;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.ProviderFactory;
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
import java.util.Map;
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
import javax.inject.Inject;
/**
* A catalog of dependencies accessible via the {@code libs} extension.
*/
@NonNullApi
public class LibrariesForLibs extends AbstractExternalDependencyFactory {
private final AbstractExternalDependencyFactory owner = this;
private final EspressoLibraryAccessors laccForEspressoLibraryAccessors = new EspressoLibraryAccessors(owner);
private final ExtLibraryAccessors laccForExtLibraryAccessors = new ExtLibraryAccessors(owner);
private final NavigationLibraryAccessors laccForNavigationLibraryAccessors = new NavigationLibraryAccessors(owner);
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
@Inject
public LibrariesForLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
super(config, providers, objects, attributesFactory, capabilityNotationParser);
}
/**
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
* with version reference <b>appcompat</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getAppcompat() {
return create("appcompat");
}
/**
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
* with version reference <b>constraintlayout</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
return create("constraintlayout");
}
/**
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
* with version reference <b>junit</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getJunit() {
return create("junit");
}
/**
* Dependency provider for <b>material</b> with <b>com.google.android.material:material</b> coordinates and
* with version reference <b>material</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getMaterial() {
return create("material");
}
/**
* Group of libraries at <b>espresso</b>
*/
public EspressoLibraryAccessors getEspresso() {
return laccForEspressoLibraryAccessors;
}
/**
* Group of libraries at <b>ext</b>
*/
public ExtLibraryAccessors getExt() {
return laccForExtLibraryAccessors;
}
/**
* Group of libraries at <b>navigation</b>
*/
public NavigationLibraryAccessors getNavigation() {
return laccForNavigationLibraryAccessors;
}
/**
* Group of versions at <b>versions</b>
*/
public VersionAccessors getVersions() {
return vaccForVersionAccessors;
}
/**
* Group of bundles at <b>bundles</b>
*/
public BundleAccessors getBundles() {
return baccForBundleAccessors;
}
/**
* Group of plugins at <b>plugins</b>
*/
public PluginAccessors getPlugins() {
return paccForPluginAccessors;
}
public static class EspressoLibraryAccessors extends SubDependencyFactory {
public EspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
* with version reference <b>espressoCore</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getCore() {
return create("espresso.core");
}
}
public static class ExtLibraryAccessors extends SubDependencyFactory {
public ExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
* with version reference <b>junitVersion</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getJunit() {
return create("ext.junit");
}
}
public static class NavigationLibraryAccessors extends SubDependencyFactory {
public NavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>fragment</b> with <b>androidx.navigation:navigation-fragment</b> coordinates and
* with version reference <b>navigationFragment</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getFragment() {
return create("navigation.fragment");
}
/**
* Dependency provider for <b>ui</b> with <b>androidx.navigation:navigation-ui</b> coordinates and
* with version reference <b>navigationUi</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getUi() {
return create("navigation.ui");
}
}
public static class VersionAccessors extends VersionFactory {
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Version alias <b>agp</b> with value <b>8.8.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAgp() { return getVersion("agp"); }
/**
* Version alias <b>appcompat</b> with value <b>1.7.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
/**
* Version alias <b>constraintlayout</b> with value <b>2.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* Version alias <b>espressoCore</b> with value <b>3.6.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
/**
* Version alias <b>junit</b> with value <b>4.13.2</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunit() { return getVersion("junit"); }
/**
* Version alias <b>junitVersion</b> with value <b>1.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
/**
* Version alias <b>material</b> with value <b>1.12.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getMaterial() { return getVersion("material"); }
/**
* Version alias <b>navigationFragment</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationFragment() { return getVersion("navigationFragment"); }
/**
* Version alias <b>navigationUi</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationUi() { return getVersion("navigationUi"); }
}
public static class BundleAccessors extends BundleFactory {
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
}
public static class PluginAccessors extends PluginFactory {
private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config);
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Group of plugins at <b>plugins.android</b>
*/
public AndroidPluginAccessors getAndroid() {
return paccForAndroidPluginAccessors;
}
}
public static class AndroidPluginAccessors extends PluginFactory {
public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Plugin provider for <b>android.application</b> with plugin id <b>com.android.application</b> and
* with version reference <b>agp</b>
* <p>
* This plugin was declared in catalog libs.versions.toml
*/
public Provider<PluginDependency> getApplication() { return createPlugin("android.application"); }
}
}

@ -1,371 +0,0 @@
package org.gradle.accessors.dm;
import org.gradle.api.NonNullApi;
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
import org.gradle.plugin.use.PluginDependency;
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
import org.gradle.api.artifacts.MutableVersionConstraint;
import org.gradle.api.provider.Provider;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.ProviderFactory;
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
import java.util.Map;
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
import javax.inject.Inject;
/**
* A catalog of dependencies accessible via the {@code libs} extension.
*/
@NonNullApi
public class LibrariesForLibsInPluginsBlock extends AbstractExternalDependencyFactory {
private final AbstractExternalDependencyFactory owner = this;
private final EspressoLibraryAccessors laccForEspressoLibraryAccessors = new EspressoLibraryAccessors(owner);
private final ExtLibraryAccessors laccForExtLibraryAccessors = new ExtLibraryAccessors(owner);
private final NavigationLibraryAccessors laccForNavigationLibraryAccessors = new NavigationLibraryAccessors(owner);
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
@Inject
public LibrariesForLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
super(config, providers, objects, attributesFactory, capabilityNotationParser);
}
/**
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
* with version reference <b>appcompat</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getAppcompat() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("appcompat");
}
/**
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
* with version reference <b>constraintlayout</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("constraintlayout");
}
/**
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
* with version reference <b>junit</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getJunit() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("junit");
}
/**
* Dependency provider for <b>material</b> with <b>com.google.android.material:material</b> coordinates and
* with version reference <b>material</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getMaterial() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("material");
}
/**
* Group of libraries at <b>espresso</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public EspressoLibraryAccessors getEspresso() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForEspressoLibraryAccessors;
}
/**
* Group of libraries at <b>ext</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public ExtLibraryAccessors getExt() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForExtLibraryAccessors;
}
/**
* Group of libraries at <b>navigation</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public NavigationLibraryAccessors getNavigation() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForNavigationLibraryAccessors;
}
/**
* Group of versions at <b>versions</b>
*/
public VersionAccessors getVersions() {
return vaccForVersionAccessors;
}
/**
* Group of bundles at <b>bundles</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public BundleAccessors getBundles() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return baccForBundleAccessors;
}
/**
* Group of plugins at <b>plugins</b>
*/
public PluginAccessors getPlugins() {
return paccForPluginAccessors;
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class EspressoLibraryAccessors extends SubDependencyFactory {
public EspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
* with version reference <b>espressoCore</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getCore() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("espresso.core");
}
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class ExtLibraryAccessors extends SubDependencyFactory {
public ExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
* with version reference <b>junitVersion</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getJunit() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("ext.junit");
}
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class NavigationLibraryAccessors extends SubDependencyFactory {
public NavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>fragment</b> with <b>androidx.navigation:navigation-fragment</b> coordinates and
* with version reference <b>navigationFragment</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getFragment() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("navigation.fragment");
}
/**
* Dependency provider for <b>ui</b> with <b>androidx.navigation:navigation-ui</b> coordinates and
* with version reference <b>navigationUi</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getUi() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("navigation.ui");
}
}
public static class VersionAccessors extends VersionFactory {
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Version alias <b>agp</b> with value <b>8.8.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAgp() { return getVersion("agp"); }
/**
* Version alias <b>appcompat</b> with value <b>1.7.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
/**
* Version alias <b>constraintlayout</b> with value <b>2.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* Version alias <b>espressoCore</b> with value <b>3.6.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
/**
* Version alias <b>junit</b> with value <b>4.13.2</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunit() { return getVersion("junit"); }
/**
* Version alias <b>junitVersion</b> with value <b>1.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
/**
* Version alias <b>material</b> with value <b>1.12.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getMaterial() { return getVersion("material"); }
/**
* Version alias <b>navigationFragment</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationFragment() { return getVersion("navigationFragment"); }
/**
* Version alias <b>navigationUi</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationUi() { return getVersion("navigationUi"); }
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class BundleAccessors extends BundleFactory {
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
}
public static class PluginAccessors extends PluginFactory {
private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config);
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Group of plugins at <b>plugins.android</b>
*/
public AndroidPluginAccessors getAndroid() {
return paccForAndroidPluginAccessors;
}
}
public static class AndroidPluginAccessors extends PluginFactory {
public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Plugin provider for <b>android.application</b> with plugin id <b>com.android.application</b> and
* with version reference <b>agp</b>
* <p>
* This plugin was declared in catalog libs.versions.toml
*/
public Provider<PluginDependency> getApplication() { return createPlugin("android.application"); }
}
}

@ -1,2 +0,0 @@
#Thu May 08 14:03:09 CST 2025
gradle.version=8.11.1

@ -1,2 +0,0 @@
#Thu May 08 13:30:50 CST 2025
java.home=C\:\\Program Files\\Android\\Android Studio\\jbr

Binary file not shown.

3
.idea/.gitignore vendored

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

@ -1 +0,0 @@
Hsy_version

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AndroidProjectSystem">
<option name="providerId" value="com.android.tools.idea.GradleProjectSystem" />
</component>
</project>

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

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="deploymentTargetSelector">
<selectionStates>
<SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" />
</SelectionState>
</selectionStates>
</component>
</project>

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectMigrations">
<option name="MigrateToGradleLocalJavaHome">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
</component>
</project>

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="ProjectInspectionProfilesVisibleTreeState">
<entry key="Project Default">
<profile-state>
<expanded-state>
<State>
<id>Android Lint: Correctness</id>
</State>
</expanded-state>
</profile-state>
</entry>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="jbr-21" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

@ -1,17 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="com.intellij.execution.junit.AbstractAllInDirectoryConfigurationProducer" />
<option value="com.intellij.execution.junit.AllInPackageConfigurationProducer" />
<option value="com.intellij.execution.junit.PatternConfigurationProducer" />
<option value="com.intellij.execution.junit.TestInClassConfigurationProducer" />
<option value="com.intellij.execution.junit.UniqueIdConfigurationProducer" />
<option value="com.intellij.execution.junit.testDiscovery.JUnitTestDiscoveryConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinJUnitRunConfigurationProducer" />
<option value="org.jetbrains.kotlin.idea.junit.KotlinPatternConfigurationProducer" />
</set>
</option>
</component>
</project>

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

@ -1,136 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="NONE" />
</component>
<component name="ChangeListManager">
<list default="true" id="d7e56712-22f4-40bc-a0f3-1e5675f6adad" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/gradle.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/gradle.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/vcs.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cxy-readme.md" beforeDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ClangdSettings">
<option name="formatViaClangd" value="false" />
</component>
<component name="ExecutionTargetManager" SELECTED_TARGET="device_and_snapshot_combo_box_target[DeviceId(pluginId=LocalEmulator, isTemplate=false, identifier=path=C:\Users\20650\.android\avd\Pixel_8_Pro_API_36.avd)]" />
<component name="ExternalProjectsData">
<projectState path="$PROJECT_DIR$">
<ProjectState />
</projectState>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectColorInfo">{
&quot;associatedIndex&quot;: 3
}</component>
<component name="ProjectId" id="2wnfRYUOet9F7DVVCX2xWzTXJGs" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"Android App.app.executor": "Run",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.cidr.known.project.marker": "true",
"RunOnceActivity.readMode.enableVisualFormatting": "true",
"cf.first.check.clang-format": "false",
"cidr.known.project.marker": "true",
"git-widget-placeholder": "cxy__branch",
"ignore.virus.scanning.warn.message": "true",
"kotlin-language-version-configured": "true",
"last_opened_file_path": "E:/temp"
}
}]]></component>
<component name="RunManager">
<configuration name="app" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="My_Application.app" />
<option name="ANDROID_RUN_CONFIGURATION_SCHEMA_VERSION" value="1" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="false" />
<option name="ALLOW_ASSUME_VERIFIED" value="false" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
<option name="MODE" value="default_activity" />
<option name="RESTORE_ENABLED" value="false" />
<option name="RESTORE_FILE" value="" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
<option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
<option name="DEBUGGER_TYPE" value="Auto" />
<Auto>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Auto>
<Hybrid>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Hybrid>
<Java>
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Java>
<Native>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Native>
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY" value="" />
<option name="ACTIVITY_CLASS" value="" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="d7e56712-22f4-40bc-a0f3-1e5675f6adad" name="Changes" comment="" />
<created>1746682250573</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1746682250573</updated>
</task>
<servers />
</component>
</project>

@ -1,558 +0,0 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
=========================================================================
This project includes Public Suffix List copied from
<https://publicsuffix.org/list/effective_tld_names.dat>
licensed under the terms of the Mozilla Public License, v. 2.0
Full license text: <http://mozilla.org/MPL/2.0/>
Mozilla Public License Version 2.0
==================================
1. Definitions
--------------
1.1. "Contributor"
means each individual or legal entity that creates, contributes to
the creation of, or owns Covered Software.
1.2. "Contributor Version"
means the combination of the Contributions of others (if any) used
by a Contributor and that particular Contributor's Contribution.
1.3. "Contribution"
means Covered Software of a particular Contributor.
1.4. "Covered Software"
means Source Code Form to which the initial Contributor has attached
the notice in Exhibit A, the Executable Form of such Source Code
Form, and Modifications of such Source Code Form, in each case
including portions thereof.
1.5. "Incompatible With Secondary Licenses"
means
(a) that the initial Contributor has attached the notice described
in Exhibit B to the Covered Software; or
(b) that the Covered Software was made available under the terms of
version 1.1 or earlier of the License, but not also under the
terms of a Secondary License.
1.6. "Executable Form"
means any form of the work other than Source Code Form.
1.7. "Larger Work"
means a work that combines Covered Software with other material, in
a separate file or files, that is not Covered Software.
1.8. "License"
means this document.
1.9. "Licensable"
means having the right to grant, to the maximum extent possible,
whether at the time of the initial grant or subsequently, any and
all of the rights conveyed by this License.
1.10. "Modifications"
means any of the following:
(a) any file in Source Code Form that results from an addition to,
deletion from, or modification of the contents of Covered
Software; or
(b) any new file in Source Code Form that contains any Covered
Software.
1.11. "Patent Claims" of a Contributor
means any patent claim(s), including without limitation, method,
process, and apparatus claims, in any patent Licensable by such
Contributor that would be infringed, but for the grant of the
License, by the making, using, selling, offering for sale, having
made, import, or transfer of either its Contributions or its
Contributor Version.
1.12. "Secondary License"
means either the GNU General Public License, Version 2.0, the GNU
Lesser General Public License, Version 2.1, the GNU Affero General
Public License, Version 3.0, or any later versions of those
licenses.
1.13. "Source Code Form"
means the form of the work preferred for making modifications.
1.14. "You" (or "Your")
means an individual or a legal entity exercising rights under this
License. For legal entities, "You" includes any entity that
controls, is controlled by, or is under common control with You. For
purposes of this definition, "control" means (a) the power, direct
or indirect, to cause the direction or management of such entity,
whether by contract or otherwise, or (b) ownership of more than
fifty percent (50%) of the outstanding shares or beneficial
ownership of such entity.
2. License Grants and Conditions
--------------------------------
2.1. Grants
Each Contributor hereby grants You a world-wide, royalty-free,
non-exclusive license:
(a) under intellectual property rights (other than patent or trademark)
Licensable by such Contributor to use, reproduce, make available,
modify, display, perform, distribute, and otherwise exploit its
Contributions, either on an unmodified basis, with Modifications, or
as part of a Larger Work; and
(b) under Patent Claims of such Contributor to make, use, sell, offer
for sale, have made, import, and otherwise transfer either its
Contributions or its Contributor Version.
2.2. Effective Date
The licenses granted in Section 2.1 with respect to any Contribution
become effective for each Contribution on the date the Contributor first
distributes such Contribution.
2.3. Limitations on Grant Scope
The licenses granted in this Section 2 are the only rights granted under
this License. No additional rights or licenses will be implied from the
distribution or licensing of Covered Software under this License.
Notwithstanding Section 2.1(b) above, no patent license is granted by a
Contributor:
(a) for any code that a Contributor has removed from Covered Software;
or
(b) for infringements caused by: (i) Your and any other third party's
modifications of Covered Software, or (ii) the combination of its
Contributions with other software (except as part of its Contributor
Version); or
(c) under Patent Claims infringed by Covered Software in the absence of
its Contributions.
This License does not grant any rights in the trademarks, service marks,
or logos of any Contributor (except as may be necessary to comply with
the notice requirements in Section 3.4).
2.4. Subsequent Licenses
No Contributor makes additional grants as a result of Your choice to
distribute the Covered Software under a subsequent version of this
License (see Section 10.2) or under the terms of a Secondary License (if
permitted under the terms of Section 3.3).
2.5. Representation
Each Contributor represents that the Contributor believes its
Contributions are its original creation(s) or it has sufficient rights
to grant the rights to its Contributions conveyed by this License.
2.6. Fair Use
This License is not intended to limit any rights You have under
applicable copyright doctrines of fair use, fair dealing, or other
equivalents.
2.7. Conditions
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
in Section 2.1.
3. Responsibilities
-------------------
3.1. Distribution of Source Form
All distribution of Covered Software in Source Code Form, including any
Modifications that You create or to which You contribute, must be under
the terms of this License. You must inform recipients that the Source
Code Form of the Covered Software is governed by the terms of this
License, and how they can obtain a copy of this License. You may not
attempt to alter or restrict the recipients' rights in the Source Code
Form.
3.2. Distribution of Executable Form
If You distribute Covered Software in Executable Form then:
(a) such Covered Software must also be made available in Source Code
Form, as described in Section 3.1, and You must inform recipients of
the Executable Form how they can obtain a copy of such Source Code
Form by reasonable means in a timely manner, at a charge no more
than the cost of distribution to the recipient; and
(b) You may distribute such Executable Form under the terms of this
License, or sublicense it under different terms, provided that the
license for the Executable Form does not attempt to limit or alter
the recipients' rights in the Source Code Form under this License.
3.3. Distribution of a Larger Work
You may create and distribute a Larger Work under terms of Your choice,
provided that You also comply with the requirements of this License for
the Covered Software. If the Larger Work is a combination of Covered
Software with a work governed by one or more Secondary Licenses, and the
Covered Software is not Incompatible With Secondary Licenses, this
License permits You to additionally distribute such Covered Software
under the terms of such Secondary License(s), so that the recipient of
the Larger Work may, at their option, further distribute the Covered
Software under the terms of either this License or such Secondary
License(s).
3.4. Notices
You may not remove or alter the substance of any license notices
(including copyright notices, patent notices, disclaimers of warranty,
or limitations of liability) contained within the Source Code Form of
the Covered Software, except that You may alter any license notices to
the extent required to remedy known factual inaccuracies.
3.5. Application of Additional Terms
You may choose to offer, and to charge a fee for, warranty, support,
indemnity or liability obligations to one or more recipients of Covered
Software. However, You may do so only on Your own behalf, and not on
behalf of any Contributor. You must make it absolutely clear that any
such warranty, support, indemnity, or liability obligation is offered by
You alone, and You hereby agree to indemnify every Contributor for any
liability incurred by such Contributor as a result of warranty, support,
indemnity or liability terms You offer. You may include additional
disclaimers of warranty and limitations of liability specific to any
jurisdiction.
4. Inability to Comply Due to Statute or Regulation
---------------------------------------------------
If it is impossible for You to comply with any of the terms of this
License with respect to some or all of the Covered Software due to
statute, judicial order, or regulation then You must: (a) comply with
the terms of this License to the maximum extent possible; and (b)
describe the limitations and the code they affect. Such description must
be placed in a text file included with all distributions of the Covered
Software under this License. Except to the extent prohibited by statute
or regulation, such description must be sufficiently detailed for a
recipient of ordinary skill to be able to understand it.
5. Termination
--------------
5.1. The rights granted under this License will terminate automatically
if You fail to comply with any of its terms. However, if You become
compliant, then the rights granted under this License from a particular
Contributor are reinstated (a) provisionally, unless and until such
Contributor explicitly and finally terminates Your grants, and (b) on an
ongoing basis, if such Contributor fails to notify You of the
non-compliance by some reasonable means prior to 60 days after You have
come back into compliance. Moreover, Your grants from a particular
Contributor are reinstated on an ongoing basis if such Contributor
notifies You of the non-compliance by some reasonable means, this is the
first time You have received notice of non-compliance with this License
from such Contributor, and You become compliant prior to 30 days after
Your receipt of the notice.
5.2. If You initiate litigation against any entity by asserting a patent
infringement claim (excluding declaratory judgment actions,
counter-claims, and cross-claims) alleging that a Contributor Version
directly or indirectly infringes any patent, then the rights granted to
You by any and all Contributors for the Covered Software under Section
2.1 of this License shall terminate.
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
end user license agreements (excluding distributors and resellers) which
have been validly granted by You or Your distributors under this License
prior to termination shall survive termination.
************************************************************************
* *
* 6. Disclaimer of Warranty *
* ------------------------- *
* *
* Covered Software is provided under this License on an "as is" *
* basis, without warranty of any kind, either expressed, implied, or *
* statutory, including, without limitation, warranties that the *
* Covered Software is free of defects, merchantable, fit for a *
* particular purpose or non-infringing. The entire risk as to the *
* quality and performance of the Covered Software is with You. *
* Should any Covered Software prove defective in any respect, You *
* (not any Contributor) assume the cost of any necessary servicing, *
* repair, or correction. This disclaimer of warranty constitutes an *
* essential part of this License. No use of any Covered Software is *
* authorized under this License except under this disclaimer. *
* *
************************************************************************
************************************************************************
* *
* 7. Limitation of Liability *
* -------------------------- *
* *
* Under no circumstances and under no legal theory, whether tort *
* (including negligence), contract, or otherwise, shall any *
* Contributor, or anyone who distributes Covered Software as *
* permitted above, be liable to You for any direct, indirect, *
* special, incidental, or consequential damages of any character *
* including, without limitation, damages for lost profits, loss of *
* goodwill, work stoppage, computer failure or malfunction, or any *
* and all other commercial damages or losses, even if such party *
* shall have been informed of the possibility of such damages. This *
* limitation of liability shall not apply to liability for death or *
* personal injury resulting from such party's negligence to the *
* extent applicable law prohibits such limitation. Some *
* jurisdictions do not allow the exclusion or limitation of *
* incidental or consequential damages, so this exclusion and *
* limitation may not apply to You. *
* *
************************************************************************
8. Litigation
-------------
Any litigation relating to this License may be brought only in the
courts of a jurisdiction where the defendant maintains its principal
place of business and such litigation shall be governed by laws of that
jurisdiction, without reference to its conflict-of-law provisions.
Nothing in this Section shall prevent a party's ability to bring
cross-claims or counter-claims.
9. Miscellaneous
----------------
This License represents the complete agreement concerning the subject
matter hereof. If any provision of this License is held to be
unenforceable, such provision shall be reformed only to the extent
necessary to make it enforceable. Any law or regulation which provides
that the language of a contract shall be construed against the drafter
shall not be used to construe this License against a Contributor.
10. Versions of the License
---------------------------
10.1. New Versions
Mozilla Foundation is the license steward. Except as provided in Section
10.3, no one other than the license steward has the right to modify or
publish new versions of this License. Each version will be given a
distinguishing version number.
10.2. Effect of New Versions
You may distribute the Covered Software under the terms of the version
of the License under which You originally received the Covered Software,
or under the terms of any subsequent version published by the license
steward.
10.3. Modified Versions
If you create software not governed by this License, and you want to
create a new license for such software, you may create and use a
modified version of this License if you rename the license and remove
any references to the name of the license steward (except to note that
such modified license differs from this License).
10.4. Distributing Source Code Form that is Incompatible With Secondary
Licenses
If You choose to distribute Source Code Form that is Incompatible With
Secondary Licenses under the terms of this version of the License, the
notice described in Exhibit B of this License must be attached.
Exhibit A - Source Code Form License Notice
-------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
If it is not possible or desirable to put the notice in a particular
file, then You may include the notice in a location (such as a LICENSE
file in a relevant directory) where a recipient would be likely to look
for such a notice.
You may add additional accurate notices of copyright ownership.
Exhibit B - "Incompatible With Secondary Licenses" Notice
---------------------------------------------------------
This Source Code Form is "Incompatible With Secondary Licenses", as
defined by the Mozilla Public License, v. 2.0.

@ -1,6 +0,0 @@
Apache HttpComponents Client
Copyright 1999-2021 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).

@ -1,63 +1,20 @@
### 一、项目目录结构
### 二、分支管理策略
1. **master分支**:存储稳定版本代码,仅合并经过测试的`develop`分支内容。
2. **develop分支**:作为日常开发主分支,集成所有成员功能开发分支代码。
3. **成员分支**:每位成员独立开发、注释代码的分支,命名为`member-name-feature`。
| 任务类型 | 具体内容 | 交付物 |
| -------- | -------- | ------ |
| **代码获取与环境搭建** | 从开源渠道获取小米便签代码配置Android开发环境JDK、Android Studio | 可运行的项目工程 |
| **代码注释** | 对核心代码模块添加详细注释,说明功能逻辑、参数含义及关键流程 | `src/java/`下带注释的Java文件 |
| **UML图绘制** | 绘制用例图(用户功能需求)、类图(代码结构),确保准确反映系统架构 | `doc/reading-report/*.uml`文件 |
| **泛读报告撰写** | 分析系统架构、核心功能模块、技术实现结合UML图说明设计思路 | `doc/reading-report/report.md` |
| **质量分析报告** | 从代码规范性、可维护性、性能等维度评估,提出优化建议 | `doc/quality-report/report.md` |
| **最终整合与提交** | 合并所有分支代码与文档,检查格式规范,提交至平台 | 完整的`mi-note-project`目录 |
### 三、项目功能模块概述
便签操作
文件夹
菜单
闹钟提醒
打电话
发短信
超链接
### 四、文档
#### 模型模板
gradle8.11.1
- 软件设计需求
- 软件需求模型
#### 文档模板
- 开源代码质量分析报告
- 开源软件维护方案及成果
- 软件设计规格说明书
- 软件需求构思及描述
- 软件需求规格说明书
### 五、协作流程
- **初始化阶段**:克隆代码至`master`分支,搭建环境后推送到`develop`。
- **开发阶段**:成员从`develop`拉取分支开发完成后提交Pull Request至`develop`。
- **评审阶段**:小组共同审查代码注释与报告,修正问题。
- **合并与提交**:将`develop`分支合并至`master`,打包`src`和`doc`目录提交作业。
### 六、工具使用
- **开发工具**Android studio
- **UML图绘制**EdrawMax矢量绘图软件
- **版本管理**通过Git命令行GitHub desktop和头歌平台管理分支与提交记录
# 小米便签
## 你好
1.维护至Android11当前手机版本
2.java语言基于安卓开发
3.查找网上相关文档
## 任务
阅读开源软件(小米便签),掌握开源软件的框架,对开源代码进行标注即注释,撰写开源代码泛读报告和代码质量分析报告。
作业质量要求
确保所绘制的UML图如用例图、类图的准确性和完整性
确保泛读报告和分析报告的准确性和质量
作业组织方式
以分组方式进行2~3人一个小组创建针对本作业的项目和软件版本库在版本库中建立“src”和“doc”两个文件夹分别存储软件系统的源代码和报告文档
建立master、develop以及成员分支(a_branch)将当前版本存入master目录下
作业提交成果 根据附件中的报告完成:
泛读报告
代码注释
质量分析报告
分组要求2 ~ 3人 (学生提交作品时需要关联同组成员,组内成员作品共享)
基于项目实施:否(学生必须在本平台创建项目,项目管理员可以提交作品)

File diff suppressed because it is too large Load Diff

1
app/.gitignore vendored

@ -1 +0,0 @@
/build

@ -1,59 +0,0 @@
plugins {
alias(libs.plugins.android.application)
}
android {
namespace = "net.micode.notes"
compileSdk = 35
defaultConfig {
applicationId = "net.micode.notes"
minSdk = 24
targetSdk = 35
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
packaging {
resources.excludes.add("META-INF/DEPENDENCIES");
resources.excludes.add("META-INF/NOTICE");
resources.excludes.add("META-INF/LICENSE");
resources.excludes.add("META-INF/LICENSE.txt");
resources.excludes.add("META-INF/NOTICE.txt");
}
}
dependencies {
implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
// implementation(fileTree(mapOf(
// "dir" to "D:\\Program Files (x86)\\Android\\Notes_master_demo\\lib",
// "include" to listOf("*.aar", "*.jar"),
// "exclude" to listOf("")
// )))
implementation(files("D:\\\\Program Files (x86)\\\\Android\\\\Notes_master_demo\\\\lib\\httpclient-osgi-4.5.14.jar"))
implementation(files("D:\\\\Program Files (x86)\\\\Android\\\\Notes_master_demo\\\\lib\\httpclient-win-4.5.14.jar"))
implementation(files("D:\\\\Program Files (x86)\\\\Android\\\\Notes_master_demo\\\\lib\\httpcore-4.4.16.jar"))
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)
}

@ -1,80 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.google.android.material.appbar.MaterialToolbar;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class ActivityMainBinding implements ViewBinding {
@NonNull
private final CoordinatorLayout rootView;
@NonNull
public final FloatingActionButton fab;
@NonNull
public final MaterialToolbar toolbar;
private ActivityMainBinding(@NonNull CoordinatorLayout rootView,
@NonNull FloatingActionButton fab, @NonNull MaterialToolbar toolbar) {
this.rootView = rootView;
this.fab = fab;
this.toolbar = toolbar;
}
@Override
@NonNull
public CoordinatorLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_main, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityMainBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.fab;
FloatingActionButton fab = ViewBindings.findChildViewById(rootView, id);
if (fab == null) {
break missingId;
}
id = R.id.toolbar;
MaterialToolbar toolbar = ViewBindings.findChildViewById(rootView, id);
if (toolbar == null) {
break missingId;
}
return new ActivityMainBinding((CoordinatorLayout) rootView, fab, toolbar);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -1,52 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micodes.myapplication.R;
public final class ContentMainBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
private ContentMainBinding(@NonNull ConstraintLayout rootView) {
this.rootView = rootView;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.content_main, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ContentMainBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
return new ContentMainBinding((ConstraintLayout) rootView);
}
}

@ -1,80 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class FragmentFirstBinding implements ViewBinding {
@NonNull
private final NestedScrollView rootView;
@NonNull
public final Button buttonFirst;
@NonNull
public final TextView textviewFirst;
private FragmentFirstBinding(@NonNull NestedScrollView rootView, @NonNull Button buttonFirst,
@NonNull TextView textviewFirst) {
this.rootView = rootView;
this.buttonFirst = buttonFirst;
this.textviewFirst = textviewFirst;
}
@Override
@NonNull
public NestedScrollView getRoot() {
return rootView;
}
@NonNull
public static FragmentFirstBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentFirstBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_first, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentFirstBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.button_first;
Button buttonFirst = ViewBindings.findChildViewById(rootView, id);
if (buttonFirst == null) {
break missingId;
}
id = R.id.textview_first;
TextView textviewFirst = ViewBindings.findChildViewById(rootView, id);
if (textviewFirst == null) {
break missingId;
}
return new FragmentFirstBinding((NestedScrollView) rootView, buttonFirst, textviewFirst);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -1,80 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class FragmentSecondBinding implements ViewBinding {
@NonNull
private final NestedScrollView rootView;
@NonNull
public final Button buttonSecond;
@NonNull
public final TextView textviewSecond;
private FragmentSecondBinding(@NonNull NestedScrollView rootView, @NonNull Button buttonSecond,
@NonNull TextView textviewSecond) {
this.rootView = rootView;
this.buttonSecond = buttonSecond;
this.textviewSecond = textviewSecond;
}
@Override
@NonNull
public NestedScrollView getRoot() {
return rootView;
}
@NonNull
public static FragmentSecondBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentSecondBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_second, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentSecondBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.button_second;
Button buttonSecond = ViewBindings.findChildViewById(rootView, id);
if (buttonSecond == null) {
break missingId;
}
id = R.id.textview_second;
TextView textviewSecond = ViewBindings.findChildViewById(rootView, id);
if (textviewSecond == null) {
break missingId;
}
return new FragmentSecondBinding((NestedScrollView) rootView, buttonSecond, textviewSecond);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -1,21 +0,0 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "net.micodes.myapplication",
"variantName": "debug",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"outputFile": "app-debug.apk"
}
],
"elementType": "File",
"minSdkVersionForDexing": 30
}

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

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

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

@ -1,120 +0,0 @@
#Thu May 08 14:07:40 CST 2025
net.micode.notes.app-main-33\:/color/primary_text_dark.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\color_primary_text_dark.xml.flat
net.micode.notes.app-main-33\:/color/secondary_text_dark.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\color_secondary_text_dark.xml.flat
net.micode.notes.app-main-33\:/drawable-hdpi/bg_btn_set_color.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_bg_btn_set_color.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/bg_color_btn_mask.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_bg_color_btn_mask.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/call_record.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_call_record.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/clock.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_clock.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/delete.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_delete.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/dropdown_icon.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_dropdown_icon.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_blue.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_blue.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_green.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_green.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_red.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_red.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_blue.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_blue.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_green.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_green.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_red.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_red.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_white.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_white.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_yellow.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_yellow.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_white.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_white.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_yellow.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_yellow.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_large.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_large.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_normal.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_normal.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_size_selector_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_size_selector_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_small.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_small.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_super.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_super.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/icon_app.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_icon_app.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_background.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_background.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_folder.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_folder.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_footer_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_footer_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/menu_delete.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_menu_delete.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/menu_move.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_menu_move.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/new_note_normal.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_new_note_normal.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/new_note_pressed.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_new_note_pressed.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/note_edit_color_selector_panel.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_note_edit_color_selector_panel.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/notification.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_notification.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/search_result.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_search_result.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/selected.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_selected.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/title_alert.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_title_alert.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/title_bar_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_title_bar_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_blue.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_blue.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_green.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_green.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_red.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_red.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_white.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_white.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_yellow.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_yellow.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_blue.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_blue.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_green.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_green.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_red.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_red.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_white.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_white.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_yellow.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_yellow.png.flat
net.micode.notes.app-main-33\:/drawable/ic_launcher_background.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_ic_launcher_background.xml.flat
net.micode.notes.app-main-33\:/drawable/ic_launcher_foreground.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_ic_launcher_foreground.xml.flat
net.micode.notes.app-main-33\:/drawable/new_note.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_new_note.xml.flat
net.micode.notes.app-main-33\:/layout/account_dialog_title.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_account_dialog_title.xml.flat
net.micode.notes.app-main-33\:/layout/activity_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_activity_main.xml.flat
net.micode.notes.app-main-33\:/layout/add_account_text.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_add_account_text.xml.flat
net.micode.notes.app-main-33\:/layout/content_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_content_main.xml.flat
net.micode.notes.app-main-33\:/layout/datetime_picker.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_datetime_picker.xml.flat
net.micode.notes.app-main-33\:/layout/dialog_edit_text.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_dialog_edit_text.xml.flat
net.micode.notes.app-main-33\:/layout/folder_list_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_folder_list_item.xml.flat
net.micode.notes.app-main-33\:/layout/fragment_first.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_fragment_first.xml.flat
net.micode.notes.app-main-33\:/layout/fragment_second.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_fragment_second.xml.flat
net.micode.notes.app-main-33\:/layout/note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_edit.xml.flat
net.micode.notes.app-main-33\:/layout/note_edit_list_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_edit_list_item.xml.flat
net.micode.notes.app-main-33\:/layout/note_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_item.xml.flat
net.micode.notes.app-main-33\:/layout/note_list.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list.xml.flat
net.micode.notes.app-main-33\:/layout/note_list_dropdown_menu.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list_dropdown_menu.xml.flat
net.micode.notes.app-main-33\:/layout/note_list_footer.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list_footer.xml.flat
net.micode.notes.app-main-33\:/layout/settings_header.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_settings_header.xml.flat
net.micode.notes.app-main-33\:/layout/widget_2x.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_widget_2x.xml.flat
net.micode.notes.app-main-33\:/layout/widget_4x.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_widget_4x.xml.flat
net.micode.notes.app-main-33\:/menu/call_note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_call_note_edit.xml.flat
net.micode.notes.app-main-33\:/menu/call_record_folder.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_call_record_folder.xml.flat
net.micode.notes.app-main-33\:/menu/menu_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_menu_main.xml.flat
net.micode.notes.app-main-33\:/menu/note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_edit.xml.flat
net.micode.notes.app-main-33\:/menu/note_list.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list.xml.flat
net.micode.notes.app-main-33\:/menu/note_list_dropdown.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list_dropdown.xml.flat
net.micode.notes.app-main-33\:/menu/note_list_options.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list_options.xml.flat
net.micode.notes.app-main-33\:/menu/sub_folder.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_sub_folder.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi-v26/ic_launcher.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi-v26_ic_launcher.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi-v26/ic_launcher_round.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi-v26_ic_launcher_round.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi/ic_launcher.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi_ic_launcher.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi/ic_launcher_round.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi_ic_launcher_round.xml.flat
net.micode.notes.app-main-33\:/mipmap-hdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-hdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-hdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-hdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-mdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-mdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-mdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-mdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxxhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxxhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxxhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxxhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/navigation/nav_graph.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\navigation_nav_graph.xml.flat
net.micode.notes.app-main-33\:/raw-zh-rCN/introduction=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\raw-zh-rCN_introduction.flat
net.micode.notes.app-main-33\:/raw/introduction=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\raw_introduction.flat
net.micode.notes.app-main-33\:/xml/backup_rules.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_backup_rules.xml.flat
net.micode.notes.app-main-33\:/xml/data_extraction_rules.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_data_extraction_rules.xml.flat
net.micode.notes.app-main-33\:/xml/preferences.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_preferences.xml.flat
net.micode.notes.app-main-33\:/xml/searchable.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_searchable.xml.flat
net.micode.notes.app-main-33\:/xml/widget_2x_info.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_widget_2x_info.xml.flat
net.micode.notes.app-main-33\:/xml/widget_4x_info.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_widget_4x_info.xml.flat

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d nuwe kennisgewing</item>
<item quantity="other">%d nuwe kennisgewings</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Gaan na tuisskerm"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Gaan op"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Nog opsies"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Klaar"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"AF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AAN"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksie+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spasiebalk"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Simbool+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Kieslys+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Soek …"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Vee navraag uit"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Soektognavraag"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Soek"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Dien navraag in"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Stemsoektog"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Deel met"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Deel met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Vou in"</string>
<string name="bottomsheet_action_collapse">Vou die onderste blad in</string>
<string name="bottomsheet_action_expand">Vou die onderste blad uit</string>
<string name="bottomsheet_action_expand_halfway">Vou halfpad uit</string>
<string name="bottomsheet_drag_handle_clicked">Het op sleephandvatsel gedubbeltik</string>
<string name="bottomsheet_drag_handle_content_description">Sleephandvatsel</string>
<string name="character_counter_content_description">Karakters ingevoer: %1$d van %2$d</string>
<string name="character_counter_overflowed_content_description">Karakterlimiet oorskry %1$d van %2$d</string>
<string name="clear_text_end_icon_content_description">Vee teks uit</string>
<string name="error_icon_content_description">Fout</string>
<string name="exposed_dropdown_menu_content_description">Wys aftrekkieslys</string>
<string name="icon_content_description">Dialoogikoon</string>
<string name="item_view_role_description">Oortjie</string>
<string name="material_clock_toggle_content_description">Kies vm. of nm.</string>
<string name="material_hour_24h_suffix">%1$s uur</string>
<string name="material_hour_selection">Kies uur</string>
<string name="material_hour_suffix">%1$s-uur</string>
<string name="material_minute_selection">Kies minute</string>
<string name="material_minute_suffix">%1$s minute</string>
<string name="material_timepicker_am">VM.</string>
<string name="material_timepicker_clock_mode_description">Skakel oor na horlosiemodus vir die tydinvoer.</string>
<string name="material_timepicker_hour">Uur</string>
<string name="material_timepicker_minute">Minuut</string>
<string name="material_timepicker_pm">NM.</string>
<string name="material_timepicker_select_time">Kies tyd</string>
<string name="material_timepicker_text_input_mode_description">Skakel oor na teksmodus vir die tydinvoer.</string>
<string name="mtrl_badge_numberless_content_description">Nuwe kennisgewing</string>
<string name="mtrl_chip_close_icon_content_description">Verwyder %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Meer as %1$d nuwe kennisgewings</string>
<string name="mtrl_picker_a11y_next_month">Verander na volgende maand</string>
<string name="mtrl_picker_a11y_prev_month">Verander na vorige maand</string>
<string name="mtrl_picker_announce_current_range_selection">Keuse van begindatum: %1$s Keuse van einddatum: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Huidige keuse: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">geen</string>
<string name="mtrl_picker_cancel">Kanselleer</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Kies datum</string>
<string name="mtrl_picker_date_header_unselected">Gekose datum</string>
<string name="mtrl_picker_day_of_week_column_header">Kolom van dae: %1$s</string>
<string name="mtrl_picker_end_date_description">Einddatum %1$s</string>
<string name="mtrl_picker_invalid_format">Ongeldige formaat.</string>
<string name="mtrl_picker_invalid_format_example">Voorbeeld: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Gebruik: %1$s</string>
<string name="mtrl_picker_invalid_range">Ongeldige reeks.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Gaan na huidige jaar %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Gaan na jaar %1$d</string>
<string name="mtrl_picker_out_of_range">Buite reeks: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Begindatum %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Einddatum</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Kies datumreeks</string>
<string name="mtrl_picker_range_header_unselected">Begindatum Einddatum</string>
<string name="mtrl_picker_save">Stoor</string>
<string name="mtrl_picker_start_date_description">Begindatum %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Einddatum</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Begindatum</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">j</string>
<string name="mtrl_picker_today_description">Vandag %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Skakel oor na kalenderinvoermodus</string>
<string name="mtrl_picker_toggle_to_day_selection">Tik om na kalenderaansig oor te skakel</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Skakel oor na teksinvoermodus</string>
<string name="mtrl_picker_toggle_to_year_selection">Tik om na jaaraansig oor te skakel</string>
<string name="mtrl_timepicker_cancel">Kanselleer</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Wys wagwoord</string>
<string msgid="6264217191555673260" name="search_menu_title">"Soek"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d አዲስ ማሳወቂያዎች</item>
<item quantity="other">%d አዲስ ማሳወቂያዎች</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"መነሻ ዳስስ"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"ወደ ላይ ያስሱ"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"ተከናውኗል"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"አንድ መተግበሪያ ይምረጡ"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"አጥፋ"</string>
<string msgid="884982626291842264" name="abc_capital_on">"አብራ"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ሰርዝ"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ክፍተት"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"ይፈልጉ…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"የፍለጋ መጠይቅ"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"ፍለጋ"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"መጠይቅ አስገባ"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"የድምጽ ፍለጋ"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"አጋራ በ"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ለ<ns1:g id="APPLICATION_NAME">%s</ns1:g> አጋራ"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
<string name="bottomsheet_action_collapse">የግርጌ ሉሁን ይሰብስቡ</string>
<string name="bottomsheet_action_expand">የግርጌ ሉሁን ይዘርጉ</string>
<string name="bottomsheet_action_expand_halfway">ግማሽ መንገድ ዘርጋ</string>
<string name="bottomsheet_drag_handle_clicked">መያዣ ይጎትቱ ሁለቴ መታ ተደርጓል</string>
<string name="bottomsheet_drag_handle_content_description">መያዣ ይጎትቱ</string>
<string name="character_counter_content_description">ቁምፊዎች %1$d ከ%2$d ገብተዋል</string>
<string name="character_counter_overflowed_content_description">የቁምፊ ገደብ %1$d ከ%2$d አልፏል</string>
<string name="clear_text_end_icon_content_description">ጽሑፍን አጽዳ</string>
<string name="error_icon_content_description">ስህተት</string>
<string name="exposed_dropdown_menu_content_description">ተቆልቋይ ምናሌን አሳይ</string>
<string name="icon_content_description">የንግግር አዶ</string>
<string name="item_view_role_description">ትር</string>
<string name="material_clock_toggle_content_description">AM ወይም PM ይምረጡ</string>
<string name="material_hour_24h_suffix">%1$s ሰዓታት</string>
<string name="material_hour_selection">ሰዓትን ይምረጡ</string>
<string name="material_hour_suffix">%1$s ሰዓት</string>
<string name="material_minute_selection">ደቂቃዎችን ይምረጡ</string>
<string name="material_minute_suffix">%1$s ደቂቃዎች</string>
<string name="material_timepicker_am">ጥዋት</string>
<string name="material_timepicker_clock_mode_description">ለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር።</string>
<string name="material_timepicker_hour">ሰዓት</string>
<string name="material_timepicker_minute">ደቂቃ</string>
<string name="material_timepicker_pm">ከሰዓት</string>
<string name="material_timepicker_select_time">ጊዜ ምረጥ</string>
<string name="material_timepicker_text_input_mode_description">ለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር።</string>
<string name="mtrl_badge_numberless_content_description">አዲስ ማሳወቂያ</string>
<string name="mtrl_chip_close_icon_content_description">%1$sን አስወግድ</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">ከ%1$d በላይ አዲስ ማሳወቂያዎች</string>
<string name="mtrl_picker_a11y_next_month">ወደ የሚቀጥለው ወር ቀይር</string>
<string name="mtrl_picker_a11y_prev_month">ወደ ቀዳሚው ወር ቀይር</string>
<string name="mtrl_picker_announce_current_range_selection">የመጀመሪያ ቀን ምርጫ፦ %1$s የማብቂያ ቀን ምርጫ፦ %2$s</string>
<string name="mtrl_picker_announce_current_selection">የአሁኑ ምርጫ፦ %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ምንም</string>
<string name="mtrl_picker_cancel">ይቅር</string>
<string name="mtrl_picker_confirm">እሺ</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">ቀን ይምረጡ</string>
<string name="mtrl_picker_date_header_unselected">የተመረጠው ቀን</string>
<string name="mtrl_picker_day_of_week_column_header">የቀኖች ዓምድ፦ %1$s</string>
<string name="mtrl_picker_end_date_description">የማብቂያ ቀን %1$s</string>
<string name="mtrl_picker_invalid_format">ልክ ያልሆነ ቅርጸት</string>
<string name="mtrl_picker_invalid_format_example">ምሳሌ፦ %1$s</string>
<string name="mtrl_picker_invalid_format_use">%1$s ን ይጠቀሙ</string>
<string name="mtrl_picker_invalid_range">ልክ ያልኾነ ክልል።</string>
<string name="mtrl_picker_navigate_to_current_year_description">ወደ የአሁኑ ዓመት %1$d አስስ</string>
<string name="mtrl_picker_navigate_to_year_description">ወደ ዓመት %1$d አሰስ</string>
<string name="mtrl_picker_out_of_range">ከክልል ውጭ፦ %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">መጀመሪያ ቀን %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s መጨረሻ ቀን</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">ክልል ይምረጡ</string>
<string name="mtrl_picker_range_header_unselected">የመጀመሪያ ቀን የመጨረሻ ቀን</string>
<string name="mtrl_picker_save">አስቀምጥ</string>
<string name="mtrl_picker_start_date_description">የመጀመሪያ ቀን %1$s</string>
<string name="mtrl_picker_text_input_date_hint">ቀን</string>
<string name="mtrl_picker_text_input_date_range_end_hint">የማብቂያ ቀን</string>
<string name="mtrl_picker_text_input_date_range_start_hint">መጀመሪያ ቀን</string>
<string name="mtrl_picker_text_input_day_abbr"></string>
<string name="mtrl_picker_text_input_month_abbr"></string>
<string name="mtrl_picker_text_input_year_abbr"></string>
<string name="mtrl_picker_today_description">ዛሬ %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">ወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይር</string>
<string name="mtrl_picker_toggle_to_day_selection">ወደ የቀን መቁጠሪያ እይታ ለመቀየር መታ ያድርጉ</string>
<string name="mtrl_picker_toggle_to_text_input_mode">ወደ ጽሁፍ ግቤት ሁነታ ቀይር</string>
<string name="mtrl_picker_toggle_to_year_selection">ወደ የዓመት እይታ ለመቀየር መታ ያድርጉ</string>
<string name="mtrl_timepicker_cancel">ይቅር</string>
<string name="mtrl_timepicker_confirm">እሺ</string>
<string name="password_toggle_content_description">የይለፍ ቃል አሳይ</string>
<string msgid="6264217191555673260" name="search_menu_title">"ፍለጋ"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,108 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="zero">%d إشعار جديد</item>
<item quantity="one">إشعار جديد واحد (%d)</item>
<item quantity="two">إشعاران جديدان (%d)</item>
<item quantity="few">%d إشعارات جديدة</item>
<item quantity="many">%d إشعارًا جديدًا</item>
<item quantity="other">%d إشعار جديد</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"التوجه إلى المنزل"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"خيارات أكثر"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"تم"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"إيقاف"</string>
<string msgid="884982626291842264" name="abc_capital_on">"مفعّلة"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"حذف"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"فضاء"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"القائمة+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"بحث…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"محو طلب البحث"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"طلب بحث"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"البحث"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"بحث صوتي"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"مشاركة مع <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"تصغير"</string>
<string name="bottomsheet_action_collapse">تصغير البطاقة السفلية</string>
<string name="bottomsheet_action_expand">توسيع البطاقة السفلية</string>
<string name="bottomsheet_action_expand_halfway">توسيع البطاقة السفلية</string>
<string name="bottomsheet_drag_handle_clicked">تم النقر مرّتين على مقبض السحب.</string>
<string name="bottomsheet_drag_handle_content_description">مقبض السحب</string>
<string name="character_counter_content_description">تمّ إدخال %1$d حرف من إجمالي %2$d.</string>
<string name="character_counter_overflowed_content_description">تجاوز عدد الأحرف المسموح به %1$d من %2$d.</string>
<string name="clear_text_end_icon_content_description">محو النص</string>
<string name="error_icon_content_description">خطأ</string>
<string name="exposed_dropdown_menu_content_description">عرض القائمة المنسدلة</string>
<string name="icon_content_description">رمز مربع الحوار</string>
<string name="item_view_role_description">علامة تبويب</string>
<string name="material_clock_toggle_content_description">يُرجى اختيار صباحًا أو مساءً.</string>
<string name="material_hour_24h_suffix">%1$s ساعة</string>
<string name="material_hour_selection">تحديد الساعة</string>
<string name="material_hour_suffix">الساعة %1$s</string>
<string name="material_minute_selection">تحديد الدقائق</string>
<string name="material_minute_suffix">%1$s دقيقة</string>
<string name="material_timepicker_am">صباحًا</string>
<string name="material_timepicker_clock_mode_description">يُرجى التبديل إلى وضع الساعة لإدخال الوقت.</string>
<string name="material_timepicker_hour">الساعة</string>
<string name="material_timepicker_minute">دقيقة</string>
<string name="material_timepicker_pm">مساءً</string>
<string name="material_timepicker_select_time">اختيار الوقت</string>
<string name="material_timepicker_text_input_mode_description">يُرجى التبديل إلى وضع إدخال النص لإدخال الوقت.</string>
<string name="mtrl_badge_numberless_content_description">إشعار جديد</string>
<string name="mtrl_chip_close_icon_content_description">إزالة %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">يبلغ عدد الإشعارات الجديدة أكثر من %1$d.</string>
<string name="mtrl_picker_a11y_next_month">التغيير إلى الشهر التالي</string>
<string name="mtrl_picker_a11y_prev_month">التغيير إلى الشهر السابق</string>
<string name="mtrl_picker_announce_current_range_selection">اختيار تاريخ البدء: %1$s اختيار تاريخ الانتهاء: %2$s</string>
<string name="mtrl_picker_announce_current_selection">الاختيار الحالي: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">بلا</string>
<string name="mtrl_picker_cancel">إلغاء</string>
<string name="mtrl_picker_confirm">حسنًا</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">يُرجى اختيار تاريخ.</string>
<string name="mtrl_picker_date_header_unselected">التاريخ المحدَّد</string>
<string name="mtrl_picker_day_of_week_column_header">عمود الأيام: %1$s</string>
<string name="mtrl_picker_end_date_description">تاريخ الانتهاء: %1$s</string>
<string name="mtrl_picker_invalid_format">التنسيق غير صالح</string>
<string name="mtrl_picker_invalid_format_example">مثال: %1$s</string>
<string name="mtrl_picker_invalid_format_use">استخدام: %1$s</string>
<string name="mtrl_picker_invalid_range">النطاق غير صالح</string>
<string name="mtrl_picker_navigate_to_current_year_description">الانتقال إلى السنة الحالية %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">التنقل إلى العام %1$d</string>
<string name="mtrl_picker_out_of_range">خارج النطاق: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">تاريخ البدء %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s تاريخ الانتهاء</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">يُرجى اختيار نطاق زمني.</string>
<string name="mtrl_picker_range_header_unselected">تاريخ البدء - تاريخ الانتهاء</string>
<string name="mtrl_picker_save">حفظ</string>
<string name="mtrl_picker_start_date_description">تاريخ البدء: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">التاريخ</string>
<string name="mtrl_picker_text_input_date_range_end_hint">تاريخ الانتهاء</string>
<string name="mtrl_picker_text_input_date_range_start_hint">تاريخ البدء</string>
<string name="mtrl_picker_text_input_day_abbr">ي</string>
<string name="mtrl_picker_text_input_month_abbr">ش</string>
<string name="mtrl_picker_text_input_year_abbr">س</string>
<string name="mtrl_picker_today_description">اليوم %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">التبديل إلى وضع \"الإدخال في التقويم\"</string>
<string name="mtrl_picker_toggle_to_day_selection">يمكنك النقر للتبديل إلى عرض \"تقويم Google\".</string>
<string name="mtrl_picker_toggle_to_text_input_mode">التبديل إلى وضع \"إدخال النص\"</string>
<string name="mtrl_picker_toggle_to_year_selection">يمكنك النقر للتبديل إلى عرض السنة.</string>
<string name="mtrl_timepicker_cancel">إلغاء</string>
<string name="mtrl_timepicker_confirm">حسنًا</string>
<string name="password_toggle_content_description">عرض كلمة المرور</string>
<string msgid="6264217191555673260" name="search_menu_title">"البحث"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d new notification</item>
<item quantity="other">%d new notifications</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"গৃহ পৃষ্ঠালৈ যাওক"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"ওপৰলৈ যাওক"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"অধিক বিকল্প"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"সম্পন্ন হ’ল"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"আটাইবোৰ চাওক"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"কোনো এপ্ বাছনি কৰক"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"অফ"</string>
<string msgid="884982626291842264" name="abc_capital_on">"অন"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"সন্ধান কৰক…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"সন্ধান কৰা প্ৰশ্ন মচক"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"সন্ধান কৰা প্ৰশ্ন"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"সন্ধান কৰক"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"প্ৰশ্ন দাখিল কৰক"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ৰ জৰিয়তে শ্বেয়াৰ কৰক"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"সংকোচন কৰক"</string>
<string name="bottomsheet_action_collapse">Collapse the bottom sheet</string>
<string name="bottomsheet_action_expand">Expand the bottom sheet</string>
<string name="bottomsheet_action_expand_halfway">Expand halfway</string>
<string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string>
<string name="bottomsheet_drag_handle_content_description">Drag handle</string>
<string name="character_counter_content_description">%2$dটাৰ ভিতৰত %1$dটা বৰ্ণ লিখা হৈছে</string>
<string name="character_counter_overflowed_content_description">%2$dটাৰ ভিতৰত %1$dটা বৰ্ণৰ সীমা অতিক্ৰম কৰিছে</string>
<string name="clear_text_end_icon_content_description">Clear text</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Show dropdown menu</string>
<string name="icon_content_description">Dialog Icon</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Select AM or PM</string>
<string name="material_hour_24h_suffix">%1$s hours</string>
<string name="material_hour_selection">Select hour</string>
<string name="material_hour_suffix">%1$s o\'clock</string>
<string name="material_minute_selection">মিনিট বাছনি কৰক</string>
<string name="material_minute_suffix">%1$s minutes</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">সময়ৰ ইনপুটৰ বাবে ঘড়ী ম\'ডলৈ যাওক।</string>
<string name="material_timepicker_hour">Hour</string>
<string name="material_timepicker_minute">Minute</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Select time</string>
<string name="material_timepicker_text_input_mode_description">সময়ৰ ইনপুটৰ বাবে পাঠৰ ইনপুট ম\'ডলৈ যাওক।</string>
<string name="mtrl_badge_numberless_content_description">New notification</string>
<string name="mtrl_chip_close_icon_content_description">%1$sক আঁতৰাওক</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">More than %1$d new notifications</string>
<string name="mtrl_picker_a11y_next_month">Change to next month</string>
<string name="mtrl_picker_a11y_prev_month">Change to previous month</string>
<string name="mtrl_picker_announce_current_range_selection">Start date selection: %1$s End date selection: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">none</string>
<string name="mtrl_picker_cancel">Cancel</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Select Date</string>
<string name="mtrl_picker_date_header_unselected">Selected date</string>
<string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string>
<string name="mtrl_picker_end_date_description">End date %1$s</string>
<string name="mtrl_picker_invalid_format">Invalid format.</string>
<string name="mtrl_picker_invalid_format_example">Example: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Use: %1$s</string>
<string name="mtrl_picker_invalid_range">Invalid range.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navigate to current year %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$d</string>
<string name="mtrl_picker_out_of_range">Out of range: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Start date %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s End date</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Select Range</string>
<string name="mtrl_picker_range_header_unselected">Start date End date</string>
<string name="mtrl_picker_save">Save</string>
<string name="mtrl_picker_start_date_description">Start date %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Date</string>
<string name="mtrl_picker_text_input_date_range_end_hint">End date</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Start date</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">y</string>
<string name="mtrl_picker_today_description">Today %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string>
<string name="mtrl_picker_toggle_to_day_selection">Tap to switch to Calendar view</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string>
<string name="mtrl_picker_toggle_to_year_selection">Tap to switch to year view</string>
<string name="mtrl_timepicker_cancel">Cancel</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">পাছৱৰ্ড দেখুৱাওক</string>
<string msgid="6264217191555673260" name="search_menu_title">"সন্ধান"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
</resources>

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d yeni bildiriş</item>
<item quantity="other">%d yeni bildiriş</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Əsas səhifəyə keçin"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Yuxarı keçin"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Digər seçimlər"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Hazırdır"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DEAKTİV"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AKTİV"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"silin"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"daxil olun"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksiya+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menyu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Axtarış..."</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Sorğunu silin"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Axtarın"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Səsli axtarış"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Paylaşın"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ilə paylaşın"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Yığcamlaşdırın"</string>
<string name="bottomsheet_action_collapse">Aşağıdakı vərəqi yığcamlaşdırın</string>
<string name="bottomsheet_action_expand">Aşağıdakı vərəqi genişləndirin</string>
<string name="bottomsheet_action_expand_halfway">Tam genişləndirin</string>
<string name="bottomsheet_drag_handle_clicked">Dəstəyə iki dəfə toxunun</string>
<string name="bottomsheet_drag_handle_content_description">Dəstək</string>
<string name="character_counter_content_description">%1$d/%2$d simvol daxil edilib</string>
<string name="character_counter_overflowed_content_description">Simvol limiti %1$d/%2$d dəyərini keçdi</string>
<string name="clear_text_end_icon_content_description">Mətni silin</string>
<string name="error_icon_content_description">Xəta</string>
<string name="exposed_dropdown_menu_content_description">ılan menyunu göstərin</string>
<string name="icon_content_description">Dialoq ikonası</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Gündüz və ya axşam seçin</string>
<string name="material_hour_24h_suffix">%1$s saat</string>
<string name="material_hour_selection">Saatı seçin</string>
<string name="material_hour_suffix">Saat %1$s</string>
<string name="material_minute_selection">Dəqiqə seçin</string>
<string name="material_minute_suffix">%1$s dəqiqə</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Zamanı daxil etmək üçün saat rejiminə keçin</string>
<string name="material_timepicker_hour">Saat</string>
<string name="material_timepicker_minute">Dəqiqə</string>
<string name="material_timepicker_pm"></string>
<string name="material_timepicker_select_time">Vaxt seçin</string>
<string name="material_timepicker_text_input_mode_description">Zamanı daxil etmək üçün mətnlə daxiletmə rejiminə keçin</string>
<string name="mtrl_badge_numberless_content_description">Yeni bildiriş</string>
<string name="mtrl_chip_close_icon_content_description">%1$s silin</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Minimum %1$d yeni bildiriş</string>
<string name="mtrl_picker_a11y_next_month">Növbəti aya dəyişin</string>
<string name="mtrl_picker_a11y_prev_month">Əvvəlki aya dəyişin</string>
<string name="mtrl_picker_announce_current_range_selection">Başlama tarixi seçimi: %1$s Bitmə tarixi seçimi: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Cari seçim: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">yoxdur</string>
<string name="mtrl_picker_cancel">Ləğv edin</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Tarix seçin</string>
<string name="mtrl_picker_date_header_unselected">Seçilmiş tarix</string>
<string name="mtrl_picker_day_of_week_column_header">Gün sütunu: %1$s</string>
<string name="mtrl_picker_end_date_description">Bitmə tarixi: %1$s</string>
<string name="mtrl_picker_invalid_format">Yanlış format.</string>
<string name="mtrl_picker_invalid_format_example">Nümunə: %1$s</string>
<string name="mtrl_picker_invalid_format_use">%1$s istifadə edin</string>
<string name="mtrl_picker_invalid_range">Yanlış diapazon.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Cari ilə keçin: %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">%1$d ilinə keçin</string>
<string name="mtrl_picker_out_of_range">Əhatə dairəsindən kənar: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Başlama tarixi %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Bitmə tarixi</string>
<string name="mtrl_picker_range_header_selected">%1$s: %2$s</string>
<string name="mtrl_picker_range_header_title">Aralıq seçin</string>
<string name="mtrl_picker_range_header_unselected">Başlama tarixi - Bitmə tarixi</string>
<string name="mtrl_picker_save">Saxlayın</string>
<string name="mtrl_picker_start_date_description">Başlama tarixi: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Tarix</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Bitmə tarixi</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Başlama tarixi</string>
<string name="mtrl_picker_text_input_day_abbr">gün</string>
<string name="mtrl_picker_text_input_month_abbr">ay</string>
<string name="mtrl_picker_text_input_year_abbr">il</string>
<string name="mtrl_picker_today_description">Bugün: %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Təqvim daxiletmə rejiminə keçin</string>
<string name="mtrl_picker_toggle_to_day_selection">Təqvim görünüşünə keçirmək üçün toxunun</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Mətn daxiletmə rejiminə keçin</string>
<string name="mtrl_picker_toggle_to_year_selection">İl görünüşünə keçirmək üçün toxunun</string>
<string name="mtrl_timepicker_cancel">Ləğv edin</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Parolu göstərin</string>
<string msgid="6264217191555673260" name="search_menu_title">"Axtarın"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,75 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d notificación nueva</item>
<item quantity="other">%d notificaciones nuevas</item>
</plurals>
<string name="bottomsheet_action_collapse">Contraer la hoja inferior</string>
<string name="bottomsheet_action_expand">Expandir la hoja inferior</string>
<string name="bottomsheet_action_expand_halfway">Expandir hasta la mitad</string>
<string name="bottomsheet_drag_handle_clicked">El control de arrastre se presionó dos veces</string>
<string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string>
<string name="character_counter_content_description">Caracteres ingresados: %1$d de %2$d</string>
<string name="character_counter_overflowed_content_description">Se excedió en %1$d el límite de caracteres de %2$d</string>
<string name="clear_text_end_icon_content_description">Borrar texto</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string>
<string name="icon_content_description">Ícono de diálogo</string>
<string name="item_view_role_description">Pestaña</string>
<string name="material_clock_toggle_content_description">Selecciona a.m. o p.m.</string>
<string name="material_hour_24h_suffix">%1$s horas</string>
<string name="material_hour_selection">Seleccione la hora.</string>
<string name="material_hour_suffix">%1$s en punto</string>
<string name="material_minute_selection">Seleccionar minutos</string>
<string name="material_minute_suffix">%1$s minutos</string>
<string name="material_timepicker_am">a.m.</string>
<string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para ingresar la hora.</string>
<string name="material_timepicker_hour">Hora</string>
<string name="material_timepicker_minute">Minuto</string>
<string name="material_timepicker_pm">p.m.</string>
<string name="material_timepicker_select_time">Seleccionar la hora</string>
<string name="material_timepicker_text_input_mode_description">Cambia al modo de entrada de texto para ingresar la hora.</string>
<string name="mtrl_badge_numberless_content_description">Notificación nueva</string>
<string name="mtrl_chip_close_icon_content_description">Quitar %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string>
<string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string>
<string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string>
<string name="mtrl_picker_announce_current_range_selection">Selección de fecha de inicio: %1$s Selección de fecha de finalización: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">nada</string>
<string name="mtrl_picker_cancel">Cancelar</string>
<string name="mtrl_picker_confirm">Aceptar</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Seleccionar fecha</string>
<string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string>
<string name="mtrl_picker_day_of_week_column_header">Columna de días: %1$s</string>
<string name="mtrl_picker_end_date_description">Fecha de finalización: %1$s</string>
<string name="mtrl_picker_invalid_format">Formato no válido</string>
<string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Usar: %1$s</string>
<string name="mtrl_picker_invalid_range">El rango no es válido.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navegar al año actual (%1$d)</string>
<string name="mtrl_picker_navigate_to_year_description">Navegar al año %1$d</string>
<string name="mtrl_picker_out_of_range">Fuera de rango: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio - %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s - fecha de finalización</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Selecciona un período</string>
<string name="mtrl_picker_range_header_unselected">Fecha de inicio - fecha de finalización</string>
<string name="mtrl_picker_save">Guardar</string>
<string name="mtrl_picker_start_date_description">Fecha de inicio: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Fecha</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Hoy, %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de entrada de calendario</string>
<string name="mtrl_picker_toggle_to_day_selection">Presiona para cambiar a la vista de Calendario</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de entrada de texto</string>
<string name="mtrl_picker_toggle_to_year_selection">Presiona para cambiar a la vista de año</string>
<string name="mtrl_timepicker_cancel">Cancelar</string>
<string name="mtrl_timepicker_confirm">Aceptar</string>
<string name="password_toggle_content_description">Mostrar contraseña</string>
</resources>

@ -1,105 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d novo obaveštenje</item>
<item quantity="few">%d nova obaveštenja</item>
<item quantity="other">%d novih obaveštenja</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Idite na početnu"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Idite nagore"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Još opcija"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Izaberite aplikaciju"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUČENO"</string>
<string msgid="884982626291842264" name="abc_capital_on">"UKLJUČENO"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"taster za razmak"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Pretražite…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Obrišite upit"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Pretražite upit"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretražite"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Pošaljite upit"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovna pretraga"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Delite pomoću"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Delite pomoću aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skupi"</string>
<string name="bottomsheet_action_collapse">Skupite donju tabelu</string>
<string name="bottomsheet_action_expand">Proširite donju tabelu</string>
<string name="bottomsheet_action_expand_halfway">Proširite do pola</string>
<string name="bottomsheet_drag_handle_clicked">Identifikator za prevlačenje je dvaput dodirnut</string>
<string name="bottomsheet_drag_handle_content_description">Ručica za prevlačenje</string>
<string name="character_counter_content_description">Uneti znakovi: %1$d od %2$d</string>
<string name="character_counter_overflowed_content_description">Prekoračeno je ograničenje broja znakova: %1$d od %2$d</string>
<string name="clear_text_end_icon_content_description">Obriši tekst</string>
<string name="error_icon_content_description">Greška</string>
<string name="exposed_dropdown_menu_content_description">Prikaži padajući meni</string>
<string name="icon_content_description">Ikona dijaloga</string>
<string name="item_view_role_description">Kartica</string>
<string name="material_clock_toggle_content_description">Izaberite pre podne ili po podne</string>
<string name="material_hour_24h_suffix">%1$s s</string>
<string name="material_hour_selection">Izaberite sat</string>
<string name="material_hour_suffix">%1$s s</string>
<string name="material_minute_selection">Izaberite minute</string>
<string name="material_minute_suffix">%1$s min</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Pređite u režim sata radi unosa vremena.</string>
<string name="material_timepicker_hour">Sat</string>
<string name="material_timepicker_minute">Minut</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Izaberite vreme</string>
<string name="material_timepicker_text_input_mode_description">Pređite u režim unosa teksta radi unosa vremena.</string>
<string name="mtrl_badge_numberless_content_description">Novo obaveštenje</string>
<string name="mtrl_chip_close_icon_content_description">Uklonite %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Novih obaveštenja: više od %1$d</string>
<string name="mtrl_picker_a11y_next_month">Pređite na sledeći mesec</string>
<string name="mtrl_picker_a11y_prev_month">Pređite na prethodni mesec</string>
<string name="mtrl_picker_announce_current_range_selection">Izbor datuma početka: %1$s Izbor datuma završetka: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Aktuelni izbor: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ništa</string>
<string name="mtrl_picker_cancel">Otkaži</string>
<string name="mtrl_picker_confirm">Potvrdi</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Izaberite datum</string>
<string name="mtrl_picker_date_header_unselected">Izabrani datum</string>
<string name="mtrl_picker_day_of_week_column_header">Kolona sa danima: %1$s</string>
<string name="mtrl_picker_end_date_description">Datum završetka %1$s</string>
<string name="mtrl_picker_invalid_format">Format je nevažeći.</string>
<string name="mtrl_picker_invalid_format_example">Primer: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Koristite: %1$s</string>
<string name="mtrl_picker_invalid_range">Nevažeći period.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Idite na aktuelnu godinu %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Idite na godinu %1$d</string>
<string name="mtrl_picker_out_of_range">Izvan perioda: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Datum početka %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Datum završetka</string>
<string name="mtrl_picker_range_header_selected">%1$s%2$s</string>
<string name="mtrl_picker_range_header_title">Izaberite period</string>
<string name="mtrl_picker_range_header_unselected">Datum početka Datum završetka</string>
<string name="mtrl_picker_save">Sačuvaj</string>
<string name="mtrl_picker_start_date_description">Datum početka %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Datum završetka</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Datum početka</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">g</string>
<string name="mtrl_picker_today_description">Danas %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Pređite na režim unosa u Kalendaru</string>
<string name="mtrl_picker_toggle_to_day_selection">Dodirnite da biste prešli na prikaz kalendara</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Pređite na režim unosa teksta</string>
<string name="mtrl_picker_toggle_to_year_selection">Dodirnite da biste prešli na prikaz godine</string>
<string name="mtrl_timepicker_cancel">Otkaži</string>
<string name="mtrl_timepicker_confirm">Potvrdi</string>
<string name="password_toggle_content_description">Prikaži lozinku</string>
<string msgid="6264217191555673260" name="search_menu_title">"Pretražite"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,106 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d новае апавяшчэнне</item>
<item quantity="few">%d новыя апавяшчэнні</item>
<item quantity="many">%d новых апавяшчэнняў</item>
<item quantity="other">%d новага апавяшчэння</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Перайсці ўверх"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Гатова"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Паказаць усе"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Выберыце праграму"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ВЫКЛ."</string>
<string msgid="884982626291842264" name="abc_capital_on">"УКЛ."</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Прабел"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Меню +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Пошук…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Выдаліць запыт"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Пошукавы запыт"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Пошук"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Адправіць запыт"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Галасавы пошук"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Абагуліць праз"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Абагуліць праз праграму \"<ns1:g id="APPLICATION_NAME">%s</ns1:g>\""</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Згарнуць"</string>
<string name="bottomsheet_action_collapse">Згарнуць ніжні аркуш</string>
<string name="bottomsheet_action_expand">Разгарнуць ніжні аркуш</string>
<string name="bottomsheet_action_expand_halfway">Разгарнуць напалову</string>
<string name="bottomsheet_drag_handle_clicked">Маркер перацягвання націснуты двойчы</string>
<string name="bottomsheet_drag_handle_content_description">Маркер перацягвання</string>
<string name="character_counter_content_description">Уведзена сімвалаў: %1$d з %2$d</string>
<string name="character_counter_overflowed_content_description">Абмежаванне колькасці сімвалаў перавышана: %1$d з %2$d</string>
<string name="clear_text_end_icon_content_description">Ачысціць тэкст</string>
<string name="error_icon_content_description">Памылка</string>
<string name="exposed_dropdown_menu_content_description">Паказаць выпадное меню</string>
<string name="icon_content_description">Значок дыялогавага акна</string>
<string name="item_view_role_description">Укладка</string>
<string name="material_clock_toggle_content_description">Выберыце AM (да паўдня) або PM (пасля паўдня)</string>
<string name="material_hour_24h_suffix">%1$s гадз</string>
<string name="material_hour_selection">Выберыце гадзіну</string>
<string name="material_hour_suffix">%1$s гадз</string>
<string name="material_minute_selection">Выберыце хвіліны</string>
<string name="material_minute_suffix">%1$s хв</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Пераключыцца на рэжым гадзінніка пры ўводзе часу.</string>
<string name="material_timepicker_hour">Гадзіна</string>
<string name="material_timepicker_minute">Хвіліна</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Выберыце час</string>
<string name="material_timepicker_text_input_mode_description">Пераключыцца на рэжым тэксту пры ўводзе часу.</string>
<string name="mtrl_badge_numberless_content_description">Новае апавяшчэнне</string>
<string name="mtrl_chip_close_icon_content_description">Выдаліць %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Колькасць новых апавяшчэнняў перавысіла %1$d</string>
<string name="mtrl_picker_a11y_next_month">Перайсці да наступнага месяца</string>
<string name="mtrl_picker_a11y_prev_month">Перайсці да папярэдняга месяца</string>
<string name="mtrl_picker_announce_current_range_selection">Выбраная дата пачатку: %1$s, выбраная дата заканчэння: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Бягучае вылучэнне: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">не выбрана</string>
<string name="mtrl_picker_cancel">Скасаваць</string>
<string name="mtrl_picker_confirm">ОК</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Выберыце дату</string>
<string name="mtrl_picker_date_header_unselected">Выбраная дата</string>
<string name="mtrl_picker_day_of_week_column_header">Слупок дзён: %1$s</string>
<string name="mtrl_picker_end_date_description">Дата заканчэння: %1$s</string>
<string name="mtrl_picker_invalid_format">Няправільны фармат.</string>
<string name="mtrl_picker_invalid_format_example">Прыклад: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Неабходны фармат: %1$s</string>
<string name="mtrl_picker_invalid_range">Няправільны дыяпазон.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Перайсці да бягучага года %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Перайсці ў %1$d год</string>
<string name="mtrl_picker_out_of_range">Па-за межамі дыяпазону: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Дата пачатку – %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s  дата заканчэння</string>
<string name="mtrl_picker_range_header_selected">%1$s  %2$s</string>
<string name="mtrl_picker_range_header_title">Выберыце дыяпазон дат</string>
<string name="mtrl_picker_range_header_unselected">Дата пачатку – дата заканчэння</string>
<string name="mtrl_picker_save">Захаваць</string>
<string name="mtrl_picker_start_date_description">Дата пачатку: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Дата</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Дата заканчэння</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Дата пачатку</string>
<string name="mtrl_picker_text_input_day_abbr">д</string>
<string name="mtrl_picker_text_input_month_abbr">м</string>
<string name="mtrl_picker_text_input_year_abbr">г</string>
<string name="mtrl_picker_today_description">Сёння %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Пераключыцца ў рэжым уводу \"Каляндар\"</string>
<string name="mtrl_picker_toggle_to_day_selection">Націсніце, каб пераключыцца на прагляд календара</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Пераключыцца ў рэжым уводу \"Тэкст\"</string>
<string name="mtrl_picker_toggle_to_year_selection">Націсніце, каб пераключыцца на агляд года</string>
<string name="mtrl_timepicker_cancel">Скасаваць</string>
<string name="mtrl_timepicker_confirm">ОК</string>
<string name="password_toggle_content_description">Паказаць пароль</string>
<string msgid="6264217191555673260" name="search_menu_title">"Пошук"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,104 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d ново известие</item>
<item quantity="other">%d нови известия</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Навигиране към началния екран"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Навигиране нагоре"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Още опции"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Преглед на всички"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ИЗКЛ."</string>
<string msgid="884982626291842264" name="abc_capital_on">"ВКЛ."</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"клавиша за интервал"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Търсете…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Заявка за търсене"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Търсене"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Гласово търсене"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Споделяне със: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Свиване"</string>
<string name="bottomsheet_action_collapse">Свиване на долния лист</string>
<string name="bottomsheet_action_expand">Разгъване на долния лист</string>
<string name="bottomsheet_action_expand_halfway">Разгъване наполовина</string>
<string name="bottomsheet_drag_handle_clicked">Двукратно докосване на манипулатора за преместване с плъзгане</string>
<string name="bottomsheet_drag_handle_content_description">Манипулатор за преместване с плъзгане</string>
<string name="character_counter_content_description">Въведени знаци: %1$d от %2$d</string>
<string name="character_counter_overflowed_content_description">Максималният брой знаци е надхвърлен с(ъс) %1$d от %2$d</string>
<string name="clear_text_end_icon_content_description">Изчистване на текста</string>
<string name="error_icon_content_description">Грешка</string>
<string name="exposed_dropdown_menu_content_description">Показване на падащото меню</string>
<string name="icon_content_description">Икона за диалогов прозорец</string>
<string name="item_view_role_description">Раздел</string>
<string name="material_clock_toggle_content_description">Изберете AM или PM</string>
<string name="material_hour_24h_suffix">%1$s часа</string>
<string name="material_hour_selection">Изберете час</string>
<string name="material_hour_suffix">%1$s часа</string>
<string name="material_minute_selection">Избиране на минути</string>
<string name="material_minute_suffix">%1$s минути</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Превключете към режима за часовник, за да въведете часа.</string>
<string name="material_timepicker_hour">Час</string>
<string name="material_timepicker_minute">Минута</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Избор на час</string>
<string name="material_timepicker_text_input_mode_description">Превключете към режима за въвеждане на текст, за да въведете часа.</string>
<string name="mtrl_badge_numberless_content_description">Ново известие</string>
<string name="mtrl_chip_close_icon_content_description">Премахване на %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Повече от %1$d нови известия</string>
<string name="mtrl_picker_a11y_next_month">Преминаване към следващия месец</string>
<string name="mtrl_picker_a11y_prev_month">Преминаване към предишния месец</string>
<string name="mtrl_picker_announce_current_range_selection">Избиране на начална дата: %1$s  Избиране на крайна дата: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Текущ избор: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">няма</string>
<string name="mtrl_picker_cancel">Отказ</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Избиране на дата</string>
<string name="mtrl_picker_date_header_unselected">Избрана дата</string>
<string name="mtrl_picker_day_of_week_column_header">Колона за дни: %1$s</string>
<string name="mtrl_picker_end_date_description">Крайна дата: %1$s</string>
<string name="mtrl_picker_invalid_format">Форматът е невалиден.</string>
<string name="mtrl_picker_invalid_format_example">Пример: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Използвайте: %1$s</string>
<string name="mtrl_picker_invalid_range">Невалиден диапазон.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Навигиране до текущата година %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Навигиране до %1$d г.</string>
<string name="mtrl_picker_out_of_range">Извън диапазона: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Начална дата %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s крайна дата</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Избиране на период от време</string>
<string name="mtrl_picker_range_header_unselected">Начална дата крайна дата</string>
<string name="mtrl_picker_save">Запазване</string>
<string name="mtrl_picker_start_date_description">Начална дата: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Дата</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Крайна дата</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Начална дата</string>
<string name="mtrl_picker_text_input_day_abbr">д</string>
<string name="mtrl_picker_text_input_month_abbr">м</string>
<string name="mtrl_picker_text_input_year_abbr">г</string>
<string name="mtrl_picker_today_description">Днес – %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Превключване към режим на въвеждане в календар</string>
<string name="mtrl_picker_toggle_to_day_selection">Докоснете за превключване към календарен изглед</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Превключване към режим за въвеждане на текст</string>
<string name="mtrl_picker_toggle_to_year_selection">Докоснете за превключване към годишен изглед</string>
<string name="mtrl_timepicker_cancel">Отказ</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Показване на паролата</string>
<string msgid="6264217191555673260" name="search_menu_title">"Търсене"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

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

Loading…
Cancel
Save