parent
26a0df98d2
commit
72c931f0e9
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,195 +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 `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 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);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for appcompat (androidx.appcompat:appcompat)
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getAppcompat() {
|
|
||||||
return create("appcompat");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for junit (junit:junit)
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getJunit() {
|
|
||||||
return create("junit");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for material (com.google.android.material:material)
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getMaterial() {
|
|
||||||
return create("material");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of libraries at espresso
|
|
||||||
*/
|
|
||||||
public EspressoLibraryAccessors getEspresso() {
|
|
||||||
return laccForEspressoLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of libraries at ext
|
|
||||||
*/
|
|
||||||
public ExtLibraryAccessors getExt() {
|
|
||||||
return laccForExtLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of versions at versions
|
|
||||||
*/
|
|
||||||
public VersionAccessors getVersions() {
|
|
||||||
return vaccForVersionAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of bundles at bundles
|
|
||||||
*/
|
|
||||||
public BundleAccessors getBundles() {
|
|
||||||
return baccForBundleAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of plugins at plugins
|
|
||||||
*/
|
|
||||||
public PluginAccessors getPlugins() {
|
|
||||||
return paccForPluginAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class EspressoLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public EspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for core (androidx.test.espresso:espresso-core)
|
|
||||||
* 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); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for junit (androidx.test.ext:junit)
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getJunit() {
|
|
||||||
return create("ext.junit");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class VersionAccessors extends VersionFactory {
|
|
||||||
|
|
||||||
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: agp (8.3.0)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getAgp() { return getVersion("agp"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: appcompat (1.6.1)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: espressoCore (3.5.1)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: junit (4.13.2)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getJunit() { return getVersion("junit"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: junitVersion (1.1.5)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: material (1.11.0)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getMaterial() { return getVersion("material"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
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 {
|
|
||||||
|
|
||||||
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a plugin provider for androidApplication to the plugin id 'com.android.application'
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getAndroidApplication() { return createPlugin("androidApplication"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,231 +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 `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 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);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for appcompat (androidx.appcompat:appcompat)
|
|
||||||
* 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");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for junit (junit:junit)
|
|
||||||
* 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");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for material (com.google.android.material:material)
|
|
||||||
* 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");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of libraries at espresso
|
|
||||||
* @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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of libraries at ext
|
|
||||||
* @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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of versions at versions
|
|
||||||
*/
|
|
||||||
public VersionAccessors getVersions() {
|
|
||||||
return vaccForVersionAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of bundles at bundles
|
|
||||||
* @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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the group of plugins at plugins
|
|
||||||
*/
|
|
||||||
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); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for core (androidx.test.espresso:espresso-core)
|
|
||||||
* 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); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a dependency provider for junit (androidx.test.ext:junit)
|
|
||||||
* 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");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class VersionAccessors extends VersionFactory {
|
|
||||||
|
|
||||||
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: agp (8.3.0)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getAgp() { return getVersion("agp"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: appcompat (1.6.1)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: espressoCore (3.5.1)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: junit (4.13.2)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getJunit() { return getVersion("junit"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: junitVersion (1.1.5)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the version associated to this alias: material (1.11.0)
|
|
||||||
* If the version is a rich version and that its not expressible as a
|
|
||||||
* single version string, then an empty string is returned.
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getMaterial() { return getVersion("material"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @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 {
|
|
||||||
|
|
||||||
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a plugin provider for androidApplication to the plugin id 'com.android.application'
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getAndroidApplication() { return createPlugin("androidApplication"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
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.
@ -1,2 +0,0 @@
|
|||||||
#Fri Jun 13 21:55:35 CST 2025
|
|
||||||
gradle.version=8.11.1
|
|
Binary file not shown.
@ -1,2 +0,0 @@
|
|||||||
#Fri Jun 13 21:55:08 CST 2025
|
|
||||||
java.home=D\:\\AndroidStudio\\jbr
|
|
Binary file not shown.
@ -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="deploymentTargetDropDown">
|
|
||||||
<value>
|
|
||||||
<entry key="app">
|
|
||||||
<State />
|
|
||||||
</entry>
|
|
||||||
</value>
|
|
||||||
</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,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
|
||||||
<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>
|
|
||||||
</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,326 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="AndroidLayouts">
|
|
||||||
<shared>
|
|
||||||
<config>
|
|
||||||
<locale>zh-rCN</locale>
|
|
||||||
</config>
|
|
||||||
</shared>
|
|
||||||
<layouts>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/account_dialog_title.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/add_account_text.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/datetime_picker.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/dialog_edit_text.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/folder_list_item.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_edit.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_edit_list_item.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_item.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_list.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_list_dropdown_menu.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/note_list_footer.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/settings_header.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/widget_2x.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/widget_4x.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/call_note_edit.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/call_record_folder.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/note_edit.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/note_list.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/note_list_dropdown.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/note_list_options.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/menu/sub_folder.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
<layout url="file://$PROJECT_DIR$/app/src/main/res/xml/preferences.xml">
|
|
||||||
<config>
|
|
||||||
<theme>@android:style/Theme.Material.Light</theme>
|
|
||||||
</config>
|
|
||||||
</layout>
|
|
||||||
</layouts>
|
|
||||||
</component>
|
|
||||||
<component name="AutoImportSettings">
|
|
||||||
<option name="autoReloadType" value="NONE" />
|
|
||||||
</component>
|
|
||||||
<component name="ChangeListManager">
|
|
||||||
<list default="true" id="7a6aabfe-314f-4f12-8d4d-361b748e4301" name="Changes" comment="注释" />
|
|
||||||
<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=D:\AndroidStudioData\.android\.android\avd\Pixel_3.avd)]" />
|
|
||||||
<component name="ExternalProjectsData">
|
|
||||||
<projectState path="$PROJECT_DIR$">
|
|
||||||
<ProjectState />
|
|
||||||
</projectState>
|
|
||||||
</component>
|
|
||||||
<component name="ExternalProjectsManager">
|
|
||||||
<system id="GRADLE">
|
|
||||||
<state>
|
|
||||||
<task path="$PROJECT_DIR$/app">
|
|
||||||
<activation />
|
|
||||||
</task>
|
|
||||||
<projects_view>
|
|
||||||
<tree_state>
|
|
||||||
<expand />
|
|
||||||
<select />
|
|
||||||
</tree_state>
|
|
||||||
</projects_view>
|
|
||||||
</state>
|
|
||||||
</system>
|
|
||||||
</component>
|
|
||||||
<component name="Git.Settings">
|
|
||||||
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
|
||||||
</component>
|
|
||||||
<component name="ProblemsViewState">
|
|
||||||
<option name="selectedTabId" value="CurrentFile" />
|
|
||||||
</component>
|
|
||||||
<component name="ProjectColorInfo">{
|
|
||||||
"associatedIndex": 8
|
|
||||||
}</component>
|
|
||||||
<component name="ProjectId" id="2fRU03GKbeHfzEVRsRnHfu8TYu1" />
|
|
||||||
<component name="ProjectViewState">
|
|
||||||
<option name="hideEmptyMiddlePackages" value="true" />
|
|
||||||
<option name="showLibraryContents" value="true" />
|
|
||||||
</component>
|
|
||||||
<component name="PropertiesComponent"><![CDATA[{
|
|
||||||
"keyToString": {
|
|
||||||
"ResourceManagerPrefKey.ResourceType": "DRAWABLE",
|
|
||||||
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
|
||||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
||||||
"RunOnceActivity.cidr.known.project.marker": "true",
|
|
||||||
"RunOnceActivity.git.unshallow": "true",
|
|
||||||
"RunOnceActivity.readMode.enableVisualFormatting": "true",
|
|
||||||
"cf.first.check.clang-format": "false",
|
|
||||||
"cidr.known.project.marker": "true",
|
|
||||||
"com.google.services.firebase.aqiPopupShown": "true",
|
|
||||||
"git-widget-placeholder": "Rebasing kissnow",
|
|
||||||
"kotlin-language-version-configured": "true",
|
|
||||||
"last_opened_file_path": "D:/Project/Java/miNote",
|
|
||||||
"project.structure.last.edited": "Dependencies",
|
|
||||||
"project.structure.proportion": "0.17",
|
|
||||||
"project.structure.side.proportion": "0.2"
|
|
||||||
}
|
|
||||||
}]]></component>
|
|
||||||
<component name="PsdUISettings">
|
|
||||||
<option name="MODULES_LIST_MINIMIZE" value="true" />
|
|
||||||
<option name="LAST_EDITED_BUILD_TYPE" value="release" />
|
|
||||||
</component>
|
|
||||||
<component name="RunManager">
|
|
||||||
<configuration name="app" type="AndroidRunConfigurationType" factoryName="Android App">
|
|
||||||
<module name="miCode.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="RESTORE_FRESH_INSTALL_ONLY" value="false" />
|
|
||||||
<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="7a6aabfe-314f-4f12-8d4d-361b748e4301" name="Changes" comment="" />
|
|
||||||
<created>1713763158051</created>
|
|
||||||
<option name="number" value="Default" />
|
|
||||||
<option name="presentableId" value="Default" />
|
|
||||||
<updated>1713763158051</updated>
|
|
||||||
</task>
|
|
||||||
<task id="LOCAL-00001" summary="注释">
|
|
||||||
<option name="closed" value="true" />
|
|
||||||
<created>1718717419877</created>
|
|
||||||
<option name="number" value="00001" />
|
|
||||||
<option name="presentableId" value="LOCAL-00001" />
|
|
||||||
<option name="project" value="LOCAL" />
|
|
||||||
<updated>1718717419877</updated>
|
|
||||||
</task>
|
|
||||||
<task id="LOCAL-00002" summary="注释">
|
|
||||||
<option name="closed" value="true" />
|
|
||||||
<created>1718717733244</created>
|
|
||||||
<option name="number" value="00002" />
|
|
||||||
<option name="presentableId" value="LOCAL-00002" />
|
|
||||||
<option name="project" value="LOCAL" />
|
|
||||||
<updated>1718717733244</updated>
|
|
||||||
</task>
|
|
||||||
<option name="localTasksCounter" value="3" />
|
|
||||||
<servers />
|
|
||||||
</component>
|
|
||||||
<component name="Vcs.Log.Tabs.Properties">
|
|
||||||
<option name="TAB_STATES">
|
|
||||||
<map>
|
|
||||||
<entry key="MAIN">
|
|
||||||
<value>
|
|
||||||
<State />
|
|
||||||
</value>
|
|
||||||
</entry>
|
|
||||||
</map>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
<component name="VcsManagerConfiguration">
|
|
||||||
<MESSAGE value="注释" />
|
|
||||||
<option name="LAST_COMMIT_MESSAGE" value="注释" />
|
|
||||||
</component>
|
|
||||||
<component name="play_dynamic_filters_status">
|
|
||||||
<option name="appIdToCheckInfo">
|
|
||||||
<map>
|
|
||||||
<entry key="net.micode.notes">
|
|
||||||
<value>
|
|
||||||
<CheckInfo lastCheckTimestamp="1749823392315" />
|
|
||||||
</value>
|
|
||||||
</entry>
|
|
||||||
<entry key="net.micode.notes.test">
|
|
||||||
<value>
|
|
||||||
<CheckInfo lastCheckTimestamp="1749823392315" />
|
|
||||||
</value>
|
|
||||||
</entry>
|
|
||||||
</map>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
@ -1,160 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package net.micode.notes.tool;
|
|
||||||
|
|
||||||
public class GTaskStringUtils {
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作 ID
|
|
||||||
public final static String GTASK_JSON_ACTION_ID = "action_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作列表
|
|
||||||
public final static String GTASK_JSON_ACTION_LIST = "action_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE = "action_type";
|
|
||||||
|
|
||||||
// 创建操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_CREATE = "create";
|
|
||||||
|
|
||||||
// 获取所有操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_GETALL = "get_all";
|
|
||||||
|
|
||||||
// 移动操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_MOVE = "move";
|
|
||||||
|
|
||||||
// 更新操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_UPDATE = "update";
|
|
||||||
|
|
||||||
// GTASK JSON 中的创建者 ID
|
|
||||||
public final static String GTASK_JSON_CREATOR_ID = "creator_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的子实体
|
|
||||||
public final static String GTASK_JSON_CHILD_ENTITY = "child_entity";
|
|
||||||
|
|
||||||
// GTASK JSON 中的客户端版本
|
|
||||||
public final static String GTASK_JSON_CLIENT_VERSION = "client_version";
|
|
||||||
|
|
||||||
// GTASK JSON 中的完成状态
|
|
||||||
public final static String GTASK_JSON_COMPLETED = "completed";
|
|
||||||
|
|
||||||
// GTASK JSON 中的当前列表 ID
|
|
||||||
public final static String GTASK_JSON_CURRENT_LIST_ID = "current_list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的默认列表 ID
|
|
||||||
public final static String GTASK_JSON_DEFAULT_LIST_ID = "default_list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的已删除标志
|
|
||||||
public final static String GTASK_JSON_DELETED = "deleted";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标列表
|
|
||||||
public final static String GTASK_JSON_DEST_LIST = "dest_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标父实体
|
|
||||||
public final static String GTASK_JSON_DEST_PARENT = "dest_parent";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标父实体类型
|
|
||||||
public final static String GTASK_JSON_DEST_PARENT_TYPE = "dest_parent_type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的实体变更
|
|
||||||
public final static String GTASK_JSON_ENTITY_DELTA = "entity_delta";
|
|
||||||
|
|
||||||
// GTASK JSON 中的实体类型
|
|
||||||
public final static String GTASK_JSON_ENTITY_TYPE = "entity_type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的已删除获取标志
|
|
||||||
public final static String GTASK_JSON_GET_DELETED = "get_deleted";
|
|
||||||
|
|
||||||
// GTASK JSON 中的 ID
|
|
||||||
public final static String GTASK_JSON_ID = "id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的索引
|
|
||||||
public final static String GTASK_JSON_INDEX = "index";
|
|
||||||
|
|
||||||
// GTASK JSON 中的最后修改时间
|
|
||||||
public final static String GTASK_JSON_LAST_MODIFIED = "last_modified";
|
|
||||||
|
|
||||||
// GTASK JSON 中的最新同步点
|
|
||||||
public final static String GTASK_JSON_LATEST_SYNC_POINT = "latest_sync_point";
|
|
||||||
|
|
||||||
// GTASK JSON 中的列表 ID
|
|
||||||
public final static String GTASK_JSON_LIST_ID = "list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的列表
|
|
||||||
public final static String GTASK_JSON_LISTS = "lists";
|
|
||||||
|
|
||||||
// GTASK JSON 中的名称
|
|
||||||
public final static String GTASK_JSON_NAME = "name";
|
|
||||||
|
|
||||||
// GTASK JSON 中的新 ID
|
|
||||||
public final static String GTASK_JSON_NEW_ID = "new_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的笔记
|
|
||||||
public final static String GTASK_JSON_NOTES = "notes";
|
|
||||||
|
|
||||||
// GTASK JSON 中的父 ID
|
|
||||||
public final static String GTASK_JSON_PARENT_ID = "parent_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的上一个兄弟 ID
|
|
||||||
public final static String GTASK_JSON_PRIOR_SIBLING_ID = "prior_sibling_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的结果
|
|
||||||
public final static String GTASK_JSON_RESULTS = "results";
|
|
||||||
|
|
||||||
// GTASK JSON 中的源列表
|
|
||||||
public final static String GTASK_JSON_SOURCE_LIST = "source_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的任务
|
|
||||||
public final static String GTASK_JSON_TASKS = "tasks";
|
|
||||||
|
|
||||||
// GTASK JSON 中的类型
|
|
||||||
public final static String GTASK_JSON_TYPE = "type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的组类型
|
|
||||||
public final static String GTASK_JSON_TYPE_GROUP = "GROUP";
|
|
||||||
|
|
||||||
// GTASK JSON 中的任务类型
|
|
||||||
public final static String GTASK_JSON_TYPE_TASK = "TASK";
|
|
||||||
|
|
||||||
// GTASK JSON 中的用户
|
|
||||||
public final static String GTASK_JSON_USER = "user";
|
|
||||||
|
|
||||||
// MIUI 文件夹前缀
|
|
||||||
public final static String MIUI_FOLDER_PREFFIX = "[MIUI_Notes]";
|
|
||||||
|
|
||||||
// 默认文件夹
|
|
||||||
public final static String FOLDER_DEFAULT = "Default";
|
|
||||||
|
|
||||||
// 通话记录文件夹
|
|
||||||
public final static String FOLDER_CALL_NOTE = "Call_Note";
|
|
||||||
|
|
||||||
// 元数据文件夹
|
|
||||||
public final static String FOLDER_META = "METADATA";
|
|
||||||
|
|
||||||
// 元数据头部 GTask ID
|
|
||||||
public final static String META_HEAD_GTASK_ID = "meta_gid";
|
|
||||||
|
|
||||||
// 元数据头部笔记
|
|
||||||
public final static String META_HEAD_NOTE = "meta_note";
|
|
||||||
|
|
||||||
// 元数据头部数据
|
|
||||||
public final static String META_HEAD_DATA = "meta_data";
|
|
||||||
|
|
||||||
// 元数据笔记名称
|
|
||||||
public final static String META_NOTE_NAME = "[META INFO] DON'T UPDATE AND DELETE";
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1,160 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
||||||
* you may not use this file except in compliance with the License.
|
|
||||||
* You may obtain a copy of the License at
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
||||||
* See the License for the specific language governing permissions and
|
|
||||||
* limitations under the License.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package net.micode.notes.tool;
|
|
||||||
|
|
||||||
public class GTaskStringUtils {
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作 ID
|
|
||||||
public final static String GTASK_JSON_ACTION_ID = "action_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作列表
|
|
||||||
public final static String GTASK_JSON_ACTION_LIST = "action_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE = "action_type";
|
|
||||||
|
|
||||||
// 创建操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_CREATE = "create";
|
|
||||||
|
|
||||||
// 获取所有操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_GETALL = "get_all";
|
|
||||||
|
|
||||||
// 移动操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_MOVE = "move";
|
|
||||||
|
|
||||||
// 更新操作类型
|
|
||||||
public final static String GTASK_JSON_ACTION_TYPE_UPDATE = "update";
|
|
||||||
|
|
||||||
// GTASK JSON 中的创建者 ID
|
|
||||||
public final static String GTASK_JSON_CREATOR_ID = "creator_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的子实体
|
|
||||||
public final static String GTASK_JSON_CHILD_ENTITY = "child_entity";
|
|
||||||
|
|
||||||
// GTASK JSON 中的客户端版本
|
|
||||||
public final static String GTASK_JSON_CLIENT_VERSION = "client_version";
|
|
||||||
|
|
||||||
// GTASK JSON 中的完成状态
|
|
||||||
public final static String GTASK_JSON_COMPLETED = "completed";
|
|
||||||
|
|
||||||
// GTASK JSON 中的当前列表 ID
|
|
||||||
public final static String GTASK_JSON_CURRENT_LIST_ID = "current_list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的默认列表 ID
|
|
||||||
public final static String GTASK_JSON_DEFAULT_LIST_ID = "default_list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的已删除标志
|
|
||||||
public final static String GTASK_JSON_DELETED = "deleted";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标列表
|
|
||||||
public final static String GTASK_JSON_DEST_LIST = "dest_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标父实体
|
|
||||||
public final static String GTASK_JSON_DEST_PARENT = "dest_parent";
|
|
||||||
|
|
||||||
// GTASK JSON 中的目标父实体类型
|
|
||||||
public final static String GTASK_JSON_DEST_PARENT_TYPE = "dest_parent_type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的实体变更
|
|
||||||
public final static String GTASK_JSON_ENTITY_DELTA = "entity_delta";
|
|
||||||
|
|
||||||
// GTASK JSON 中的实体类型
|
|
||||||
public final static String GTASK_JSON_ENTITY_TYPE = "entity_type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的已删除获取标志
|
|
||||||
public final static String GTASK_JSON_GET_DELETED = "get_deleted";
|
|
||||||
|
|
||||||
// GTASK JSON 中的 ID
|
|
||||||
public final static String GTASK_JSON_ID = "id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的索引
|
|
||||||
public final static String GTASK_JSON_INDEX = "index";
|
|
||||||
|
|
||||||
// GTASK JSON 中的最后修改时间
|
|
||||||
public final static String GTASK_JSON_LAST_MODIFIED = "last_modified";
|
|
||||||
|
|
||||||
// GTASK JSON 中的最新同步点
|
|
||||||
public final static String GTASK_JSON_LATEST_SYNC_POINT = "latest_sync_point";
|
|
||||||
|
|
||||||
// GTASK JSON 中的列表 ID
|
|
||||||
public final static String GTASK_JSON_LIST_ID = "list_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的列表
|
|
||||||
public final static String GTASK_JSON_LISTS = "lists";
|
|
||||||
|
|
||||||
// GTASK JSON 中的名称
|
|
||||||
public final static String GTASK_JSON_NAME = "name";
|
|
||||||
|
|
||||||
// GTASK JSON 中的新 ID
|
|
||||||
public final static String GTASK_JSON_NEW_ID = "new_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的笔记
|
|
||||||
public final static String GTASK_JSON_NOTES = "notes";
|
|
||||||
|
|
||||||
// GTASK JSON 中的父 ID
|
|
||||||
public final static String GTASK_JSON_PARENT_ID = "parent_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的上一个兄弟 ID
|
|
||||||
public final static String GTASK_JSON_PRIOR_SIBLING_ID = "prior_sibling_id";
|
|
||||||
|
|
||||||
// GTASK JSON 中的结果
|
|
||||||
public final static String GTASK_JSON_RESULTS = "results";
|
|
||||||
|
|
||||||
// GTASK JSON 中的源列表
|
|
||||||
public final static String GTASK_JSON_SOURCE_LIST = "source_list";
|
|
||||||
|
|
||||||
// GTASK JSON 中的任务
|
|
||||||
public final static String GTASK_JSON_TASKS = "tasks";
|
|
||||||
|
|
||||||
// GTASK JSON 中的类型
|
|
||||||
public final static String GTASK_JSON_TYPE = "type";
|
|
||||||
|
|
||||||
// GTASK JSON 中的组类型
|
|
||||||
public final static String GTASK_JSON_TYPE_GROUP = "GROUP";
|
|
||||||
|
|
||||||
// GTASK JSON 中的任务类型
|
|
||||||
public final static String GTASK_JSON_TYPE_TASK = "TASK";
|
|
||||||
|
|
||||||
// GTASK JSON 中的用户
|
|
||||||
public final static String GTASK_JSON_USER = "user";
|
|
||||||
|
|
||||||
// MIUI 文件夹前缀
|
|
||||||
public final static String MIUI_FOLDER_PREFFIX = "[MIUI_Notes]";
|
|
||||||
|
|
||||||
// 默认文件夹
|
|
||||||
public final static String FOLDER_DEFAULT = "Default";
|
|
||||||
|
|
||||||
// 通话记录文件夹
|
|
||||||
public final static String FOLDER_CALL_NOTE = "Call_Note";
|
|
||||||
|
|
||||||
// 元数据文件夹
|
|
||||||
public final static String FOLDER_META = "METADATA";
|
|
||||||
|
|
||||||
// 元数据头部 GTask ID
|
|
||||||
public final static String META_HEAD_GTASK_ID = "meta_gid";
|
|
||||||
|
|
||||||
// 元数据头部笔记
|
|
||||||
public final static String META_HEAD_NOTE = "meta_note";
|
|
||||||
|
|
||||||
// 元数据头部数据
|
|
||||||
public final static String META_HEAD_DATA = "meta_data";
|
|
||||||
|
|
||||||
// 元数据笔记名称
|
|
||||||
public final static String META_NOTE_NAME = "[META INFO] DON'T UPDATE AND DELETE";
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
@ -1 +0,0 @@
|
|||||||
{}
|
|
@ -1 +0,0 @@
|
|||||||
{}
|
|
Binary file not shown.
@ -1,21 +0,0 @@
|
|||||||
{
|
|
||||||
"version": 3,
|
|
||||||
"artifactType": {
|
|
||||||
"type": "APK",
|
|
||||||
"kind": "Directory"
|
|
||||||
},
|
|
||||||
"applicationId": "net.micode.notes",
|
|
||||||
"variantName": "debug",
|
|
||||||
"elements": [
|
|
||||||
{
|
|
||||||
"type": "SINGLE",
|
|
||||||
"filters": [],
|
|
||||||
"attributes": [],
|
|
||||||
"versionCode": 1,
|
|
||||||
"versionName": "1.0",
|
|
||||||
"outputFile": "app-debug.apk"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"elementType": "File",
|
|
||||||
"minSdkVersionForDexing": 24
|
|
||||||
}
|
|
@ -1,2 +0,0 @@
|
|||||||
#- File Locator -
|
|
||||||
listingFile=../../../../outputs/apk/debug/output-metadata.json
|
|
@ -1,2 +0,0 @@
|
|||||||
#- File Locator -
|
|
||||||
listingFile=../../../../outputs/apk/androidTest/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": []
|
|
||||||
}
|
|
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.
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.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue