diff --git a/TekTrackBackEnd/Track/pom.xml b/TekTrackBackEnd/Track/pom.xml index 6b529866..a07edfb2 100644 --- a/TekTrackBackEnd/Track/pom.xml +++ b/TekTrackBackEnd/Track/pom.xml @@ -169,6 +169,11 @@ spring-kafka 3.2.3 + + io.jsonwebtoken + jjwt + 0.9.1 + diff --git a/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/Controllers/UserController.java b/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/Controllers/UserController.java index 2104587b..98797a05 100644 --- a/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/Controllers/UserController.java +++ b/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/Controllers/UserController.java @@ -31,22 +31,22 @@ public ResponseEntity getAuthenticatedUser() throws Exception { return new ResponseEntity<>(userService.findByUserName(username), HttpStatus.OK); } - @GetMapping("/users") + @GetMapping("/users") // POSTMAN TESTED public ResponseEntity> getAllUsers() { return new ResponseEntity<>(userService.findAll(), HttpStatus.OK); } - @GetMapping("/user") + @GetMapping("/user") // POSTMAN TESTED public ResponseEntity getUserById(@PathVariable Long id) { return new ResponseEntity<>(userService.findById(id), HttpStatus.OK); } - @GetMapping("/user/{username}") + @GetMapping("/user/{username}") // POSTMAN TESTED public ResponseEntity getUserByUserName(@PathVariable String username) throws Exception { return new ResponseEntity<>(userService.findByUserName(username), HttpStatus.OK); } - @PostMapping("/new_user") + @PostMapping("/new_user") // POSTMAN TESTED public ResponseEntity create(@RequestBody User user) { return new ResponseEntity<>(userService.create(user), HttpStatus.CREATED); } diff --git a/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/TrackApplication.java b/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/TrackApplication.java index 995760f5..f02808ba 100644 --- a/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/TrackApplication.java +++ b/TekTrackBackEnd/Track/src/main/java/com/Tek/Track/TrackApplication.java @@ -10,4 +10,7 @@ public static void main(String[] args) { SpringApplication.run(TrackApplication.class, args); } + // JWTAuth implemented and working + // POSTMAN TESTING STARTED + } diff --git a/TekTrackBackEnd/Track/src/main/resources/application.properties b/TekTrackBackEnd/Track/src/main/resources/application.properties index d2927bbe..a7fb0ed9 100644 --- a/TekTrackBackEnd/Track/src/main/resources/application.properties +++ b/TekTrackBackEnd/Track/src/main/resources/application.properties @@ -13,3 +13,17 @@ spring.datasource.generate-unique-name=true jwt.secret=your-secret-key jwt.expiration=36000000 # expiration time is 10 hours in milliseconds + +# # Kafka broker address +# spring.kafka.bootstrap-servers=localhost:9092 + +# # Kafka consumer settings +# spring.kafka.consumer.group-id=group_id +# spring.kafka.consumer.auto-offset-reset=earliest +# spring.kafka.consumer.key-deserializer=org.apache.kafka.common.serialization.StringDeserializer +# spring.kafka.consumer.value-deserializer=org.apache.kafka.common.serialization.StringDeserializer + +# # Kafka producer settings +# spring.kafka.producer.key-serializer=org.apache.kafka.common.serialization.StringSerializer +# spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer + diff --git a/TekTrackBackEnd/Track/target/classes/application.properties b/TekTrackBackEnd/Track/target/classes/application.properties index d2927bbe..a7fb0ed9 100644 --- a/TekTrackBackEnd/Track/target/classes/application.properties +++ b/TekTrackBackEnd/Track/target/classes/application.properties @@ -13,3 +13,17 @@ spring.datasource.generate-unique-name=true jwt.secret=your-secret-key jwt.expiration=36000000 # expiration time is 10 hours in milliseconds + +# # Kafka broker address +# spring.kafka.bootstrap-servers=localhost:9092 + +# # Kafka consumer settings +# spring.kafka.consumer.group-id=group_id +# spring.kafka.consumer.auto-offset-reset=earliest +# spring.kafka.consumer.key-deserializer=org.apache.kafka.common.serialization.StringDeserializer +# spring.kafka.consumer.value-deserializer=org.apache.kafka.common.serialization.StringDeserializer + +# # Kafka producer settings +# spring.kafka.producer.key-serializer=org.apache.kafka.common.serialization.StringSerializer +# spring.kafka.producer.value-serializer=org.apache.kafka.common.serialization.StringSerializer + diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/checksums/checksums.lock b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/checksums/checksums.lock new file mode 100644 index 00000000..e906a9ab Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/checksums/checksums.lock differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class new file mode 100644 index 00000000..9d058eba Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class new file mode 100644 index 00000000..fe3af5fc Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class new file mode 100644 index 00000000..ea7497dd Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class new file mode 100644 index 00000000..8a70d525 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class new file mode 100644 index 00000000..5ece662a Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class new file mode 100644 index 00000000..aa100028 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class new file mode 100644 index 00000000..29ca6de8 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class new file mode 100644 index 00000000..019f8cee Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs.class new file mode 100644 index 00000000..330b3651 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibs.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class new file mode 100644 index 00000000..ea0c93c4 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class new file mode 100644 index 00000000..f144f59a Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class new file mode 100644 index 00000000..47d68fd3 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class new file mode 100644 index 00000000..55698e34 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class new file mode 100644 index 00000000..93636930 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class new file mode 100644 index 00000000..d6556591 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class new file mode 100644 index 00000000..780e79fd Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class new file mode 100644 index 00000000..939f000f Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class new file mode 100644 index 00000000..f4988501 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/metadata.bin b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/metadata.bin new file mode 100644 index 00000000..2b2682e8 --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/metadata.bin @@ -0,0 +1 @@ +�odjuv5o3ybgotce2imeedsxk7aB�classes' ���\j���@ ���sources=��ڻ�H�������1 \ No newline at end of file diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibs.java b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibs.java new file mode 100644 index 00000000..16b0a326 --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibs.java @@ -0,0 +1,271 @@ +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 AndroidLibraryAccessors laccForAndroidLibraryAccessors = new AndroidLibraryAccessors(owner); + private final KotlinLibraryAccessors laccForKotlinLibraryAccessors = new KotlinLibraryAccessors(owner); + private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config); + private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser); + private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config); + + @Inject + public LibrariesForLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { + super(config, providers, objects, attributesFactory, capabilityNotationParser); + } + + /** + * Dependency provider for gson with com.google.code.gson:gson coordinates and + * with version reference gson + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getGson() { + return create("gson"); + } + + /** + * Dependency provider for guava with com.google.guava:guava coordinates and + * with version reference guava + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getGuava() { + return create("guava"); + } + + /** + * Dependency provider for javapoet with com.squareup:javapoet coordinates and + * with version reference javapoet + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getJavapoet() { + return create("javapoet"); + } + + /** + * Dependency provider for junit with junit:junit coordinates and + * with version reference junit + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getJunit() { + return create("junit"); + } + + /** + * Group of libraries at android + */ + public AndroidLibraryAccessors getAndroid() { + return laccForAndroidLibraryAccessors; + } + + /** + * Group of libraries at kotlin + */ + public KotlinLibraryAccessors getKotlin() { + return laccForKotlinLibraryAccessors; + } + + /** + * Group of versions at versions + */ + public VersionAccessors getVersions() { + return vaccForVersionAccessors; + } + + /** + * Group of bundles at bundles + */ + public BundleAccessors getBundles() { + return baccForBundleAccessors; + } + + /** + * Group of plugins at plugins + */ + public PluginAccessors getPlugins() { + return paccForPluginAccessors; + } + + public static class AndroidLibraryAccessors extends SubDependencyFactory { + private final AndroidGradleLibraryAccessors laccForAndroidGradleLibraryAccessors = new AndroidGradleLibraryAccessors(owner); + + public AndroidLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at android.gradle + */ + public AndroidGradleLibraryAccessors getGradle() { + return laccForAndroidGradleLibraryAccessors; + } + + } + + public static class AndroidGradleLibraryAccessors extends SubDependencyFactory { + + public AndroidGradleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for plugin with com.android.tools.build:gradle coordinates and + * with version reference agp + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getPlugin() { + return create("android.gradle.plugin"); + } + + } + + public static class KotlinLibraryAccessors extends SubDependencyFactory { + private final KotlinGradleLibraryAccessors laccForKotlinGradleLibraryAccessors = new KotlinGradleLibraryAccessors(owner); + + public KotlinLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at kotlin.gradle + */ + public KotlinGradleLibraryAccessors getGradle() { + return laccForKotlinGradleLibraryAccessors; + } + + } + + public static class KotlinGradleLibraryAccessors extends SubDependencyFactory { + + public KotlinGradleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for plugin with org.jetbrains.kotlin:kotlin-gradle-plugin coordinates and + * with version reference kotlin + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getPlugin() { + return create("kotlin.gradle.plugin"); + } + + } + + public static class VersionAccessors extends VersionFactory { + + public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias agp with value 8.2.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAgp() { return getVersion("agp"); } + + /** + * Version alias gson with value 2.8.9 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGson() { return getVersion("gson"); } + + /** + * Version alias guava with value 31.0.1-jre + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGuava() { return getVersion("guava"); } + + /** + * Version alias javapoet with value 1.13.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJavapoet() { return getVersion("javapoet"); } + + /** + * Version alias junit with value 4.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJunit() { return getVersion("junit"); } + + /** + * Version alias kotlin with value 1.9.22 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getKotlin() { return getVersion("kotlin"); } + + } + + 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 KotlinPluginAccessors paccForKotlinPluginAccessors = new KotlinPluginAccessors(providers, config); + + public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of plugins at plugins.kotlin + */ + public KotlinPluginAccessors getKotlin() { + return paccForKotlinPluginAccessors; + } + + } + + public static class KotlinPluginAccessors extends PluginFactory { + + public KotlinPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for kotlin.jvm with plugin id org.jetbrains.kotlin.jvm and + * with version reference kotlin + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getJvm() { return createPlugin("kotlin.jvm"); } + + } + +} diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java new file mode 100644 index 00000000..4a2dbacc --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/423f0288fa7dffe069445ffa4b72952b4629a15a/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java @@ -0,0 +1,335 @@ +package org.gradle.accessors.dm; + +import org.gradle.api.NonNullApi; +import org.gradle.api.artifacts.MinimalExternalModuleDependency; +import org.gradle.plugin.use.PluginDependency; +import org.gradle.api.artifacts.ExternalModuleDependencyBundle; +import org.gradle.api.artifacts.MutableVersionConstraint; +import org.gradle.api.provider.Provider; +import org.gradle.api.model.ObjectFactory; +import org.gradle.api.provider.ProviderFactory; +import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory; +import org.gradle.api.internal.catalog.DefaultVersionCatalog; +import java.util.Map; +import org.gradle.api.internal.attributes.ImmutableAttributesFactory; +import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser; +import javax.inject.Inject; + +/** + * A catalog of dependencies accessible via the {@code libs} extension. + */ +@NonNullApi +public class LibrariesForLibsInPluginsBlock extends AbstractExternalDependencyFactory { + + private final AbstractExternalDependencyFactory owner = this; + private final AndroidLibraryAccessors laccForAndroidLibraryAccessors = new AndroidLibraryAccessors(owner); + private final KotlinLibraryAccessors laccForKotlinLibraryAccessors = new KotlinLibraryAccessors(owner); + private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config); + private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser); + private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config); + + @Inject + public LibrariesForLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { + super(config, providers, objects, attributesFactory, capabilityNotationParser); + } + + /** + * Dependency provider for gson with com.google.code.gson:gson coordinates and + * with version reference gson + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getGson() { + 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("gson"); + } + + /** + * Dependency provider for guava with com.google.guava:guava coordinates and + * with version reference guava + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getGuava() { + 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("guava"); + } + + /** + * Dependency provider for javapoet with com.squareup:javapoet coordinates and + * with version reference javapoet + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getJavapoet() { + 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("javapoet"); + } + + /** + * Dependency provider for junit with junit:junit coordinates and + * with version reference junit + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider 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"); + } + + /** + * Group of libraries at android + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public AndroidLibraryAccessors getAndroid() { + 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 laccForAndroidLibraryAccessors; + } + + /** + * Group of libraries at kotlin + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public KotlinLibraryAccessors getKotlin() { + 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 laccForKotlinLibraryAccessors; + } + + /** + * Group of versions at versions + */ + public VersionAccessors getVersions() { + return vaccForVersionAccessors; + } + + /** + * 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; + } + + /** + * Group of plugins at plugins + */ + public PluginAccessors getPlugins() { + return paccForPluginAccessors; + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class AndroidLibraryAccessors extends SubDependencyFactory { + private final AndroidGradleLibraryAccessors laccForAndroidGradleLibraryAccessors = new AndroidGradleLibraryAccessors(owner); + + public AndroidLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at android.gradle + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public AndroidGradleLibraryAccessors getGradle() { + 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 laccForAndroidGradleLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class AndroidGradleLibraryAccessors extends SubDependencyFactory { + + public AndroidGradleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for plugin with com.android.tools.build:gradle coordinates and + * with version reference agp + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getPlugin() { + 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("android.gradle.plugin"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class KotlinLibraryAccessors extends SubDependencyFactory { + private final KotlinGradleLibraryAccessors laccForKotlinGradleLibraryAccessors = new KotlinGradleLibraryAccessors(owner); + + public KotlinLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at kotlin.gradle + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public KotlinGradleLibraryAccessors getGradle() { + 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 laccForKotlinGradleLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class KotlinGradleLibraryAccessors extends SubDependencyFactory { + + public KotlinGradleLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for plugin with org.jetbrains.kotlin:kotlin-gradle-plugin coordinates and + * with version reference kotlin + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getPlugin() { + 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("kotlin.gradle.plugin"); + } + + } + + public static class VersionAccessors extends VersionFactory { + + public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias agp with value 8.2.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAgp() { return getVersion("agp"); } + + /** + * Version alias gson with value 2.8.9 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGson() { return getVersion("gson"); } + + /** + * Version alias guava with value 31.0.1-jre + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGuava() { return getVersion("guava"); } + + /** + * Version alias javapoet with value 1.13.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJavapoet() { return getVersion("javapoet"); } + + /** + * Version alias junit with value 4.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJunit() { return getVersion("junit"); } + + /** + * Version alias kotlin with value 1.9.22 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getKotlin() { return getVersion("kotlin"); } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class BundleAccessors extends BundleFactory { + + public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); } + + } + + public static class PluginAccessors extends PluginFactory { + private final KotlinPluginAccessors paccForKotlinPluginAccessors = new KotlinPluginAccessors(providers, config); + + public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of plugins at plugins.kotlin + */ + public KotlinPluginAccessors getKotlin() { + return paccForKotlinPluginAccessors; + } + + } + + public static class KotlinPluginAccessors extends PluginFactory { + + public KotlinPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for kotlin.jvm with plugin id org.jetbrains.kotlin.jvm and + * with version reference kotlin + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getJvm() { return createPlugin("kotlin.jvm"); } + + } + +} diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class new file mode 100644 index 00000000..2c535a6a Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class new file mode 100644 index 00000000..8d408bbb Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class new file mode 100644 index 00000000..387af7f5 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class new file mode 100644 index 00000000..84a8b099 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class new file mode 100644 index 00000000..e51b5be0 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class new file mode 100644 index 00000000..40dec8a5 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class new file mode 100644 index 00000000..90aa782f Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class new file mode 100644 index 00000000..2f9ca8bd Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class new file mode 100644 index 00000000..740315b6 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class new file mode 100644 index 00000000..a8167632 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class new file mode 100644 index 00000000..b740760e Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class new file mode 100644 index 00000000..7913b8a7 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class new file mode 100644 index 00000000..57324aa9 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class new file mode 100644 index 00000000..f65ac2d8 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class new file mode 100644 index 00000000..ec1feecb Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class new file mode 100644 index 00000000..e8e94ff8 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class new file mode 100644 index 00000000..07973aaa Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class new file mode 100644 index 00000000..92a80c23 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class new file mode 100644 index 00000000..56f3c342 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class new file mode 100644 index 00000000..914115ae Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class new file mode 100644 index 00000000..f60b5af9 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class new file mode 100644 index 00000000..4a7f9b37 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class new file mode 100644 index 00000000..41fb2ca2 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class new file mode 100644 index 00000000..8bdb45f6 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class new file mode 100644 index 00000000..6b6a264b Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class new file mode 100644 index 00000000..0cecc9ea Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class new file mode 100644 index 00000000..a1fc0d43 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class new file mode 100644 index 00000000..94855f1b Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class new file mode 100644 index 00000000..e8bde313 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class new file mode 100644 index 00000000..e4de5976 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class new file mode 100644 index 00000000..1164e1cc Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class new file mode 100644 index 00000000..b5165202 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class new file mode 100644 index 00000000..d1e43a88 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class new file mode 100644 index 00000000..25397b16 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class new file mode 100644 index 00000000..7090fe77 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class new file mode 100644 index 00000000..b72fb6f1 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class new file mode 100644 index 00000000..16a6e1ef Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class new file mode 100644 index 00000000..20f5abfc Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class new file mode 100644 index 00000000..8665bb8a Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class new file mode 100644 index 00000000..3831505b Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class new file mode 100644 index 00000000..50a94fa4 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class new file mode 100644 index 00000000..ca95b9ae Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class new file mode 100644 index 00000000..8cdfbf49 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class new file mode 100644 index 00000000..6a05d21c Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class new file mode 100644 index 00000000..4195d144 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class new file mode 100644 index 00000000..c241ca11 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class new file mode 100644 index 00000000..686e1839 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class new file mode 100644 index 00000000..1fcbd8f9 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class new file mode 100644 index 00000000..c558409e Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class new file mode 100644 index 00000000..1b19d996 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class new file mode 100644 index 00000000..673ad3e2 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class new file mode 100644 index 00000000..9421f7ea Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class new file mode 100644 index 00000000..a3aba679 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class new file mode 100644 index 00000000..6814ecf6 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class new file mode 100644 index 00000000..c90e9204 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class new file mode 100644 index 00000000..866325b3 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class new file mode 100644 index 00000000..c1393227 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class new file mode 100644 index 00000000..975894d3 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class new file mode 100644 index 00000000..55072d26 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class new file mode 100644 index 00000000..d5b1f72f Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin new file mode 100644 index 00000000..414cff86 --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin @@ -0,0 +1 @@ +�odjuv5o3ybgotce2imeedsxk7a��classes�j.n�MşgJU�,?�sources��j��Y��ه�:�` \ No newline at end of file diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java new file mode 100644 index 00000000..8b3c9b4b --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java @@ -0,0 +1,1125 @@ +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 reactAndroidLibs} extension. + */ +@NonNullApi +public class LibrariesForReactAndroidLibs extends AbstractExternalDependencyFactory { + + private final AbstractExternalDependencyFactory owner = this; + private final AndroidxLibraryAccessors laccForAndroidxLibraryAccessors = new AndroidxLibraryAccessors(owner); + private final FrescoLibraryAccessors laccForFrescoLibraryAccessors = new FrescoLibraryAccessors(owner); + private final InferLibraryAccessors laccForInferLibraryAccessors = new InferLibraryAccessors(owner); + private final JavaxLibraryAccessors laccForJavaxLibraryAccessors = new JavaxLibraryAccessors(owner); + private final Okhttp3LibraryAccessors laccForOkhttp3LibraryAccessors = new Okhttp3LibraryAccessors(owner); + private final YogaLibraryAccessors laccForYogaLibraryAccessors = new YogaLibraryAccessors(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 LibrariesForReactAndroidLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { + super(config, providers, objects, attributesFactory, capabilityNotationParser); + } + + /** + * Dependency provider for assertj with org.assertj:assertj-core coordinates and + * with version reference assertj + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getAssertj() { + return create("assertj"); + } + + /** + * Dependency provider for fbjni with com.facebook.fbjni:fbjni coordinates and + * with version reference fbjni + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getFbjni() { + return create("fbjni"); + } + + /** + * Dependency provider for jsr305 with com.google.code.findbugs:jsr305 coordinates and + * with version reference jsr305 + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getJsr305() { + return create("jsr305"); + } + + /** + * Dependency provider for junit with junit:junit coordinates and + * with version reference junit + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getJunit() { + return create("junit"); + } + + /** + * Dependency provider for mockito with org.mockito:mockito-inline coordinates and + * with version reference mockito + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getMockito() { + return create("mockito"); + } + + /** + * Dependency provider for okio with com.squareup.okio:okio coordinates and + * with version reference okio + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getOkio() { + return create("okio"); + } + + /** + * Dependency provider for robolectric with org.robolectric:robolectric coordinates and + * with version reference robolectric + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getRobolectric() { + return create("robolectric"); + } + + /** + * Dependency provider for soloader with com.facebook.soloader:soloader coordinates and + * with version reference soloader + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getSoloader() { + return create("soloader"); + } + + /** + * Dependency provider for thoughtworks with com.thoughtworks.xstream:xstream coordinates and + * with version reference xstream + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getThoughtworks() { + return create("thoughtworks"); + } + + /** + * Group of libraries at androidx + */ + public AndroidxLibraryAccessors getAndroidx() { + return laccForAndroidxLibraryAccessors; + } + + /** + * Group of libraries at fresco + */ + public FrescoLibraryAccessors getFresco() { + return laccForFrescoLibraryAccessors; + } + + /** + * Group of libraries at infer + */ + public InferLibraryAccessors getInfer() { + return laccForInferLibraryAccessors; + } + + /** + * Group of libraries at javax + */ + public JavaxLibraryAccessors getJavax() { + return laccForJavaxLibraryAccessors; + } + + /** + * Group of libraries at okhttp3 + */ + public Okhttp3LibraryAccessors getOkhttp3() { + return laccForOkhttp3LibraryAccessors; + } + + /** + * Group of libraries at yoga + */ + public YogaLibraryAccessors getYoga() { + return laccForYogaLibraryAccessors; + } + + /** + * Group of versions at versions + */ + public VersionAccessors getVersions() { + return vaccForVersionAccessors; + } + + /** + * Group of bundles at bundles + */ + public BundleAccessors getBundles() { + return baccForBundleAccessors; + } + + /** + * Group of plugins at plugins + */ + public PluginAccessors getPlugins() { + return paccForPluginAccessors; + } + + public static class AndroidxLibraryAccessors extends SubDependencyFactory { + private final AndroidxAppcompatLibraryAccessors laccForAndroidxAppcompatLibraryAccessors = new AndroidxAppcompatLibraryAccessors(owner); + private final AndroidxTestLibraryAccessors laccForAndroidxTestLibraryAccessors = new AndroidxTestLibraryAccessors(owner); + + public AndroidxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotation with androidx.annotation:annotation coordinates and + * with version reference androidx.annotation + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { + return create("androidx.annotation"); + } + + /** + * Dependency provider for autofill with androidx.autofill:autofill coordinates and + * with version reference androidx.autofill + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getAutofill() { + return create("androidx.autofill"); + } + + /** + * Dependency provider for swiperefreshlayout with androidx.swiperefreshlayout:swiperefreshlayout coordinates and + * with version reference androidx.swiperefreshlayout + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getSwiperefreshlayout() { + return create("androidx.swiperefreshlayout"); + } + + /** + * Dependency provider for tracing with androidx.tracing:tracing coordinates and + * with version reference androidx.tracing + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getTracing() { + return create("androidx.tracing"); + } + + /** + * Group of libraries at androidx.appcompat + */ + public AndroidxAppcompatLibraryAccessors getAppcompat() { + return laccForAndroidxAppcompatLibraryAccessors; + } + + /** + * Group of libraries at androidx.test + */ + public AndroidxTestLibraryAccessors getTest() { + return laccForAndroidxTestLibraryAccessors; + } + + } + + public static class AndroidxAppcompatLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + + public AndroidxAppcompatLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for appcompat with androidx.appcompat:appcompat coordinates and + * with version reference androidx.appcompat + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider asProvider() { + return create("androidx.appcompat"); + } + + /** + * Dependency provider for resources with androidx.appcompat:appcompat-resources coordinates and + * with version reference androidx.appcompat + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getResources() { + return create("androidx.appcompat.resources"); + } + + } + + public static class AndroidxTestLibraryAccessors extends SubDependencyFactory { + + public AndroidxTestLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for rules with androidx.test:rules coordinates and + * with version reference androidx.test + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getRules() { + return create("androidx.test.rules"); + } + + /** + * Dependency provider for runner with androidx.test:runner coordinates and + * with version reference androidx.test + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getRunner() { + return create("androidx.test.runner"); + } + + } + + public static class FrescoLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + private final FrescoImagepipelineLibraryAccessors laccForFrescoImagepipelineLibraryAccessors = new FrescoImagepipelineLibraryAccessors(owner); + private final FrescoUiLibraryAccessors laccForFrescoUiLibraryAccessors = new FrescoUiLibraryAccessors(owner); + + public FrescoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for fresco with com.facebook.fresco:fresco coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider asProvider() { + return create("fresco"); + } + + /** + * Dependency provider for middleware with com.facebook.fresco:middleware coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getMiddleware() { + return create("fresco.middleware"); + } + + /** + * Group of libraries at fresco.imagepipeline + */ + public FrescoImagepipelineLibraryAccessors getImagepipeline() { + return laccForFrescoImagepipelineLibraryAccessors; + } + + /** + * Group of libraries at fresco.ui + */ + public FrescoUiLibraryAccessors getUi() { + return laccForFrescoUiLibraryAccessors; + } + + } + + public static class FrescoImagepipelineLibraryAccessors extends SubDependencyFactory { + + public FrescoImagepipelineLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for okhttp3 with com.facebook.fresco:imagepipeline-okhttp3 coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getOkhttp3() { + return create("fresco.imagepipeline.okhttp3"); + } + + } + + public static class FrescoUiLibraryAccessors extends SubDependencyFactory { + + public FrescoUiLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for common with com.facebook.fresco:ui-common coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getCommon() { + return create("fresco.ui.common"); + } + + } + + public static class InferLibraryAccessors extends SubDependencyFactory { + + public InferLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotation with com.facebook.infer.annotation:infer-annotation coordinates and + * with version reference infer.annotation + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { + return create("infer.annotation"); + } + + } + + public static class JavaxLibraryAccessors extends SubDependencyFactory { + private final JavaxAnnotationLibraryAccessors laccForJavaxAnnotationLibraryAccessors = new JavaxAnnotationLibraryAccessors(owner); + + public JavaxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for inject with javax.inject:javax.inject coordinates and + * with version reference javax.inject + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getInject() { + return create("javax.inject"); + } + + /** + * Group of libraries at javax.annotation + */ + public JavaxAnnotationLibraryAccessors getAnnotation() { + return laccForJavaxAnnotationLibraryAccessors; + } + + } + + public static class JavaxAnnotationLibraryAccessors extends SubDependencyFactory { + + public JavaxAnnotationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for api with javax.annotation:javax.annotation-api coordinates and + * with version reference javax.annotation.api + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getApi() { + return create("javax.annotation.api"); + } + + } + + public static class Okhttp3LibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + + public Okhttp3LibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for okhttp3 with com.squareup.okhttp3:okhttp coordinates and + * with version reference okhttp + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider asProvider() { + return create("okhttp3"); + } + + /** + * Dependency provider for urlconnection with com.squareup.okhttp3:okhttp-urlconnection coordinates and + * with version reference okhttp + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getUrlconnection() { + return create("okhttp3.urlconnection"); + } + + } + + public static class YogaLibraryAccessors extends SubDependencyFactory { + private final YogaProguardLibraryAccessors laccForYogaProguardLibraryAccessors = new YogaProguardLibraryAccessors(owner); + + public YogaLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at yoga.proguard + */ + public YogaProguardLibraryAccessors getProguard() { + return laccForYogaProguardLibraryAccessors; + } + + } + + public static class YogaProguardLibraryAccessors extends SubDependencyFactory { + + public YogaProguardLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotations with com.facebook.yoga:proguard-annotations coordinates and + * with version reference yoga.proguard.annotations + *

