上传注释 #8

Merged
mzvoe5kay merged 3 commits from develop into main 2 years ago

@ -1,227 +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 activity (androidx.activity:activity)
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getActivity() {
return create("activity");
}
/**
* 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 constraintlayout (androidx.constraintlayout:constraintlayout)
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
return create("constraintlayout");
}
/**
* 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: activity (1.8.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> getActivity() { return getVersion("activity"); }
/**
* 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: constraintlayout (2.1.4)
* 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> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* 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.10.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,269 +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 activity (androidx.activity:activity)
* This dependency was declared in catalog libs.versions.toml
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getActivity() {
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("activity");
}
/**
* 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 constraintlayout (androidx.constraintlayout:constraintlayout)
* 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");
}
/**
* 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: activity (1.8.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> getActivity() { return getVersion("activity"); }
/**
* 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: constraintlayout (2.1.4)
* 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> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* 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.10.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"); }
}
}

@ -1,2 +0,0 @@
#Sun Apr 07 16:30:50 CST 2024
gradle.version=8.4

@ -1,2 +0,0 @@
#Sun Apr 07 16:30:31 CST 2024
java.home=D\:\\software\\Android\\Android Studio\\jbr

@ -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,6 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" default="true">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
</project>

@ -1,300 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AndroidLayouts">
<shared>
<config />
</shared>
<layouts>
<layout url="file://$PROJECT_DIR$/app/src/main/res/layout/activity_main.xml">
<config>
<theme>@style/Theme.Notes</theme>
</config>
</layout>
</layouts>
</component>
<component name="AutoImportSettings">
<option name="autoReloadType" value="NONE" />
</component>
<component name="ChangeListManager">
<list default="true" id="fdf1fc62-993e-44af-9241-c93a63bc404c" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change beforePath="$PROJECT_DIR$/AndroidManifest.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/NOTICE" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/README" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/color/primary_text_dark.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/color/secondary_text_dark.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/bg_btn_set_color.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/bg_color_btn_mask.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/call_record.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/clock.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/delete.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/dropdown_icon.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_blue.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_green.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_red.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_title_blue.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_title_green.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_title_red.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_title_white.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_title_yellow.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_white.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/edit_yellow.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/font_large.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/font_normal.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/font_size_selector_bg.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/font_small.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/font_super.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/icon_app.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_background.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_blue_down.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_blue_middle.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_blue_single.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_blue_up.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_folder.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_footer_bg.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_green_down.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_green_middle.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_green_single.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_green_up.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_red_down.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_red_middle.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_red_single.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_red_up.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_white_down.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_white_middle.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_white_single.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_white_up.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_yellow_down.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_yellow_middle.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_yellow_single.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/list_yellow_up.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/menu_delete.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/menu_move.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/new_note_normal.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/new_note_pressed.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/note_edit_color_selector_panel.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/notification.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/search_result.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/selected.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/title_alert.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/title_bar_bg.9.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_2x_blue.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_2x_green.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_2x_red.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_2x_white.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_2x_yellow.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_4x_blue.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_4x_green.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_4x_red.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_4x_white.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable-hdpi/widget_4x_yellow.png" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/drawable/new_note.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/account_dialog_title.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/add_account_text.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/datetime_picker.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/dialog_edit_text.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/folder_list_item.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_edit.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_edit_list_item.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_item.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_list.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_list_dropdown_menu.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/note_list_footer.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/settings_header.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/widget_2x.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/layout/widget_4x.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/call_note_edit.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/call_record_folder.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/note_edit.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/note_list.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/note_list_dropdown.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/note_list_options.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/menu/sub_folder.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/raw-zh-rCN/introduction" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/raw/introduction" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values-zh-rCN/arrays.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values-zh-rCN/strings.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values-zh-rTW/arrays.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values-zh-rTW/strings.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values/arrays.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values/colors.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values/dimens.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values/strings.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/values/styles.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/xml/preferences.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/xml/searchable.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/xml/widget_2x_info.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/res/xml/widget_4x_info.xml" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/data/Contact.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/data/Notes.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/data/NotesDatabaseHelper.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/data/NotesProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/MetaData.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/Node.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/SqlData.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/SqlNote.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/Task.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/data/TaskList.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/exception/ActionFailureException.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/exception/NetworkFailureException.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/remote/GTaskASyncTask.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/remote/GTaskClient.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/remote/GTaskManager.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/gtask/remote/GTaskSyncService.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/model/Note.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/model/WorkingNote.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/tool/BackupUtils.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/tool/DataUtils.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/tool/GTaskStringUtils.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/tool/ResourceParser.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/AlarmAlertActivity.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/AlarmInitReceiver.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/AlarmReceiver.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/DateTimePicker.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/DateTimePickerDialog.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/DropdownMenu.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/FoldersListAdapter.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NoteEditActivity.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NoteEditText.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NoteItemData.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NotesListActivity.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NotesListAdapter.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NotesListItem.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/ui/NotesPreferenceActivity.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/widget/NoteWidgetProvider.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/widget/NoteWidgetProvider_2x.java" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/src/net/micode/notes/widget/NoteWidgetProvider_4x.java" 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[C:\Users\12693\.android\avd\Medium_Phone_API_24.avd]" />
<component name="ExternalProjectsData">
<projectState path="$PROJECT_DIR$">
<ProjectState />
</projectState>
</component>
<component name="ExternalProjectsManager">
<system id="GRADLE">
<state>
<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="ProjectColorInfo">{
&quot;associatedIndex&quot;: 1
}</component>
<component name="ProjectId" id="2elUPCZa57IrsUZx8vrmdSpDLZl" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.cidr.known.project.marker": "true",
"cf.first.check.clang-format": "false",
"cidr.known.project.marker": "true",
"git-widget-placeholder": "develop",
"last_opened_file_path": "D:/new/SE-lab/src/Notes",
"project.structure.last.edited": "Dependencies",
"project.structure.proportion": "0.17",
"project.structure.side.proportion": "0.2",
"settings.editor.selected.configurable": "AndroidSdkUpdater"
}
}]]></component>
<component name="RunManager">
<configuration name="app" type="AndroidRunConfigurationType" factoryName="Android App">
<module name="Notes.app.main" />
<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="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="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="INSPECTION_WITHOUT_ACTIVITY_RESTART" 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_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="fdf1fc62-993e-44af-9241-c93a63bc404c" name="Changes" comment="" />
<created>1712478631502</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1712478631502</updated>
</task>
<servers />
</component>
</project>

@ -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=../../../apk/debug/output-metadata.json

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

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

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

Loading…
Cancel
Save