update git
This commit is contained in:
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.
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 +0,0 @@
|
|||||||
<EFBFBD>ng6z6wm4ijfn5auy4sgagtfpdeL<><4C><EFBFBD>u<EFBFBD>>b8<62><38>
|
|
||||||
@@ -1,775 +0,0 @@
|
|||||||
package org.gradle.accessors.dm;
|
|
||||||
|
|
||||||
import org.gradle.api.NonNullApi;
|
|
||||||
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
|
|
||||||
import org.gradle.plugin.use.PluginDependency;
|
|
||||||
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
|
|
||||||
import org.gradle.api.artifacts.MutableVersionConstraint;
|
|
||||||
import org.gradle.api.provider.Provider;
|
|
||||||
import org.gradle.api.model.ObjectFactory;
|
|
||||||
import org.gradle.api.provider.ProviderFactory;
|
|
||||||
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
|
|
||||||
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
|
|
||||||
import java.util.Map;
|
|
||||||
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
|
|
||||||
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A catalog of dependencies accessible via the {@code libs} extension.
|
|
||||||
*/
|
|
||||||
@NonNullApi
|
|
||||||
public class LibrariesForLibs extends AbstractExternalDependencyFactory {
|
|
||||||
|
|
||||||
private final AbstractExternalDependencyFactory owner = this;
|
|
||||||
private final AndroidxLibraryAccessors laccForAndroidxLibraryAccessors = new AndroidxLibraryAccessors(owner);
|
|
||||||
private final ComposeLibraryAccessors laccForComposeLibraryAccessors = new ComposeLibraryAccessors(owner);
|
|
||||||
private final DatastoreLibraryAccessors laccForDatastoreLibraryAccessors = new DatastoreLibraryAccessors(owner);
|
|
||||||
private final HiltLibraryAccessors laccForHiltLibraryAccessors = new HiltLibraryAccessors(owner);
|
|
||||||
private final KotlinxLibraryAccessors laccForKotlinxLibraryAccessors = new KotlinxLibraryAccessors(owner);
|
|
||||||
private final LifecycleLibraryAccessors laccForLifecycleLibraryAccessors = new LifecycleLibraryAccessors(owner);
|
|
||||||
private final NavigationLibraryAccessors laccForNavigationLibraryAccessors = new NavigationLibraryAccessors(owner);
|
|
||||||
private final RoomLibraryAccessors laccForRoomLibraryAccessors = new RoomLibraryAccessors(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);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>androidx</b>
|
|
||||||
*/
|
|
||||||
public AndroidxLibraryAccessors getAndroidx() {
|
|
||||||
return laccForAndroidxLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>compose</b>
|
|
||||||
*/
|
|
||||||
public ComposeLibraryAccessors getCompose() {
|
|
||||||
return laccForComposeLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>datastore</b>
|
|
||||||
*/
|
|
||||||
public DatastoreLibraryAccessors getDatastore() {
|
|
||||||
return laccForDatastoreLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>hilt</b>
|
|
||||||
*/
|
|
||||||
public HiltLibraryAccessors getHilt() {
|
|
||||||
return laccForHiltLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>kotlinx</b>
|
|
||||||
*/
|
|
||||||
public KotlinxLibraryAccessors getKotlinx() {
|
|
||||||
return laccForKotlinxLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>lifecycle</b>
|
|
||||||
*/
|
|
||||||
public LifecycleLibraryAccessors getLifecycle() {
|
|
||||||
return laccForLifecycleLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>navigation</b>
|
|
||||||
*/
|
|
||||||
public NavigationLibraryAccessors getNavigation() {
|
|
||||||
return laccForNavigationLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>room</b>
|
|
||||||
*/
|
|
||||||
public RoomLibraryAccessors getRoom() {
|
|
||||||
return laccForRoomLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of versions at <b>versions</b>
|
|
||||||
*/
|
|
||||||
public VersionAccessors getVersions() {
|
|
||||||
return vaccForVersionAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of bundles at <b>bundles</b>
|
|
||||||
*/
|
|
||||||
public BundleAccessors getBundles() {
|
|
||||||
return baccForBundleAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of plugins at <b>plugins</b>
|
|
||||||
*/
|
|
||||||
public PluginAccessors getPlugins() {
|
|
||||||
return paccForPluginAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class AndroidxLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final AndroidxActivityLibraryAccessors laccForAndroidxActivityLibraryAccessors = new AndroidxActivityLibraryAccessors(owner);
|
|
||||||
private final AndroidxCoreLibraryAccessors laccForAndroidxCoreLibraryAccessors = new AndroidxCoreLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public AndroidxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>androidx.activity</b>
|
|
||||||
*/
|
|
||||||
public AndroidxActivityLibraryAccessors getActivity() {
|
|
||||||
return laccForAndroidxActivityLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>androidx.core</b>
|
|
||||||
*/
|
|
||||||
public AndroidxCoreLibraryAccessors getCore() {
|
|
||||||
return laccForAndroidxCoreLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class AndroidxActivityLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public AndroidxActivityLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compose</b> with <b>androidx.activity:activity-compose</b> coordinates and
|
|
||||||
* with version reference <b>activityCompose</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompose() {
|
|
||||||
return create("androidx.activity.compose");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class AndroidxCoreLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public AndroidxCoreLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>ktx</b> with <b>androidx.core:core-ktx</b> coordinates and
|
|
||||||
* with version reference <b>coreKtx</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getKtx() {
|
|
||||||
return create("androidx.core.ktx");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ComposeLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final ComposeMaterialLibraryAccessors laccForComposeMaterialLibraryAccessors = new ComposeMaterialLibraryAccessors(owner);
|
|
||||||
private final ComposeUiLibraryAccessors laccForComposeUiLibraryAccessors = new ComposeUiLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public ComposeLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>bom</b> with <b>androidx.compose:compose-bom</b> coordinates and
|
|
||||||
* with version reference <b>composeBom</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getBom() {
|
|
||||||
return create("compose.bom");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>material3</b> with <b>androidx.compose.material3:material3</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getMaterial3() {
|
|
||||||
return create("compose.material3");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>compose.material</b>
|
|
||||||
*/
|
|
||||||
public ComposeMaterialLibraryAccessors getMaterial() {
|
|
||||||
return laccForComposeMaterialLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>compose.ui</b>
|
|
||||||
*/
|
|
||||||
public ComposeUiLibraryAccessors getUi() {
|
|
||||||
return laccForComposeUiLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ComposeMaterialLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final ComposeMaterialIconsLibraryAccessors laccForComposeMaterialIconsLibraryAccessors = new ComposeMaterialIconsLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public ComposeMaterialLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>compose.material.icons</b>
|
|
||||||
*/
|
|
||||||
public ComposeMaterialIconsLibraryAccessors getIcons() {
|
|
||||||
return laccForComposeMaterialIconsLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ComposeMaterialIconsLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public ComposeMaterialIconsLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>extended</b> with <b>androidx.compose.material:material-icons-extended</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getExtended() {
|
|
||||||
return create("compose.material.icons.extended");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ComposeUiLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier {
|
|
||||||
private final ComposeUiToolingLibraryAccessors laccForComposeUiToolingLibraryAccessors = new ComposeUiToolingLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public ComposeUiLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>ui</b> with <b>androidx.compose.ui:ui</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> asProvider() {
|
|
||||||
return create("compose.ui");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>graphics</b> with <b>androidx.compose.ui:ui-graphics</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getGraphics() {
|
|
||||||
return create("compose.ui.graphics");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>compose.ui.tooling</b>
|
|
||||||
*/
|
|
||||||
public ComposeUiToolingLibraryAccessors getTooling() {
|
|
||||||
return laccForComposeUiToolingLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class ComposeUiToolingLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier {
|
|
||||||
|
|
||||||
public ComposeUiToolingLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>tooling</b> with <b>androidx.compose.ui:ui-tooling</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> asProvider() {
|
|
||||||
return create("compose.ui.tooling");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>preview</b> with <b>androidx.compose.ui:ui-tooling-preview</b> coordinates and
|
|
||||||
* with <b>no version specified</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getPreview() {
|
|
||||||
return create("compose.ui.tooling.preview");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class DatastoreLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public DatastoreLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>preferences</b> with <b>androidx.datastore:datastore-preferences</b> coordinates and
|
|
||||||
* with version reference <b>datastore</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getPreferences() {
|
|
||||||
return create("datastore.preferences");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class HiltLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final HiltNavigationLibraryAccessors laccForHiltNavigationLibraryAccessors = new HiltNavigationLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public HiltLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>android</b> with <b>com.google.dagger:hilt-android</b> coordinates and
|
|
||||||
* with version reference <b>hilt</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getAndroid() {
|
|
||||||
return create("hilt.android");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compiler</b> with <b>com.google.dagger:hilt-android-compiler</b> coordinates and
|
|
||||||
* with version reference <b>hilt</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompiler() {
|
|
||||||
return create("hilt.compiler");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>hilt.navigation</b>
|
|
||||||
*/
|
|
||||||
public HiltNavigationLibraryAccessors getNavigation() {
|
|
||||||
return laccForHiltNavigationLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class HiltNavigationLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public HiltNavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compose</b> with <b>androidx.hilt:hilt-navigation-compose</b> coordinates and
|
|
||||||
* with version reference <b>hiltNavigationCompose</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompose() {
|
|
||||||
return create("hilt.navigation.compose");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class KotlinxLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final KotlinxCoroutinesLibraryAccessors laccForKotlinxCoroutinesLibraryAccessors = new KotlinxCoroutinesLibraryAccessors(owner);
|
|
||||||
private final KotlinxSerializationLibraryAccessors laccForKotlinxSerializationLibraryAccessors = new KotlinxSerializationLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public KotlinxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>kotlinx.coroutines</b>
|
|
||||||
*/
|
|
||||||
public KotlinxCoroutinesLibraryAccessors getCoroutines() {
|
|
||||||
return laccForKotlinxCoroutinesLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>kotlinx.serialization</b>
|
|
||||||
*/
|
|
||||||
public KotlinxSerializationLibraryAccessors getSerialization() {
|
|
||||||
return laccForKotlinxSerializationLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class KotlinxCoroutinesLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public KotlinxCoroutinesLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>android</b> with <b>org.jetbrains.kotlinx:kotlinx-coroutines-android</b> coordinates and
|
|
||||||
* with version reference <b>coroutines</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getAndroid() {
|
|
||||||
return create("kotlinx.coroutines.android");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class KotlinxSerializationLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public KotlinxSerializationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>json</b> with <b>org.jetbrains.kotlinx:kotlinx-serialization-json</b> coordinates and
|
|
||||||
* with version reference <b>serialization</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getJson() {
|
|
||||||
return create("kotlinx.serialization.json");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class LifecycleLibraryAccessors extends SubDependencyFactory {
|
|
||||||
private final LifecycleRuntimeLibraryAccessors laccForLifecycleRuntimeLibraryAccessors = new LifecycleRuntimeLibraryAccessors(owner);
|
|
||||||
private final LifecycleViewmodelLibraryAccessors laccForLifecycleViewmodelLibraryAccessors = new LifecycleViewmodelLibraryAccessors(owner);
|
|
||||||
|
|
||||||
public LifecycleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>lifecycle.runtime</b>
|
|
||||||
*/
|
|
||||||
public LifecycleRuntimeLibraryAccessors getRuntime() {
|
|
||||||
return laccForLifecycleRuntimeLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of libraries at <b>lifecycle.viewmodel</b>
|
|
||||||
*/
|
|
||||||
public LifecycleViewmodelLibraryAccessors getViewmodel() {
|
|
||||||
return laccForLifecycleViewmodelLibraryAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class LifecycleRuntimeLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public LifecycleRuntimeLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compose</b> with <b>androidx.lifecycle:lifecycle-runtime-compose</b> coordinates and
|
|
||||||
* with version reference <b>lifecycle</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompose() {
|
|
||||||
return create("lifecycle.runtime.compose");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>ktx</b> with <b>androidx.lifecycle:lifecycle-runtime-ktx</b> coordinates and
|
|
||||||
* with version reference <b>lifecycle</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getKtx() {
|
|
||||||
return create("lifecycle.runtime.ktx");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class LifecycleViewmodelLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public LifecycleViewmodelLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compose</b> with <b>androidx.lifecycle:lifecycle-viewmodel-compose</b> coordinates and
|
|
||||||
* with version reference <b>lifecycle</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompose() {
|
|
||||||
return create("lifecycle.viewmodel.compose");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class NavigationLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public NavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compose</b> with <b>androidx.navigation:navigation-compose</b> coordinates and
|
|
||||||
* with version reference <b>navigationCompose</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompose() {
|
|
||||||
return create("navigation.compose");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class RoomLibraryAccessors extends SubDependencyFactory {
|
|
||||||
|
|
||||||
public RoomLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>compiler</b> with <b>androidx.room:room-compiler</b> coordinates and
|
|
||||||
* with version reference <b>room</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getCompiler() {
|
|
||||||
return create("room.compiler");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>ktx</b> with <b>androidx.room:room-ktx</b> coordinates and
|
|
||||||
* with version reference <b>room</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getKtx() {
|
|
||||||
return create("room.ktx");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Dependency provider for <b>runtime</b> with <b>androidx.room:room-runtime</b> coordinates and
|
|
||||||
* with version reference <b>room</b>
|
|
||||||
* <p>
|
|
||||||
* This dependency was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<MinimalExternalModuleDependency> getRuntime() {
|
|
||||||
return create("room.runtime");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class VersionAccessors extends VersionFactory {
|
|
||||||
|
|
||||||
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>activityCompose</b> with value <b>1.9.0</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getActivityCompose() { return getVersion("activityCompose"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>agp</b> with value <b>8.4.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getAgp() { return getVersion("agp"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>composeBom</b> with value <b>2024.06.00</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getComposeBom() { return getVersion("composeBom"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>coreKtx</b> with value <b>1.13.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getCoreKtx() { return getVersion("coreKtx"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>coroutines</b> with value <b>1.8.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getCoroutines() { return getVersion("coroutines"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>datastore</b> with value <b>1.1.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getDatastore() { return getVersion("datastore"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>hilt</b> with value <b>2.51.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getHilt() { return getVersion("hilt"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>hiltNavigationCompose</b> with value <b>1.2.0</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getHiltNavigationCompose() { return getVersion("hiltNavigationCompose"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>kotlin</b> with value <b>2.0.0</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getKotlin() { return getVersion("kotlin"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>ksp</b> with value <b>2.0.0-1.0.21</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getKsp() { return getVersion("ksp"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>lifecycle</b> with value <b>2.8.2</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getLifecycle() { return getVersion("lifecycle"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>navigationCompose</b> with value <b>2.7.7</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getNavigationCompose() { return getVersion("navigationCompose"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>room</b> with value <b>2.6.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getRoom() { return getVersion("room"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Version alias <b>serialization</b> with value <b>1.7.1</b>
|
|
||||||
* <p>
|
|
||||||
* If the version is a rich version and cannot be represented as a
|
|
||||||
* single version string, an empty string is returned.
|
|
||||||
* <p>
|
|
||||||
* This version was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<String> getSerialization() { return getVersion("serialization"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class BundleAccessors extends BundleFactory {
|
|
||||||
|
|
||||||
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class PluginAccessors extends PluginFactory {
|
|
||||||
private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config);
|
|
||||||
private final KotlinPluginAccessors paccForKotlinPluginAccessors = new KotlinPluginAccessors(providers, config);
|
|
||||||
|
|
||||||
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>hilt</b> with plugin id <b>com.google.dagger.hilt.android</b> and
|
|
||||||
* with version reference <b>hilt</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getHilt() { return createPlugin("hilt"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>ksp</b> with plugin id <b>com.google.devtools.ksp</b> and
|
|
||||||
* with version reference <b>ksp</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getKsp() { return createPlugin("ksp"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of plugins at <b>plugins.android</b>
|
|
||||||
*/
|
|
||||||
public AndroidPluginAccessors getAndroid() {
|
|
||||||
return paccForAndroidPluginAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group of plugins at <b>plugins.kotlin</b>
|
|
||||||
*/
|
|
||||||
public KotlinPluginAccessors getKotlin() {
|
|
||||||
return paccForKotlinPluginAccessors;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class AndroidPluginAccessors extends PluginFactory {
|
|
||||||
|
|
||||||
public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>android.application</b> with plugin id <b>com.android.application</b> and
|
|
||||||
* with version reference <b>agp</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getApplication() { return createPlugin("android.application"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class KotlinPluginAccessors extends PluginFactory {
|
|
||||||
|
|
||||||
public KotlinPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>kotlin.android</b> with plugin id <b>org.jetbrains.kotlin.android</b> and
|
|
||||||
* with version reference <b>kotlin</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getAndroid() { return createPlugin("kotlin.android"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>kotlin.compose</b> with plugin id <b>org.jetbrains.kotlin.plugin.compose</b> and
|
|
||||||
* with version reference <b>kotlin</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getCompose() { return createPlugin("kotlin.compose"); }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Plugin provider for <b>kotlin.serialization</b> with plugin id <b>org.jetbrains.kotlin.plugin.serialization</b> and
|
|
||||||
* with version reference <b>kotlin</b>
|
|
||||||
* <p>
|
|
||||||
* This plugin was declared in catalog libs.versions.toml
|
|
||||||
*/
|
|
||||||
public Provider<PluginDependency> getSerialization() { return createPlugin("kotlin.serialization"); }
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load Diff
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 May 22 16:56:02 CDT 2026
|
|
||||||
gradle.version=8.7
|
|
||||||
@@ -1,2 +0,0 @@
|
|||||||
#Fri May 22 16:55:12 CDT 2026
|
|
||||||
java.home=C\:\\Program Files\\Android\\Android Studio\\jbr
|
|
||||||
Binary file not shown.
3
.idea/.gitignore
generated
vendored
3
.idea/.gitignore
generated
vendored
@@ -1,3 +0,0 @@
|
|||||||
# Default ignored files
|
|
||||||
/shelf/
|
|
||||||
/workspace.xml
|
|
||||||
1
.idea/.name
generated
1
.idea/.name
generated
@@ -1 +0,0 @@
|
|||||||
HSDiary
|
|
||||||
6
.idea/AndroidProjectSystem.xml
generated
6
.idea/AndroidProjectSystem.xml
generated
@@ -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>
|
|
||||||
26
.idea/appInsightsSettings.xml
generated
26
.idea/appInsightsSettings.xml
generated
@@ -1,26 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="AppInsightsSettings">
|
|
||||||
<option name="tabSettings">
|
|
||||||
<map>
|
|
||||||
<entry key="Firebase Crashlytics">
|
|
||||||
<value>
|
|
||||||
<InsightsFilterSettings>
|
|
||||||
<option name="connection">
|
|
||||||
<ConnectionSetting>
|
|
||||||
<option name="appId" value="PLACEHOLDER" />
|
|
||||||
<option name="mobileSdkAppId" value="" />
|
|
||||||
<option name="projectId" value="" />
|
|
||||||
<option name="projectNumber" value="" />
|
|
||||||
</ConnectionSetting>
|
|
||||||
</option>
|
|
||||||
<option name="signal" value="SIGNAL_UNSPECIFIED" />
|
|
||||||
<option name="timeIntervalDays" value="THIRTY_DAYS" />
|
|
||||||
<option name="visibilityType" value="ALL" />
|
|
||||||
</InsightsFilterSettings>
|
|
||||||
</value>
|
|
||||||
</entry>
|
|
||||||
</map>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
2153
.idea/caches/deviceStreaming.xml
generated
2153
.idea/caches/deviceStreaming.xml
generated
File diff suppressed because it is too large
Load Diff
6
.idea/compiler.xml
generated
6
.idea/compiler.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="CompilerConfiguration">
|
|
||||||
<bytecodeTargetLevel target="21" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
18
.idea/deploymentTargetSelector.xml
generated
18
.idea/deploymentTargetSelector.xml
generated
@@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="deploymentTargetSelector">
|
|
||||||
<selectionStates>
|
|
||||||
<SelectionState runConfigName="app">
|
|
||||||
<option name="selectionMode" value="DROPDOWN" />
|
|
||||||
<DropdownSelection timestamp="2026-05-22T22:22:00.613315300Z">
|
|
||||||
<Target type="DEFAULT_BOOT">
|
|
||||||
<handle>
|
|
||||||
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\colby\.android\avd\s22_ultra.avd" />
|
|
||||||
</handle>
|
|
||||||
</Target>
|
|
||||||
</DropdownSelection>
|
|
||||||
<DialogSelection />
|
|
||||||
</SelectionState>
|
|
||||||
</selectionStates>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
13
.idea/deviceManager.xml
generated
13
.idea/deviceManager.xml
generated
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="DeviceTable">
|
|
||||||
<option name="columnSorters">
|
|
||||||
<list>
|
|
||||||
<ColumnSorterState>
|
|
||||||
<option name="column" value="Name" />
|
|
||||||
<option name="order" value="ASCENDING" />
|
|
||||||
</ColumnSorterState>
|
|
||||||
</list>
|
|
||||||
</option>
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
18
.idea/gradle.xml
generated
18
.idea/gradle.xml
generated
@@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<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>
|
|
||||||
10
.idea/migrations.xml
generated
10
.idea/migrations.xml
generated
@@ -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>
|
|
||||||
10
.idea/misc.xml
generated
10
.idea/misc.xml
generated
@@ -1,10 +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>
|
|
||||||
<component name="ProjectType">
|
|
||||||
<option name="id" value="Android" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
17
.idea/runConfigurations.xml
generated
17
.idea/runConfigurations.xml
generated
@@ -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>
|
|
||||||
6
.idea/vcs.xml
generated
6
.idea/vcs.xml
generated
@@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project version="4">
|
|
||||||
<component name="VcsDirectoryMappings">
|
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
|
||||||
</component>
|
|
||||||
</project>
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
## This file must *NOT* be checked into Version Control Systems,
|
|
||||||
# as it contains information specific to your local configuration.
|
|
||||||
#
|
|
||||||
# Location of the SDK. This is only used by Gradle.
|
|
||||||
# For customization when using a Version Control System, please read the
|
|
||||||
# header note.
|
|
||||||
#Fri May 22 16:55:12 CDT 2026
|
|
||||||
sdk.dir=C\:\\Users\\colby\\AppData\\Local\\Android\\Sdk
|
|
||||||
Reference in New Issue
Block a user