+ * This dependency was declared in catalog libs.versions.toml + */ + public Provider getAnnotations() { + return create("yoga.proguard.annotations"); + } + + } + + public static class VersionAccessors extends VersionFactory { + + private final AndroidxVersionAccessors vaccForAndroidxVersionAccessors = new AndroidxVersionAccessors(providers, config); + private final BinaryVersionAccessors vaccForBinaryVersionAccessors = new BinaryVersionAccessors(providers, config); + private final InferVersionAccessors vaccForInferVersionAccessors = new InferVersionAccessors(providers, config); + private final JavaxVersionAccessors vaccForJavaxVersionAccessors = new JavaxVersionAccessors(providers, config); + private final NexusVersionAccessors vaccForNexusVersionAccessors = new NexusVersionAccessors(providers, config); + private final YogaVersionAccessors vaccForYogaVersionAccessors = new YogaVersionAccessors(providers, config); + public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias agp with value 8.2.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAgp() { return getVersion("agp"); } + + /** + * Version alias assertj with value 3.21.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAssertj() { return getVersion("assertj"); } + + /** + * Version alias boost with value 1_83_0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getBoost() { return getVersion("boost"); } + + /** + * Version alias buildTools with value 34.0.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getBuildTools() { return getVersion("buildTools"); } + + /** + * Version alias compileSdk with value 34 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getCompileSdk() { return getVersion("compileSdk"); } + + /** + * Version alias doubleconversion with value 1.1.6 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getDoubleconversion() { return getVersion("doubleconversion"); } + + /** + * Version alias download with value 5.4.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getDownload() { return getVersion("download"); } + + /** + * Version alias fbjni with value 0.6.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFbjni() { return getVersion("fbjni"); } + + /** + * Version alias fmt with value 9.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFmt() { return getVersion("fmt"); } + + /** + * Version alias folly with value 2024.01.01.00 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFolly() { return getVersion("folly"); } + + /** + * Version alias fresco with value 3.1.3 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFresco() { return getVersion("fresco"); } + + /** + * Version alias glog with value 0.3.5 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGlog() { return getVersion("glog"); } + + /** + * Version alias gtest with value 1.12.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGtest() { return getVersion("gtest"); } + + /** + * Version alias jsr305 with value 3.0.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJsr305() { return getVersion("jsr305"); } + + /** + * Version alias junit with value 4.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJunit() { return getVersion("junit"); } + + /** + * Version alias kotlin with value 1.9.22 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getKotlin() { return getVersion("kotlin"); } + + /** + * Version alias minSdk with value 23 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getMinSdk() { return getVersion("minSdk"); } + + /** + * Version alias mockito with value 3.12.4 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getMockito() { return getVersion("mockito"); } + + /** + * Version alias ndkVersion with value 26.1.10909125 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getNdkVersion() { return getVersion("ndkVersion"); } + + /** + * Version alias okhttp with value 4.9.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getOkhttp() { return getVersion("okhttp"); } + + /** + * Version alias okio with value 2.9.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getOkio() { return getVersion("okio"); } + + /** + * Version alias robolectric with value 4.9.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getRobolectric() { return getVersion("robolectric"); } + + /** + * Version alias soloader with value 0.10.5 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getSoloader() { return getVersion("soloader"); } + + /** + * Version alias targetSdk with value 34 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTargetSdk() { return getVersion("targetSdk"); } + + /** + * Version alias xstream with value 1.4.20 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getXstream() { return getVersion("xstream"); } + + /** + * Group of versions at versions.androidx + */ + public AndroidxVersionAccessors getAndroidx() { + return vaccForAndroidxVersionAccessors; + } + + /** + * Group of versions at versions.binary + */ + public BinaryVersionAccessors getBinary() { + return vaccForBinaryVersionAccessors; + } + + /** + * Group of versions at versions.infer + */ + public InferVersionAccessors getInfer() { + return vaccForInferVersionAccessors; + } + + /** + * Group of versions at versions.javax + */ + public JavaxVersionAccessors getJavax() { + return vaccForJavaxVersionAccessors; + } + + /** + * Group of versions at versions.nexus + */ + public NexusVersionAccessors getNexus() { + return vaccForNexusVersionAccessors; + } + + /** + * Group of versions at versions.yoga + */ + public YogaVersionAccessors getYoga() { + return vaccForYogaVersionAccessors; + } + + } + + public static class AndroidxVersionAccessors extends VersionFactory { + + public AndroidxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias androidx.annotation with value 1.6.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { return getVersion("androidx.annotation"); } + + /** + * Version alias androidx.appcompat with value 1.6.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAppcompat() { return getVersion("androidx.appcompat"); } + + /** + * Version alias androidx.autofill with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAutofill() { return getVersion("androidx.autofill"); } + + /** + * Version alias androidx.swiperefreshlayout with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getSwiperefreshlayout() { return getVersion("androidx.swiperefreshlayout"); } + + /** + * Version alias androidx.test with value 1.5.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTest() { return getVersion("androidx.test"); } + + /** + * Version alias androidx.tracing with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTracing() { return getVersion("androidx.tracing"); } + + } + + public static class BinaryVersionAccessors extends VersionFactory { + + private final BinaryCompatibilityVersionAccessors vaccForBinaryCompatibilityVersionAccessors = new BinaryCompatibilityVersionAccessors(providers, config); + public BinaryVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of versions at versions.binary.compatibility + */ + public BinaryCompatibilityVersionAccessors getCompatibility() { + return vaccForBinaryCompatibilityVersionAccessors; + } + + } + + public static class BinaryCompatibilityVersionAccessors extends VersionFactory { + + public BinaryCompatibilityVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias binary.compatibility.validator with value 0.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getValidator() { return getVersion("binary.compatibility.validator"); } + + } + + public static class InferVersionAccessors extends VersionFactory { + + public InferVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias infer.annotation with value 0.18.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { return getVersion("infer.annotation"); } + + } + + public static class JavaxVersionAccessors extends VersionFactory { + + private final JavaxAnnotationVersionAccessors vaccForJavaxAnnotationVersionAccessors = new JavaxAnnotationVersionAccessors(providers, config); + public JavaxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias javax.inject with value 1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getInject() { return getVersion("javax.inject"); } + + /** + * Group of versions at versions.javax.annotation + */ + public JavaxAnnotationVersionAccessors getAnnotation() { + return vaccForJavaxAnnotationVersionAccessors; + } + + } + + public static class JavaxAnnotationVersionAccessors extends VersionFactory { + + public JavaxAnnotationVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias javax.annotation.api with value 1.3.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getApi() { return getVersion("javax.annotation.api"); } + + } + + public static class NexusVersionAccessors extends VersionFactory { + + public NexusVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias nexus.publish with value 1.3.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getPublish() { return getVersion("nexus.publish"); } + + } + + public static class YogaVersionAccessors extends VersionFactory { + + private final YogaProguardVersionAccessors vaccForYogaProguardVersionAccessors = new YogaProguardVersionAccessors(providers, config); + public YogaVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of versions at versions.yoga.proguard + */ + public YogaProguardVersionAccessors getProguard() { + return vaccForYogaProguardVersionAccessors; + } + + } + + public static class YogaProguardVersionAccessors extends VersionFactory { + + public YogaProguardVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias yoga.proguard.annotations with value 1.19.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotations() { return getVersion("yoga.proguard.annotations"); } + + } + + 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 BinaryPluginAccessors paccForBinaryPluginAccessors = new BinaryPluginAccessors(providers, config); + private final KotlinPluginAccessors paccForKotlinPluginAccessors = new KotlinPluginAccessors(providers, config); + private final NexusPluginAccessors paccForNexusPluginAccessors = new NexusPluginAccessors(providers, config); + + public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for download with plugin id de.undercouch.download and + * with version reference download + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getDownload() { return createPlugin("download"); } + + /** + * Group of plugins at plugins.android + */ + public AndroidPluginAccessors getAndroid() { + return paccForAndroidPluginAccessors; + } + + /** + * Group of plugins at plugins.binary + */ + public BinaryPluginAccessors getBinary() { + return paccForBinaryPluginAccessors; + } + + /** + * Group of plugins at plugins.kotlin + */ + public KotlinPluginAccessors getKotlin() { + return paccForKotlinPluginAccessors; + } + + /** + * Group of plugins at plugins.nexus + */ + public NexusPluginAccessors getNexus() { + return paccForNexusPluginAccessors; + } + + } + + public static class AndroidPluginAccessors extends PluginFactory { + + public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for android.application with plugin id com.android.application and + * with version reference agp + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getApplication() { return createPlugin("android.application"); } + + /** + * Plugin provider for android.library with plugin id com.android.library and + * with version reference agp + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getLibrary() { return createPlugin("android.library"); } + + } + + public static class BinaryPluginAccessors extends PluginFactory { + private final BinaryCompatibilityPluginAccessors paccForBinaryCompatibilityPluginAccessors = new BinaryCompatibilityPluginAccessors(providers, config); + + public BinaryPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of plugins at plugins.binary.compatibility + */ + public BinaryCompatibilityPluginAccessors getCompatibility() { + return paccForBinaryCompatibilityPluginAccessors; + } + + } + + public static class BinaryCompatibilityPluginAccessors extends PluginFactory { + + public BinaryCompatibilityPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for binary.compatibility.validator with plugin id org.jetbrains.kotlinx.binary-compatibility-validator and + * with version reference binary.compatibility.validator + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getValidator() { return createPlugin("binary.compatibility.validator"); } + + } + + public static class KotlinPluginAccessors extends PluginFactory { + + public KotlinPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for kotlin.android with plugin id org.jetbrains.kotlin.android and + * with version reference kotlin + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getAndroid() { return createPlugin("kotlin.android"); } + + } + + public static class NexusPluginAccessors extends PluginFactory { + + public NexusPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for nexus.publish with plugin id io.github.gradle-nexus.publish-plugin and + * with version reference nexus.publish + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getPublish() { return createPlugin("nexus.publish"); } + + } + +} diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java new file mode 100644 index 00000000..9a96a0f8 --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java @@ -0,0 +1,1337 @@ +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 reactAndroidLibs} extension. + */ +@NonNullApi +public class LibrariesForReactAndroidLibsInPluginsBlock extends AbstractExternalDependencyFactory { + + private final AbstractExternalDependencyFactory owner = this; + private final AndroidxLibraryAccessors laccForAndroidxLibraryAccessors = new AndroidxLibraryAccessors(owner); + private final FrescoLibraryAccessors laccForFrescoLibraryAccessors = new FrescoLibraryAccessors(owner); + private final InferLibraryAccessors laccForInferLibraryAccessors = new InferLibraryAccessors(owner); + private final JavaxLibraryAccessors laccForJavaxLibraryAccessors = new JavaxLibraryAccessors(owner); + private final Okhttp3LibraryAccessors laccForOkhttp3LibraryAccessors = new Okhttp3LibraryAccessors(owner); + private final YogaLibraryAccessors laccForYogaLibraryAccessors = new YogaLibraryAccessors(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 LibrariesForReactAndroidLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { + super(config, providers, objects, attributesFactory, capabilityNotationParser); + } + + /** + * Dependency provider for assertj with org.assertj:assertj-core coordinates and + * with version reference assertj + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getAssertj() { + 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("assertj"); + } + + /** + * Dependency provider for fbjni with com.facebook.fbjni:fbjni coordinates and + * with version reference fbjni + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getFbjni() { + 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("fbjni"); + } + + /** + * Dependency provider for jsr305 with com.google.code.findbugs:jsr305 coordinates and + * with version reference jsr305 + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getJsr305() { + 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("jsr305"); + } + + /** + * Dependency provider for junit with junit:junit coordinates and + * with version reference junit + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getJunit() { + org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser(); + return create("junit"); + } + + /** + * Dependency provider for mockito with org.mockito:mockito-inline coordinates and + * with version reference mockito + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getMockito() { + 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("mockito"); + } + + /** + * Dependency provider for okio with com.squareup.okio:okio coordinates and + * with version reference okio + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getOkio() { + 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("okio"); + } + + /** + * Dependency provider for robolectric with org.robolectric:robolectric coordinates and + * with version reference robolectric + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getRobolectric() { + 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("robolectric"); + } + + /** + * Dependency provider for soloader with com.facebook.soloader:soloader coordinates and + * with version reference soloader + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getSoloader() { + 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("soloader"); + } + + /** + * Dependency provider for thoughtworks with com.thoughtworks.xstream:xstream coordinates and + * with version reference xstream + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getThoughtworks() { + 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("thoughtworks"); + } + + /** + * Group of libraries at androidx + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public AndroidxLibraryAccessors getAndroidx() { + 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 laccForAndroidxLibraryAccessors; + } + + /** + * Group of libraries at fresco + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public FrescoLibraryAccessors getFresco() { + 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 laccForFrescoLibraryAccessors; + } + + /** + * Group of libraries at infer + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public InferLibraryAccessors getInfer() { + 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 laccForInferLibraryAccessors; + } + + /** + * Group of libraries at javax + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public JavaxLibraryAccessors getJavax() { + 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 laccForJavaxLibraryAccessors; + } + + /** + * Group of libraries at okhttp3 + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Okhttp3LibraryAccessors getOkhttp3() { + 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 laccForOkhttp3LibraryAccessors; + } + + /** + * Group of libraries at yoga + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public YogaLibraryAccessors getYoga() { + 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 laccForYogaLibraryAccessors; + } + + /** + * Group of versions at versions + */ + public VersionAccessors getVersions() { + return vaccForVersionAccessors; + } + + /** + * 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; + } + + /** + * Group of plugins at plugins + */ + public PluginAccessors getPlugins() { + return paccForPluginAccessors; + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class AndroidxLibraryAccessors extends SubDependencyFactory { + private final AndroidxAppcompatLibraryAccessors laccForAndroidxAppcompatLibraryAccessors = new AndroidxAppcompatLibraryAccessors(owner); + private final AndroidxTestLibraryAccessors laccForAndroidxTestLibraryAccessors = new AndroidxTestLibraryAccessors(owner); + + public AndroidxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotation with androidx.annotation:annotation coordinates and + * with version reference androidx.annotation + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getAnnotation() { + 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("androidx.annotation"); + } + + /** + * Dependency provider for autofill with androidx.autofill:autofill coordinates and + * with version reference androidx.autofill + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getAutofill() { + 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("androidx.autofill"); + } + + /** + * Dependency provider for swiperefreshlayout with androidx.swiperefreshlayout:swiperefreshlayout coordinates and + * with version reference androidx.swiperefreshlayout + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getSwiperefreshlayout() { + 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("androidx.swiperefreshlayout"); + } + + /** + * Dependency provider for tracing with androidx.tracing:tracing coordinates and + * with version reference androidx.tracing + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getTracing() { + 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("androidx.tracing"); + } + + /** + * Group of libraries at androidx.appcompat + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public AndroidxAppcompatLibraryAccessors 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 laccForAndroidxAppcompatLibraryAccessors; + } + + /** + * Group of libraries at androidx.test + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public AndroidxTestLibraryAccessors getTest() { + 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 laccForAndroidxTestLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class AndroidxAppcompatLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + + public AndroidxAppcompatLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for appcompat with androidx.appcompat:appcompat coordinates and + * with version reference androidx.appcompat + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider asProvider() { + 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("androidx.appcompat"); + } + + /** + * Dependency provider for resources with androidx.appcompat:appcompat-resources coordinates and + * with version reference androidx.appcompat + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getResources() { + 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("androidx.appcompat.resources"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class AndroidxTestLibraryAccessors extends SubDependencyFactory { + + public AndroidxTestLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for rules with androidx.test:rules coordinates and + * with version reference androidx.test + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getRules() { + 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("androidx.test.rules"); + } + + /** + * Dependency provider for runner with androidx.test:runner coordinates and + * with version reference androidx.test + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getRunner() { + 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("androidx.test.runner"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class FrescoLibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + private final FrescoImagepipelineLibraryAccessors laccForFrescoImagepipelineLibraryAccessors = new FrescoImagepipelineLibraryAccessors(owner); + private final FrescoUiLibraryAccessors laccForFrescoUiLibraryAccessors = new FrescoUiLibraryAccessors(owner); + + public FrescoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for fresco with com.facebook.fresco:fresco coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider asProvider() { + 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("fresco"); + } + + /** + * Dependency provider for middleware with com.facebook.fresco:middleware coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getMiddleware() { + 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("fresco.middleware"); + } + + /** + * Group of libraries at fresco.imagepipeline + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public FrescoImagepipelineLibraryAccessors getImagepipeline() { + 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 laccForFrescoImagepipelineLibraryAccessors; + } + + /** + * Group of libraries at fresco.ui + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public FrescoUiLibraryAccessors getUi() { + org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser(); + return laccForFrescoUiLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class FrescoImagepipelineLibraryAccessors extends SubDependencyFactory { + + public FrescoImagepipelineLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for okhttp3 with com.facebook.fresco:imagepipeline-okhttp3 coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getOkhttp3() { + 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("fresco.imagepipeline.okhttp3"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class FrescoUiLibraryAccessors extends SubDependencyFactory { + + public FrescoUiLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for common with com.facebook.fresco:ui-common coordinates and + * with version reference fresco + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getCommon() { + 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("fresco.ui.common"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class InferLibraryAccessors extends SubDependencyFactory { + + public InferLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotation with com.facebook.infer.annotation:infer-annotation coordinates and + * with version reference infer.annotation + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getAnnotation() { + 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("infer.annotation"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class JavaxLibraryAccessors extends SubDependencyFactory { + private final JavaxAnnotationLibraryAccessors laccForJavaxAnnotationLibraryAccessors = new JavaxAnnotationLibraryAccessors(owner); + + public JavaxLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for inject with javax.inject:javax.inject coordinates and + * with version reference javax.inject + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getInject() { + 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("javax.inject"); + } + + /** + * Group of libraries at javax.annotation + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public JavaxAnnotationLibraryAccessors getAnnotation() { + 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 laccForJavaxAnnotationLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class JavaxAnnotationLibraryAccessors extends SubDependencyFactory { + + public JavaxAnnotationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for api with javax.annotation:javax.annotation-api coordinates and + * with version reference javax.annotation.api + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getApi() { + 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("javax.annotation.api"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class Okhttp3LibraryAccessors extends SubDependencyFactory implements DependencyNotationSupplier { + + public Okhttp3LibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for okhttp3 with com.squareup.okhttp3:okhttp coordinates and + * with version reference okhttp + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider asProvider() { + 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("okhttp3"); + } + + /** + * Dependency provider for urlconnection with com.squareup.okhttp3:okhttp-urlconnection coordinates and + * with version reference okhttp + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getUrlconnection() { + 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("okhttp3.urlconnection"); + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class YogaLibraryAccessors extends SubDependencyFactory { + private final YogaProguardLibraryAccessors laccForYogaProguardLibraryAccessors = new YogaProguardLibraryAccessors(owner); + + public YogaLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Group of libraries at yoga.proguard + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public YogaProguardLibraryAccessors getProguard() { + 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 laccForYogaProguardLibraryAccessors; + } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class YogaProguardLibraryAccessors extends SubDependencyFactory { + + public YogaProguardLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); } + + /** + * Dependency provider for annotations with com.facebook.yoga:proguard-annotations coordinates and + * with version reference yoga.proguard.annotations + *

+ * This dependency was declared in catalog libs.versions.toml + * + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public Provider getAnnotations() { + 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("yoga.proguard.annotations"); + } + + } + + public static class VersionAccessors extends VersionFactory { + + private final AndroidxVersionAccessors vaccForAndroidxVersionAccessors = new AndroidxVersionAccessors(providers, config); + private final BinaryVersionAccessors vaccForBinaryVersionAccessors = new BinaryVersionAccessors(providers, config); + private final InferVersionAccessors vaccForInferVersionAccessors = new InferVersionAccessors(providers, config); + private final JavaxVersionAccessors vaccForJavaxVersionAccessors = new JavaxVersionAccessors(providers, config); + private final NexusVersionAccessors vaccForNexusVersionAccessors = new NexusVersionAccessors(providers, config); + private final YogaVersionAccessors vaccForYogaVersionAccessors = new YogaVersionAccessors(providers, config); + public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias agp with value 8.2.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAgp() { return getVersion("agp"); } + + /** + * Version alias assertj with value 3.21.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAssertj() { return getVersion("assertj"); } + + /** + * Version alias boost with value 1_83_0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getBoost() { return getVersion("boost"); } + + /** + * Version alias buildTools with value 34.0.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getBuildTools() { return getVersion("buildTools"); } + + /** + * Version alias compileSdk with value 34 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getCompileSdk() { return getVersion("compileSdk"); } + + /** + * Version alias doubleconversion with value 1.1.6 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getDoubleconversion() { return getVersion("doubleconversion"); } + + /** + * Version alias download with value 5.4.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getDownload() { return getVersion("download"); } + + /** + * Version alias fbjni with value 0.6.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFbjni() { return getVersion("fbjni"); } + + /** + * Version alias fmt with value 9.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFmt() { return getVersion("fmt"); } + + /** + * Version alias folly with value 2024.01.01.00 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFolly() { return getVersion("folly"); } + + /** + * Version alias fresco with value 3.1.3 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getFresco() { return getVersion("fresco"); } + + /** + * Version alias glog with value 0.3.5 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGlog() { return getVersion("glog"); } + + /** + * Version alias gtest with value 1.12.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getGtest() { return getVersion("gtest"); } + + /** + * Version alias jsr305 with value 3.0.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJsr305() { return getVersion("jsr305"); } + + /** + * Version alias junit with value 4.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getJunit() { return getVersion("junit"); } + + /** + * Version alias kotlin with value 1.9.22 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getKotlin() { return getVersion("kotlin"); } + + /** + * Version alias minSdk with value 23 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getMinSdk() { return getVersion("minSdk"); } + + /** + * Version alias mockito with value 3.12.4 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getMockito() { return getVersion("mockito"); } + + /** + * Version alias ndkVersion with value 26.1.10909125 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getNdkVersion() { return getVersion("ndkVersion"); } + + /** + * Version alias okhttp with value 4.9.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getOkhttp() { return getVersion("okhttp"); } + + /** + * Version alias okio with value 2.9.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getOkio() { return getVersion("okio"); } + + /** + * Version alias robolectric with value 4.9.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getRobolectric() { return getVersion("robolectric"); } + + /** + * Version alias soloader with value 0.10.5 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getSoloader() { return getVersion("soloader"); } + + /** + * Version alias targetSdk with value 34 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTargetSdk() { return getVersion("targetSdk"); } + + /** + * Version alias xstream with value 1.4.20 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getXstream() { return getVersion("xstream"); } + + /** + * Group of versions at versions.androidx + */ + public AndroidxVersionAccessors getAndroidx() { + return vaccForAndroidxVersionAccessors; + } + + /** + * Group of versions at versions.binary + */ + public BinaryVersionAccessors getBinary() { + return vaccForBinaryVersionAccessors; + } + + /** + * Group of versions at versions.infer + */ + public InferVersionAccessors getInfer() { + return vaccForInferVersionAccessors; + } + + /** + * Group of versions at versions.javax + */ + public JavaxVersionAccessors getJavax() { + return vaccForJavaxVersionAccessors; + } + + /** + * Group of versions at versions.nexus + */ + public NexusVersionAccessors getNexus() { + return vaccForNexusVersionAccessors; + } + + /** + * Group of versions at versions.yoga + */ + public YogaVersionAccessors getYoga() { + return vaccForYogaVersionAccessors; + } + + } + + public static class AndroidxVersionAccessors extends VersionFactory { + + public AndroidxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias androidx.annotation with value 1.6.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { return getVersion("androidx.annotation"); } + + /** + * Version alias androidx.appcompat with value 1.6.1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAppcompat() { return getVersion("androidx.appcompat"); } + + /** + * Version alias androidx.autofill with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAutofill() { return getVersion("androidx.autofill"); } + + /** + * Version alias androidx.swiperefreshlayout with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getSwiperefreshlayout() { return getVersion("androidx.swiperefreshlayout"); } + + /** + * Version alias androidx.test with value 1.5.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTest() { return getVersion("androidx.test"); } + + /** + * Version alias androidx.tracing with value 1.1.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getTracing() { return getVersion("androidx.tracing"); } + + } + + public static class BinaryVersionAccessors extends VersionFactory { + + private final BinaryCompatibilityVersionAccessors vaccForBinaryCompatibilityVersionAccessors = new BinaryCompatibilityVersionAccessors(providers, config); + public BinaryVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of versions at versions.binary.compatibility + */ + public BinaryCompatibilityVersionAccessors getCompatibility() { + return vaccForBinaryCompatibilityVersionAccessors; + } + + } + + public static class BinaryCompatibilityVersionAccessors extends VersionFactory { + + public BinaryCompatibilityVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias binary.compatibility.validator with value 0.13.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getValidator() { return getVersion("binary.compatibility.validator"); } + + } + + public static class InferVersionAccessors extends VersionFactory { + + public InferVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias infer.annotation with value 0.18.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotation() { return getVersion("infer.annotation"); } + + } + + public static class JavaxVersionAccessors extends VersionFactory { + + private final JavaxAnnotationVersionAccessors vaccForJavaxAnnotationVersionAccessors = new JavaxAnnotationVersionAccessors(providers, config); + public JavaxVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias javax.inject with value 1 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getInject() { return getVersion("javax.inject"); } + + /** + * Group of versions at versions.javax.annotation + */ + public JavaxAnnotationVersionAccessors getAnnotation() { + return vaccForJavaxAnnotationVersionAccessors; + } + + } + + public static class JavaxAnnotationVersionAccessors extends VersionFactory { + + public JavaxAnnotationVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias javax.annotation.api with value 1.3.2 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getApi() { return getVersion("javax.annotation.api"); } + + } + + public static class NexusVersionAccessors extends VersionFactory { + + public NexusVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias nexus.publish with value 1.3.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getPublish() { return getVersion("nexus.publish"); } + + } + + public static class YogaVersionAccessors extends VersionFactory { + + private final YogaProguardVersionAccessors vaccForYogaProguardVersionAccessors = new YogaProguardVersionAccessors(providers, config); + public YogaVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of versions at versions.yoga.proguard + */ + public YogaProguardVersionAccessors getProguard() { + return vaccForYogaProguardVersionAccessors; + } + + } + + public static class YogaProguardVersionAccessors extends VersionFactory { + + public YogaProguardVersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Version alias yoga.proguard.annotations with value 1.19.0 + *

+ * If the version is a rich version and cannot be represented as a + * single version string, an empty string is returned. + *

+ * This version was declared in catalog libs.versions.toml + */ + public Provider getAnnotations() { return getVersion("yoga.proguard.annotations"); } + + } + + /** + * @deprecated Will be removed in Gradle 9.0. + */ + @Deprecated + public static class BundleAccessors extends BundleFactory { + + public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); } + + } + + public static class PluginAccessors extends PluginFactory { + private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config); + private final BinaryPluginAccessors paccForBinaryPluginAccessors = new BinaryPluginAccessors(providers, config); + private final KotlinPluginAccessors paccForKotlinPluginAccessors = new KotlinPluginAccessors(providers, config); + private final NexusPluginAccessors paccForNexusPluginAccessors = new NexusPluginAccessors(providers, config); + + public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for download with plugin id de.undercouch.download and + * with version reference download + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getDownload() { return createPlugin("download"); } + + /** + * Group of plugins at plugins.android + */ + public AndroidPluginAccessors getAndroid() { + return paccForAndroidPluginAccessors; + } + + /** + * Group of plugins at plugins.binary + */ + public BinaryPluginAccessors getBinary() { + return paccForBinaryPluginAccessors; + } + + /** + * Group of plugins at plugins.kotlin + */ + public KotlinPluginAccessors getKotlin() { + return paccForKotlinPluginAccessors; + } + + /** + * Group of plugins at plugins.nexus + */ + public NexusPluginAccessors getNexus() { + return paccForNexusPluginAccessors; + } + + } + + public static class AndroidPluginAccessors extends PluginFactory { + + public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for android.application with plugin id com.android.application and + * with version reference agp + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getApplication() { return createPlugin("android.application"); } + + /** + * Plugin provider for android.library with plugin id com.android.library and + * with version reference agp + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getLibrary() { return createPlugin("android.library"); } + + } + + public static class BinaryPluginAccessors extends PluginFactory { + private final BinaryCompatibilityPluginAccessors paccForBinaryCompatibilityPluginAccessors = new BinaryCompatibilityPluginAccessors(providers, config); + + public BinaryPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Group of plugins at plugins.binary.compatibility + */ + public BinaryCompatibilityPluginAccessors getCompatibility() { + return paccForBinaryCompatibilityPluginAccessors; + } + + } + + public static class BinaryCompatibilityPluginAccessors extends PluginFactory { + + public BinaryCompatibilityPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for binary.compatibility.validator with plugin id org.jetbrains.kotlinx.binary-compatibility-validator and + * with version reference binary.compatibility.validator + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getValidator() { return createPlugin("binary.compatibility.validator"); } + + } + + public static class KotlinPluginAccessors extends PluginFactory { + + public KotlinPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for kotlin.android with plugin id org.jetbrains.kotlin.android and + * with version reference kotlin + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getAndroid() { return createPlugin("kotlin.android"); } + + } + + public static class NexusPluginAccessors extends PluginFactory { + + public NexusPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); } + + /** + * Plugin provider for nexus.publish with plugin id io.github.gradle-nexus.publish-plugin and + * with version reference nexus.publish + *

+ * This plugin was declared in catalog libs.versions.toml + */ + public Provider getPublish() { return createPlugin("nexus.publish"); } + + } + +} diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/gc.properties b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/dependencies-accessors/gc.properties new file mode 100644 index 00000000..e69de29b diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileChanges/last-build.bin b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileChanges/last-build.bin new file mode 100644 index 00000000..f76dd238 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileChanges/last-build.bin differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.bin b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.bin new file mode 100644 index 00000000..e6f5bcfc Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.bin differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.lock b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.lock new file mode 100644 index 00000000..33d0d63b Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/fileHashes.lock differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/resourceHashesCache.bin b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/resourceHashesCache.bin new file mode 100644 index 00000000..cf9e6da5 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/fileHashes/resourceHashesCache.bin differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/gc.properties b/TekTrackFrontEnd/TekTrack/android/.gradle/8.6/gc.properties new file mode 100644 index 00000000..e69de29b diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock new file mode 100644 index 00000000..196e2100 Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/cache.properties b/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/cache.properties new file mode 100644 index 00000000..cfd13b30 --- /dev/null +++ b/TekTrackFrontEnd/TekTrack/android/.gradle/buildOutputCleanup/cache.properties @@ -0,0 +1,2 @@ +#Thu Sep 05 14:08:11 EDT 2024 +gradle.version=8.6 diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/file-system.probe b/TekTrackFrontEnd/TekTrack/android/.gradle/file-system.probe new file mode 100644 index 00000000..7b37484f Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/file-system.probe differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/noVersion/buildLogic.lock b/TekTrackFrontEnd/TekTrack/android/.gradle/noVersion/buildLogic.lock new file mode 100644 index 00000000..8564e25a Binary files /dev/null and b/TekTrackFrontEnd/TekTrack/android/.gradle/noVersion/buildLogic.lock differ diff --git a/TekTrackFrontEnd/TekTrack/android/.gradle/vcs-1/gc.properties b/TekTrackFrontEnd/TekTrack/android/.gradle/vcs-1/gc.properties new file mode 100644 index 00000000..e69de29b diff --git a/TekTrackFrontEnd/TekTrack/package-lock.json b/TekTrackFrontEnd/TekTrack/package-lock.json index a5adb930..d229848a 100644 --- a/TekTrackFrontEnd/TekTrack/package-lock.json +++ b/TekTrackFrontEnd/TekTrack/package-lock.json @@ -8,6 +8,7 @@ "name": "tektrack", "version": "1.0.0", "dependencies": { + "axios": "^1.7.7", "expo": "~51.0.28", "expo-constants": "~16.0.2", "expo-linking": "~6.3.1", @@ -6789,6 +6790,29 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/axios/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/babel-core": { "version": "7.0.0-bridge.0", "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", @@ -8496,7 +8520,6 @@ "version": "51.0.32", "resolved": "https://registry.npmjs.org/expo/-/expo-51.0.32.tgz", "integrity": "sha512-6GEhYvHRnyS/6BytQagGkClsaqbuwAtlN3A6oDfnNMRKLmz6NE/r+Rjg9zbQgUO6zigqb60Yj5lAX32DmixRDw==", - "license": "MIT", "dependencies": { "@babel/runtime": "^7.20.0", "@expo/cli": "0.18.29", @@ -8722,7 +8745,6 @@ "version": "3.5.23", "resolved": "https://registry.npmjs.org/expo-router/-/expo-router-3.5.23.tgz", "integrity": "sha512-Re2kYcxov67hWrcjuu0+3ovsLxYn79PuX6hgtYN20MgigY5ttX79KOIBEVGTO3F3y9dxSrGHyy5Z14BcO+usGQ==", - "license": "MIT", "dependencies": { "@expo/metro-runtime": "3.2.3", "@expo/server": "^0.4.0", @@ -9074,6 +9096,25 @@ "node": ">=0.4.0" } }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, "node_modules/fontfaceobserver": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/fontfaceobserver/-/fontfaceobserver-2.3.0.tgz", @@ -13363,6 +13404,11 @@ "react-is": "^16.13.1" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" + }, "node_modules/pump": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", diff --git a/TekTrackFrontEnd/TekTrack/package.json b/TekTrackFrontEnd/TekTrack/package.json index c872a7f7..d0d50636 100644 --- a/TekTrackFrontEnd/TekTrack/package.json +++ b/TekTrackFrontEnd/TekTrack/package.json @@ -9,6 +9,7 @@ "web": "expo start --web" }, "dependencies": { + "axios": "^1.7.7", "expo": "~51.0.28", "expo-constants": "~16.0.2", "expo-linking": "~6.3.1",