parent
54a348ee4e
commit
96be992a99
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,307 @@
|
||||
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"); }
|
||||
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,371 @@
|
||||
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"); }
|
||||
|
||||
}
|
||||
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
#Thu May 08 14:03:09 CST 2025
|
||||
gradle.version=8.11.1
|
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
#Thu May 08 13:30:50 CST 2025
|
||||
java.home=C\:\\Program Files\\Android\\Android Studio\\jbr
|
Binary file not shown.
@ -0,0 +1,136 @@
|
||||
<?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">{
|
||||
"associatedIndex": 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>
|
@ -0,0 +1,80 @@
|
||||
// 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));
|
||||
}
|
||||
}
|
@ -0,0 +1,52 @@
|
||||
// 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);
|
||||
}
|
||||
}
|
@ -0,0 +1,80 @@
|
||||
// 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));
|
||||
}
|
||||
}
|
@ -0,0 +1,80 @@
|
||||
// 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));
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
{}
|
Binary file not shown.
@ -0,0 +1,21 @@
|
||||
{
|
||||
"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
|
||||
}
|
@ -0,0 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../apk/debug/output-metadata.json
|
@ -0,0 +1,2 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=8.9.0
|
@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "net.micode.notes",
|
||||
"variantName": "debug",
|
||||
"elements": []
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
4
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,120 @@
|
||||
#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
|
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
|
||||
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
|
||||
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
|
||||
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
|
||||
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
|
||||
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
|
||||
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
|
||||
<string msgid="884982626291842264" name="abc_capital_on">"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">"Search…"</string>
|
||||
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
|
||||
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
|
||||
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
|
||||
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
|
||||
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
|
||||
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
|
||||
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
|
||||
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
|
||||
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
|
||||
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
|
||||
</resources>
|
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
|
||||
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
|
||||
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
|
||||
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
|
||||
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
|
||||
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
|
||||
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
|
||||
<string msgid="884982626291842264" name="abc_capital_on">"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">"Search…"</string>
|
||||
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
|
||||
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
|
||||
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
|
||||
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
|
||||
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
|
||||
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
|
||||
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
|
||||
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
|
||||
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
|
||||
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
|
||||
</resources>
|
@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
|
||||
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
|
||||
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
|
||||
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
|
||||
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
|
||||
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
|
||||
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
|
||||
<string msgid="884982626291842264" name="abc_capital_on">"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">"Search…"</string>
|
||||
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
|
||||
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
|
||||
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
|
||||
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
|
||||
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
|
||||
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
|
||||
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
|
||||
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
|
||||
<string msgid="6264217191555673260" name="search_menu_title">"Search"</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…
Reference in new issue