diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 0dd0c31..ad74fcc 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -1,59 +1,37 @@ -name: Android Build +name: Expo Android Build on: push: branches: [main] - pull_request: - workflow_dispatch: jobs: build: runs-on: ubuntu-latest - timeout-minutes: 20 steps: - - name: Checkout code - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Node.js + - name: Setup Node uses: actions/setup-node@v4 with: - node-version: '18' - cache: 'npm' + node-version: 18.x + + - name: Install Expo CLI + run: npm install -g expo-cli - name: Install dependencies run: npm install - - name: Set up JDK - uses: actions/setup-java@v3 - with: - distribution: 'temurin' - java-version: '17' + - name: Generate Android directory + run: npx expo prebuild --platform android - - name: Build Debug APK - run: | - cd android - ./gradlew assembleDebug - env: - ANDROID_HOME: ${{ secrets.ANDROID_HOME }} - ANDROID_SDK_ROOT: ${{ secrets.ANDROID_SDK_ROOT }} - - - name: Build Release APK + - name: Build APK run: | cd android ./gradlew assembleRelease - env: - ANDROID_HOME: ${{ secrets.ANDROID_HOME }} - ANDROID_SDK_ROOT: ${{ secrets.ANDROID_SDK_ROOT }} - - name: Upload Debug APK - uses: actions/upload-artifact@v4 - with: - name: app-debug.apk - path: android/app/build/outputs/apk/debug/app-debug.apk - - - name: Upload Release APK + - name: Upload APK uses: actions/upload-artifact@v4 with: name: app-release.apk - path: android/app/build/outputs/apk/release/app-release-unsigned.apk + path: android/app/build/outputs/apk/release/*.apk diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..8a6be07 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,16 @@ +# OSX +# +.DS_Store + +# Android/IntelliJ +# +build/ +.idea +.gradle +local.properties +*.iml +*.hprof +.cxx/ + +# Bundle artifacts +*.jsbundle diff --git a/android/.gradle/8.10.2/checksums/checksums.lock b/android/.gradle/8.10.2/checksums/checksums.lock deleted file mode 100644 index a8d4667..0000000 Binary files a/android/.gradle/8.10.2/checksums/checksums.lock and /dev/null differ diff --git a/android/.gradle/8.10.2/checksums/md5-checksums.bin b/android/.gradle/8.10.2/checksums/md5-checksums.bin deleted file mode 100644 index e9e19ab..0000000 Binary files a/android/.gradle/8.10.2/checksums/md5-checksums.bin and /dev/null differ diff --git a/android/.gradle/8.10.2/checksums/sha1-checksums.bin b/android/.gradle/8.10.2/checksums/sha1-checksums.bin deleted file mode 100644 index 4b62a1a..0000000 Binary files a/android/.gradle/8.10.2/checksums/sha1-checksums.bin and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class deleted file mode 100644 index a6297ad..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidGradleLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class deleted file mode 100644 index d3db25e..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$AndroidLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class deleted file mode 100644 index a4b491d..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$BundleAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class deleted file mode 100644 index 4ef3b99..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinGradleLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class deleted file mode 100644 index 9ad0f26..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class deleted file mode 100644 index a84e7ae..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$KotlinPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class deleted file mode 100644 index 1619e81..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$PluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class deleted file mode 100644 index f5cf740..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs$VersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs.class deleted file mode 100644 index 59ae7bc..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibs.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class deleted file mode 100644 index 0109e68..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidGradleLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class deleted file mode 100644 index 6c2b63f..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$AndroidLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class deleted file mode 100644 index 8717161..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$BundleAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class deleted file mode 100644 index 1720c7d..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinGradleLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class deleted file mode 100644 index 7a7c14d..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class deleted file mode 100644 index 70c97a7..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$KotlinPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class deleted file mode 100644 index 5f45232..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$PluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class deleted file mode 100644 index 03290fb..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock$VersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class deleted file mode 100644 index 7676a27..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/classes/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/metadata.bin b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/metadata.bin deleted file mode 100644 index adef63a..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/metadata.bin +++ /dev/null @@ -1 +0,0 @@ -›hbyw7tygjjeyddh64aytxkjt2yó XR•cš$Q`Æ­I÷ˆclassesóÃÏŒVgý{‹ÑT¶Je#4ˆsourcesÄÆ!íÓ'm5=³½ã09 \ No newline at end of file diff --git a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibs.java b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibs.java deleted file mode 100644 index cb57db1..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibs.java +++ /dev/null @@ -1,291 +0,0 @@ -package org.gradle.accessors.dm; - -import org.gradle.api.NonNullApi; -import org.gradle.api.artifacts.MinimalExternalModuleDependency; -import org.gradle.plugin.use.PluginDependency; -import org.gradle.api.artifacts.ExternalModuleDependencyBundle; -import org.gradle.api.artifacts.MutableVersionConstraint; -import org.gradle.api.provider.Provider; -import org.gradle.api.model.ObjectFactory; -import org.gradle.api.provider.ProviderFactory; -import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory; -import org.gradle.api.internal.catalog.DefaultVersionCatalog; -import java.util.Map; -import org.gradle.api.internal.attributes.ImmutableAttributesFactory; -import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser; -import javax.inject.Inject; - -/** - * A catalog of dependencies accessible via the {@code libs} extension. - */ -@NonNullApi -public class LibrariesForLibs extends AbstractExternalDependencyFactory { - - private final AbstractExternalDependencyFactory owner = this; - private final 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 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 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.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 getAgp() { return getVersion("agp"); } - - /** - * Version alias assertj with value 3.25.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 getAssertj() { return getVersion("assertj"); } - - /** - * 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.25 - *

- * 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/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java b/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java deleted file mode 100644 index 52640bf..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/569c8b261a8a714d7731d5f568e0e5c05babae10/sources/org/gradle/accessors/dm/LibrariesForLibsInPluginsBlock.java +++ /dev/null @@ -1,359 +0,0 @@ -package org.gradle.accessors.dm; - -import org.gradle.api.NonNullApi; -import org.gradle.api.artifacts.MinimalExternalModuleDependency; -import org.gradle.plugin.use.PluginDependency; -import org.gradle.api.artifacts.ExternalModuleDependencyBundle; -import org.gradle.api.artifacts.MutableVersionConstraint; -import org.gradle.api.provider.Provider; -import org.gradle.api.model.ObjectFactory; -import org.gradle.api.provider.ProviderFactory; -import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory; -import org.gradle.api.internal.catalog.DefaultVersionCatalog; -import java.util.Map; -import org.gradle.api.internal.attributes.ImmutableAttributesFactory; -import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser; -import javax.inject.Inject; - -/** - * A catalog of dependencies accessible via the {@code libs} extension. - */ -@NonNullApi -public class 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 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 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.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 getAgp() { return getVersion("agp"); } - - /** - * Version alias assertj with value 3.25.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 getAssertj() { return getVersion("assertj"); } - - /** - * 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.25 - *

- * 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/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class deleted file mode 100644 index 2c535a6..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class deleted file mode 100644 index 8d408bb..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxAppcompatLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class deleted file mode 100644 index 387af7f..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class deleted file mode 100644 index 84a8b09..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxTestLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class deleted file mode 100644 index e51b5be..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$AndroidxVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class deleted file mode 100644 index 40dec8a..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class deleted file mode 100644 index 90aa782..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryCompatibilityVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class deleted file mode 100644 index 2f9ca8b..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class deleted file mode 100644 index 740315b..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BinaryVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class deleted file mode 100644 index a816763..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$BundleAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class deleted file mode 100644 index b740760..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoImagepipelineLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class deleted file mode 100644 index 7913b8a..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class deleted file mode 100644 index 57324aa..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$FrescoUiLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class deleted file mode 100644 index f65ac2d..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class deleted file mode 100644 index ec1feec..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$InferVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class deleted file mode 100644 index e8e94ff..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class deleted file mode 100644 index 07973aa..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxAnnotationVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class deleted file mode 100644 index 92a80c2..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class deleted file mode 100644 index 56f3c34..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$JavaxVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class deleted file mode 100644 index 914115a..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$KotlinPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class deleted file mode 100644 index f60b5af..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class deleted file mode 100644 index 4a7f9b3..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$NexusVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class deleted file mode 100644 index 41fb2ca..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$Okhttp3LibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class deleted file mode 100644 index 8bdb45f..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$PluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class deleted file mode 100644 index 6b6a264..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$VersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class deleted file mode 100644 index 0cecc9e..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class deleted file mode 100644 index a1fc0d4..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class deleted file mode 100644 index 94855f1..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaProguardVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class deleted file mode 100644 index e8bde31..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs$YogaVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class deleted file mode 100644 index e4de597..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class deleted file mode 100644 index 1164e1c..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class deleted file mode 100644 index b516520..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxAppcompatLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class deleted file mode 100644 index d1e43a8..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class deleted file mode 100644 index 25397b1..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxTestLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class deleted file mode 100644 index 7090fe7..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$AndroidxVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class deleted file mode 100644 index b72fb6f..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class deleted file mode 100644 index 16a6e1e..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryCompatibilityVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class deleted file mode 100644 index 20f5abf..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class deleted file mode 100644 index 8665bb8..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BinaryVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class deleted file mode 100644 index 3831505..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$BundleAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class deleted file mode 100644 index 50a94fa..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoImagepipelineLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class deleted file mode 100644 index ca95b9a..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class deleted file mode 100644 index 8cdfbf4..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$FrescoUiLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class deleted file mode 100644 index 6a05d21..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class deleted file mode 100644 index 4195d14..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$InferVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class deleted file mode 100644 index c241ca1..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class deleted file mode 100644 index 686e183..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxAnnotationVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class deleted file mode 100644 index 1fcbd8f..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class deleted file mode 100644 index c558409..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$JavaxVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class deleted file mode 100644 index 1b19d99..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$KotlinPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class deleted file mode 100644 index 673ad3e..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusPluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class deleted file mode 100644 index 9421f7e..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$NexusVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class deleted file mode 100644 index a3aba67..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$Okhttp3LibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class deleted file mode 100644 index 6814ecf..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$PluginAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class deleted file mode 100644 index c90e920..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$VersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class deleted file mode 100644 index 866325b..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class deleted file mode 100644 index c139322..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardLibraryAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class deleted file mode 100644 index 975894d..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaProguardVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class deleted file mode 100644 index 55072d2..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock$YogaVersionAccessors.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class deleted file mode 100644 index d5b1f72..0000000 Binary files a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/classes/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.class and /dev/null differ diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin deleted file mode 100644 index 7024033..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/metadata.bin +++ /dev/null @@ -1 +0,0 @@ -›hbyw7tygjjeyddh64aytxkjt2y½3Ë¢w¬ýüQ‚0„§¹Êˆclassesìj.ná´MÅŸgJU¼,?ˆsourcesMéR®´7¯úÙŽgö \ No newline at end of file diff --git a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java deleted file mode 100644 index a3a8cd6..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibs.java +++ /dev/null @@ -1,1125 +0,0 @@ -package org.gradle.accessors.dm; - -import org.gradle.api.NonNullApi; -import org.gradle.api.artifacts.MinimalExternalModuleDependency; -import org.gradle.plugin.use.PluginDependency; -import org.gradle.api.artifacts.ExternalModuleDependencyBundle; -import org.gradle.api.artifacts.MutableVersionConstraint; -import org.gradle.api.provider.Provider; -import org.gradle.api.model.ObjectFactory; -import org.gradle.api.provider.ProviderFactory; -import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory; -import org.gradle.api.internal.catalog.DefaultVersionCatalog; -import java.util.Map; -import org.gradle.api.internal.attributes.ImmutableAttributesFactory; -import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser; -import javax.inject.Inject; - -/** - * A catalog of dependencies accessible via the {@code 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.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 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 35.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 35 - *

- * 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.2.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 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.25 - *

- * 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 24 - *

- * 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.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 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/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java b/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java deleted file mode 100644 index eae885c..0000000 --- a/android/.gradle/8.10.2/dependencies-accessors/63bfea9ebd7ffa1cdafd0ae8ce62aa3c210042bd/sources/org/gradle/accessors/dm/LibrariesForReactAndroidLibsInPluginsBlock.java +++ /dev/null @@ -1,1337 +0,0 @@ -package org.gradle.accessors.dm; - -import org.gradle.api.NonNullApi; -import org.gradle.api.artifacts.MinimalExternalModuleDependency; -import org.gradle.plugin.use.PluginDependency; -import org.gradle.api.artifacts.ExternalModuleDependencyBundle; -import org.gradle.api.artifacts.MutableVersionConstraint; -import org.gradle.api.provider.Provider; -import org.gradle.api.model.ObjectFactory; -import org.gradle.api.provider.ProviderFactory; -import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory; -import org.gradle.api.internal.catalog.DefaultVersionCatalog; -import java.util.Map; -import org.gradle.api.internal.attributes.ImmutableAttributesFactory; -import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser; -import javax.inject.Inject; - -/** - * A catalog of dependencies accessible via the {@code 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.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 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 35.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 35 - *

- * 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.2.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 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.25 - *

- * 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 24 - *

- * 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.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 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/android/.gradle/8.10.2/dependencies-accessors/gc.properties b/android/.gradle/8.10.2/dependencies-accessors/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/android/.gradle/8.10.2/expanded/expanded.lock b/android/.gradle/8.10.2/expanded/expanded.lock deleted file mode 100644 index ae0589b..0000000 Binary files a/android/.gradle/8.10.2/expanded/expanded.lock and /dev/null differ diff --git a/android/.gradle/8.10.2/fileChanges/last-build.bin b/android/.gradle/8.10.2/fileChanges/last-build.bin deleted file mode 100644 index f76dd23..0000000 Binary files a/android/.gradle/8.10.2/fileChanges/last-build.bin and /dev/null differ diff --git a/android/.gradle/8.10.2/fileHashes/fileHashes.bin b/android/.gradle/8.10.2/fileHashes/fileHashes.bin deleted file mode 100644 index dbd72c8..0000000 Binary files a/android/.gradle/8.10.2/fileHashes/fileHashes.bin and /dev/null differ diff --git a/android/.gradle/8.10.2/fileHashes/fileHashes.lock b/android/.gradle/8.10.2/fileHashes/fileHashes.lock deleted file mode 100644 index 369ce8e..0000000 Binary files a/android/.gradle/8.10.2/fileHashes/fileHashes.lock and /dev/null differ diff --git a/android/.gradle/8.10.2/fileHashes/resourceHashesCache.bin b/android/.gradle/8.10.2/fileHashes/resourceHashesCache.bin deleted file mode 100644 index 493834c..0000000 Binary files a/android/.gradle/8.10.2/fileHashes/resourceHashesCache.bin and /dev/null differ diff --git a/android/.gradle/8.10.2/gc.properties b/android/.gradle/8.10.2/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock deleted file mode 100644 index 3f310c0..0000000 Binary files a/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock and /dev/null differ diff --git a/android/.gradle/buildOutputCleanup/cache.properties b/android/.gradle/buildOutputCleanup/cache.properties deleted file mode 100644 index cc904b3..0000000 --- a/android/.gradle/buildOutputCleanup/cache.properties +++ /dev/null @@ -1,2 +0,0 @@ -#Thu Mar 06 12:46:19 CET 2025 -gradle.version=8.10.2 diff --git a/android/.gradle/file-system.probe b/android/.gradle/file-system.probe deleted file mode 100644 index 551f9fc..0000000 Binary files a/android/.gradle/file-system.probe and /dev/null differ diff --git a/android/.gradle/noVersion/buildLogic.lock b/android/.gradle/noVersion/buildLogic.lock deleted file mode 100644 index 4eb5308..0000000 Binary files a/android/.gradle/noVersion/buildLogic.lock and /dev/null differ diff --git a/android/.gradle/vcs-1/gc.properties b/android/.gradle/vcs-1/gc.properties deleted file mode 100644 index e69de29..0000000 diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..52c114a --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,176 @@ +apply plugin: "com.android.application" +apply plugin: "org.jetbrains.kotlin.android" +apply plugin: "com.facebook.react" + +def projectRoot = rootDir.getAbsoluteFile().getParentFile().getAbsolutePath() + +/** + * This is the configuration block to customize your React Native Android app. + * By default you don't need to apply any configuration, just uncomment the lines you need. + */ +react { + entryFile = file(["node", "-e", "require('expo/scripts/resolveAppEntry')", projectRoot, "android", "absolute"].execute(null, rootDir).text.trim()) + reactNativeDir = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() + hermesCommand = new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim()).getParentFile().getAbsolutePath() + "/sdks/hermesc/%OS-BIN%/hermesc" + codegenDir = new File(["node", "--print", "require.resolve('@react-native/codegen/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().getAbsoluteFile() + + // Use Expo CLI to bundle the app, this ensures the Metro config + // works correctly with Expo projects. + cliFile = new File(["node", "--print", "require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })"].execute(null, rootDir).text.trim()) + bundleCommand = "export:embed" + + /* Folders */ + // The root of your project, i.e. where "package.json" lives. Default is '../..' + // root = file("../../") + // The folder where the react-native NPM package is. Default is ../../node_modules/react-native + // reactNativeDir = file("../../node_modules/react-native") + // The folder where the react-native Codegen package is. Default is ../../node_modules/@react-native/codegen + // codegenDir = file("../../node_modules/@react-native/codegen") + + /* Variants */ + // The list of variants to that are debuggable. For those we're going to + // skip the bundling of the JS bundle and the assets. By default is just 'debug'. + // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. + // debuggableVariants = ["liteDebug", "prodDebug"] + + /* Bundling */ + // A list containing the node command and its flags. Default is just 'node'. + // nodeExecutableAndArgs = ["node"] + + // + // The path to the CLI configuration file. Default is empty. + // bundleConfig = file(../rn-cli.config.js) + // + // The name of the generated asset file containing your JS bundle + // bundleAssetName = "MyApplication.android.bundle" + // + // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' + // entryFile = file("../js/MyApplication.android.js") + // + // A list of extra flags to pass to the 'bundle' commands. + // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle + // extraPackagerArgs = [] + + /* Hermes Commands */ + // The hermes compiler command to run. By default it is 'hermesc' + // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc" + // + // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" + // hermesFlags = ["-O", "-output-source-map"] + + /* Autolinking */ + autolinkLibrariesWithApp() +} + +/** + * Set this to true to Run Proguard on Release builds to minify the Java bytecode. + */ +def enableProguardInReleaseBuilds = (findProperty('android.enableProguardInReleaseBuilds') ?: false).toBoolean() + +/** + * The preferred build flavor of JavaScriptCore (JSC) + * + * For example, to use the international variant, you can use: + * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` + * + * The international variant includes ICU i18n library and necessary data + * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that + * give correct results when using with locales other than en-US. Note that + * this variant is about 6MiB larger per architecture than default. + */ +def jscFlavor = 'org.webkit:android-jsc:+' + +android { + ndkVersion rootProject.ext.ndkVersion + + buildToolsVersion rootProject.ext.buildToolsVersion + compileSdk rootProject.ext.compileSdkVersion + + namespace 'com.anonymous.ToDo' + defaultConfig { + applicationId 'com.anonymous.ToDo' + minSdkVersion rootProject.ext.minSdkVersion + targetSdkVersion rootProject.ext.targetSdkVersion + versionCode 1 + versionName "1.0.0" + } + signingConfigs { + debug { + storeFile file('debug.keystore') + storePassword 'android' + keyAlias 'androiddebugkey' + keyPassword 'android' + } + } + buildTypes { + debug { + signingConfig signingConfigs.debug + } + release { + // Caution! In production, you need to generate your own keystore file. + // see https://reactnative.dev/docs/signed-apk-android. + signingConfig signingConfigs.debug + shrinkResources (findProperty('android.enableShrinkResourcesInReleaseBuilds')?.toBoolean() ?: false) + minifyEnabled enableProguardInReleaseBuilds + proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro" + crunchPngs (findProperty('android.enablePngCrunchInReleaseBuilds')?.toBoolean() ?: true) + } + } + packagingOptions { + jniLibs { + useLegacyPackaging (findProperty('expo.useLegacyPackaging')?.toBoolean() ?: false) + } + } + androidResources { + ignoreAssetsPattern '!.svn:!.git:!.ds_store:!*.scc:!CVS:!thumbs.db:!picasa.ini:!*~' + } +} + +// Apply static values from `gradle.properties` to the `android.packagingOptions` +// Accepts values in comma delimited lists, example: +// android.packagingOptions.pickFirsts=/LICENSE,**/picasa.ini +["pickFirsts", "excludes", "merges", "doNotStrip"].each { prop -> + // Split option: 'foo,bar' -> ['foo', 'bar'] + def options = (findProperty("android.packagingOptions.$prop") ?: "").split(","); + // Trim all elements in place. + for (i in 0.. 0) { + println "android.packagingOptions.$prop += $options ($options.length)" + // Ex: android.packagingOptions.pickFirsts += '**/SCCS/**' + options.each { + android.packagingOptions[prop] += it + } + } +} + +dependencies { + // The version of react-native is set by the React Native Gradle Plugin + implementation("com.facebook.react:react-android") + + def isGifEnabled = (findProperty('expo.gif.enabled') ?: "") == "true"; + def isWebpEnabled = (findProperty('expo.webp.enabled') ?: "") == "true"; + def isWebpAnimatedEnabled = (findProperty('expo.webp.animated') ?: "") == "true"; + + if (isGifEnabled) { + // For animated gif support + implementation("com.facebook.fresco:animated-gif:${reactAndroidLibs.versions.fresco.get()}") + } + + if (isWebpEnabled) { + // For webp support + implementation("com.facebook.fresco:webpsupport:${reactAndroidLibs.versions.fresco.get()}") + if (isWebpAnimatedEnabled) { + // Animated webp support + implementation("com.facebook.fresco:animated-webp:${reactAndroidLibs.versions.fresco.get()}") + } + } + + if (hermesEnabled.toBoolean()) { + implementation("com.facebook.react:hermes-android") + } else { + implementation jscFlavor + } +} diff --git a/android/app/debug.keystore b/android/app/debug.keystore new file mode 100644 index 0000000..364e105 Binary files /dev/null and b/android/app/debug.keystore differ diff --git a/android/app/proguard-rules.pro b/android/app/proguard-rules.pro new file mode 100644 index 0000000..551eb41 --- /dev/null +++ b/android/app/proguard-rules.pro @@ -0,0 +1,14 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in /usr/local/Cellar/android-sdk/24.3.3/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# react-native-reanimated +-keep class com.swmansion.reanimated.** { *; } +-keep class com.facebook.react.turbomodule.** { *; } + +# Add any project specific keep options here: diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..3ec2507 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d0dfb57 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/android/app/src/main/java/com/anonymous/ToDo/MainActivity.kt b/android/app/src/main/java/com/anonymous/ToDo/MainActivity.kt new file mode 100644 index 0000000..38a2395 --- /dev/null +++ b/android/app/src/main/java/com/anonymous/ToDo/MainActivity.kt @@ -0,0 +1,61 @@ +package com.anonymous.ToDo + +import android.os.Build +import android.os.Bundle + +import com.facebook.react.ReactActivity +import com.facebook.react.ReactActivityDelegate +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled +import com.facebook.react.defaults.DefaultReactActivityDelegate + +import expo.modules.ReactActivityDelegateWrapper + +class MainActivity : ReactActivity() { + override fun onCreate(savedInstanceState: Bundle?) { + // Set the theme to AppTheme BEFORE onCreate to support + // coloring the background, status bar, and navigation bar. + // This is required for expo-splash-screen. + setTheme(R.style.AppTheme); + super.onCreate(null) + } + + /** + * Returns the name of the main component registered from JavaScript. This is used to schedule + * rendering of the component. + */ + override fun getMainComponentName(): String = "main" + + /** + * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] + * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] + */ + override fun createReactActivityDelegate(): ReactActivityDelegate { + return ReactActivityDelegateWrapper( + this, + BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, + object : DefaultReactActivityDelegate( + this, + mainComponentName, + fabricEnabled + ){}) + } + + /** + * Align the back button behavior with Android S + * where moving root activities to background instead of finishing activities. + * @see onBackPressed + */ + override fun invokeDefaultOnBackPressed() { + if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.R) { + if (!moveTaskToBack(false)) { + // For non-root activities, use the default implementation to finish them. + super.invokeDefaultOnBackPressed() + } + return + } + + // Use the default back button implementation on Android S + // because it's doing more than [Activity.moveTaskToBack] in fact. + super.invokeDefaultOnBackPressed() + } +} diff --git a/android/app/src/main/java/com/anonymous/ToDo/MainApplication.kt b/android/app/src/main/java/com/anonymous/ToDo/MainApplication.kt new file mode 100644 index 0000000..575cab8 --- /dev/null +++ b/android/app/src/main/java/com/anonymous/ToDo/MainApplication.kt @@ -0,0 +1,57 @@ +package com.anonymous.ToDo + +import android.app.Application +import android.content.res.Configuration + +import com.facebook.react.PackageList +import com.facebook.react.ReactApplication +import com.facebook.react.ReactNativeHost +import com.facebook.react.ReactPackage +import com.facebook.react.ReactHost +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load +import com.facebook.react.defaults.DefaultReactNativeHost +import com.facebook.react.soloader.OpenSourceMergedSoMapping +import com.facebook.soloader.SoLoader + +import expo.modules.ApplicationLifecycleDispatcher +import expo.modules.ReactNativeHostWrapper + +class MainApplication : Application(), ReactApplication { + + override val reactNativeHost: ReactNativeHost = ReactNativeHostWrapper( + this, + object : DefaultReactNativeHost(this) { + override fun getPackages(): List { + val packages = PackageList(this).packages + // Packages that cannot be autolinked yet can be added manually here, for example: + // packages.add(new MyReactNativePackage()); + return packages + } + + override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry" + + override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG + + override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED + override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED + } + ) + + override val reactHost: ReactHost + get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost) + + override fun onCreate() { + super.onCreate() + SoLoader.init(this, OpenSourceMergedSoMapping) + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { + // If you opted-in for the New Architecture, we load the native entry point for this app. + load() + } + ApplicationLifecycleDispatcher.onApplicationCreate(this) + } + + override fun onConfigurationChanged(newConfig: Configuration) { + super.onConfigurationChanged(newConfig) + ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig) + } +} diff --git a/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png b/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png new file mode 100644 index 0000000..31df827 Binary files /dev/null and b/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png differ diff --git a/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png b/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png new file mode 100644 index 0000000..ef243aa Binary files /dev/null and b/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png differ diff --git a/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png b/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png new file mode 100644 index 0000000..e9d5474 Binary files /dev/null and b/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png differ diff --git a/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png b/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png new file mode 100644 index 0000000..d61da15 Binary files /dev/null and b/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png differ diff --git a/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png b/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png new file mode 100644 index 0000000..4aeed11 Binary files /dev/null and b/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png differ diff --git a/android/app/src/main/res/drawable/ic_launcher_background.xml b/android/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..883b2a0 --- /dev/null +++ b/android/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/drawable/rn_edit_text_material.xml b/android/app/src/main/res/drawable/rn_edit_text_material.xml new file mode 100644 index 0000000..5c25e72 --- /dev/null +++ b/android/app/src/main/res/drawable/rn_edit_text_material.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..3941bea --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..3941bea --- /dev/null +++ b/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..7fae0cc Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..ac03dbf Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..afa0a4e Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..78aaf45 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..e1173a9 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..c4f6e10 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..7a0f085 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..ff086fd Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..6c2d40b Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..730e3fa Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..f7f1d06 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..3452615 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..b11a322 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp new file mode 100644 index 0000000..49a464e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b51fd15 Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/android/app/src/main/res/values-night/colors.xml b/android/app/src/main/res/values-night/colors.xml new file mode 100644 index 0000000..3c05de5 --- /dev/null +++ b/android/app/src/main/res/values-night/colors.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/android/app/src/main/res/values/colors.xml b/android/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..f387b90 --- /dev/null +++ b/android/app/src/main/res/values/colors.xml @@ -0,0 +1,6 @@ + + #ffffff + #ffffff + #023c69 + #ffffff + \ No newline at end of file diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..e404008 --- /dev/null +++ b/android/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + ToDo + contain + false + \ No newline at end of file diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..da52521 --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,17 @@ + + + + + \ No newline at end of file diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..abbcb8e --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,41 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + ext { + buildToolsVersion = findProperty('android.buildToolsVersion') ?: '35.0.0' + minSdkVersion = Integer.parseInt(findProperty('android.minSdkVersion') ?: '24') + compileSdkVersion = Integer.parseInt(findProperty('android.compileSdkVersion') ?: '35') + targetSdkVersion = Integer.parseInt(findProperty('android.targetSdkVersion') ?: '34') + kotlinVersion = findProperty('android.kotlinVersion') ?: '1.9.25' + + ndkVersion = "26.1.10909125" + } + repositories { + google() + mavenCentral() + } + dependencies { + classpath('com.android.tools.build:gradle') + classpath('com.facebook.react:react-native-gradle-plugin') + classpath('org.jetbrains.kotlin:kotlin-gradle-plugin') + } +} + +apply plugin: "com.facebook.react.rootproject" + +allprojects { + repositories { + maven { + // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm + url(new File(['node', '--print', "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), '../android')) + } + maven { + // Android JSC is installed from npm + url(new File(['node', '--print', "require.resolve('jsc-android/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim(), '../dist')) + } + + google() + mavenCentral() + maven { url 'https://www.jitpack.io' } + } +} diff --git a/android/build/generated/autolinking/autolinking.json b/android/build/generated/autolinking/autolinking.json deleted file mode 100644 index d7377e5..0000000 --- a/android/build/generated/autolinking/autolinking.json +++ /dev/null @@ -1 +0,0 @@ -{"root":"/home/alex/Code/ToDo","reactNativePath":"/home/alex/Code/ToDo/node_modules/react-native","dependencies":{"expo":{"root":"/home/alex/Code/ToDo/node_modules/expo","name":"expo","platforms":{"android":{"sourceDir":"/home/alex/Code/ToDo/node_modules/expo/android","packageImportPath":"import expo.modules.ExpoModulesPackage;","packageInstance":"new ExpoModulesPackage()","buildTypes":[],"componentDescriptors":[],"cmakeListsPath":"/home/alex/Code/ToDo/node_modules/expo/android/build/generated/source/codegen/jni/CMakeLists.txt","cxxModuleCMakeListsModuleName":null,"cxxModuleCMakeListsPath":null,"cxxModuleHeaderName":null}}},"react-native-gesture-handler":{"root":"/home/alex/Code/ToDo/node_modules/react-native-gesture-handler","name":"react-native-gesture-handler","platforms":{"android":{"sourceDir":"/home/alex/Code/ToDo/node_modules/react-native-gesture-handler/android","packageImportPath":"import com.swmansion.gesturehandler.RNGestureHandlerPackage;","packageInstance":"new RNGestureHandlerPackage()","buildTypes":[],"libraryName":"rngesturehandler_codegen","componentDescriptors":["RNGestureHandlerButtonComponentDescriptor","RNGestureHandlerRootViewComponentDescriptor"],"cmakeListsPath":"/home/alex/Code/ToDo/node_modules/react-native-gesture-handler/android/build/generated/source/codegen/jni/CMakeLists.txt","cxxModuleCMakeListsModuleName":null,"cxxModuleCMakeListsPath":null,"cxxModuleHeaderName":null}}},"react-native-reanimated":{"root":"/home/alex/Code/ToDo/node_modules/react-native-reanimated","name":"react-native-reanimated","platforms":{"android":{"sourceDir":"/home/alex/Code/ToDo/node_modules/react-native-reanimated/android","packageImportPath":"import com.swmansion.reanimated.ReanimatedPackage;","packageInstance":"new ReanimatedPackage()","buildTypes":[],"libraryName":"rnreanimated","componentDescriptors":[],"cmakeListsPath":"/home/alex/Code/ToDo/node_modules/react-native-reanimated/android/build/generated/source/codegen/jni/CMakeLists.txt","cxxModuleCMakeListsModuleName":null,"cxxModuleCMakeListsPath":null,"cxxModuleHeaderName":null}}},"@react-native-async-storage/async-storage":{"root":"/home/alex/Code/ToDo/node_modules/@react-native-async-storage/async-storage","name":"@react-native-async-storage/async-storage","platforms":{"android":{"sourceDir":"/home/alex/Code/ToDo/node_modules/@react-native-async-storage/async-storage/android","packageImportPath":"import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;","packageInstance":"new AsyncStoragePackage()","buildTypes":[],"libraryName":"rnasyncstorage","componentDescriptors":[],"cmakeListsPath":"/home/alex/Code/ToDo/node_modules/@react-native-async-storage/async-storage/android/build/generated/source/codegen/jni/CMakeLists.txt","cxxModuleCMakeListsModuleName":null,"cxxModuleCMakeListsPath":null,"cxxModuleHeaderName":null}}}},"project":{"android":{"packageName":"com.anonymous.ToDo","sourceDir":"/home/alex/Code/ToDo/android"}}} diff --git a/android/build/generated/autolinking/package-lock.json.sha b/android/build/generated/autolinking/package-lock.json.sha deleted file mode 100644 index d8b0429..0000000 --- a/android/build/generated/autolinking/package-lock.json.sha +++ /dev/null @@ -1 +0,0 @@ -1e0e5ad3b60d12d7bae7b015c2446e0edf8a1f97e61840942a6f179e790a9f4b \ No newline at end of file diff --git a/android/build/generated/autolinking/package.json.sha b/android/build/generated/autolinking/package.json.sha deleted file mode 100644 index d019b54..0000000 --- a/android/build/generated/autolinking/package.json.sha +++ /dev/null @@ -1 +0,0 @@ -13716cf85df4d8fd35f711ffd65da3cfd12bca971c611db02b0f2aec4f0c2be6 \ No newline at end of file diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..7531e9e --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,56 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + +# AndroidX package structure to make it clearer which packages are bundled with the +# Android operating system, and which are packaged with your app's APK +# https://developer.android.com/topic/libraries/support-library/androidx-rn +android.useAndroidX=true + +# Enable AAPT2 PNG crunching +android.enablePngCrunchInReleaseBuilds=true + +# Use this property to specify which architecture you want to build. +# You can also override it from the CLI using +# ./gradlew -PreactNativeArchitectures=x86_64 +reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 + +# Use this property to enable support to the new architecture. +# This will allow you to use TurboModules and the Fabric render in +# your application. You should enable this flag either if you want +# to write custom TurboModules/Fabric components OR use libraries that +# are providing them. +newArchEnabled=true + +# Use this property to enable or disable the Hermes JS engine. +# If set to false, you will be using JSC instead. +hermesEnabled=true + +# Enable GIF support in React Native images (~200 B increase) +expo.gif.enabled=true +# Enable webp support in React Native images (~85 KB increase) +expo.webp.enabled=true +# Enable animated webp support (~3.4 MB increase) +# Disabled by default because iOS doesn't support animated webp +expo.webp.animated=false + +# Enable network inspector +EX_DEV_CLIENT_NETWORK_INSPECTOR=true + +# Use legacy packaging to compress native libraries in the resulting APK. +expo.useLegacyPackaging=false diff --git a/android/gradle/wrapper/gradle-wrapper.jar b/android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..a4b76b9 Binary files /dev/null and b/android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..79eb9d0 --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/android/gradlew b/android/gradlew new file mode 100755 index 0000000..f5feea6 --- /dev/null +++ b/android/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/android/gradlew.bat b/android/gradlew.bat new file mode 100644 index 0000000..9b42019 --- /dev/null +++ b/android/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..503b0c0 --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,38 @@ +pluginManagement { + includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile().toString()) +} +plugins { id("com.facebook.react.settings") } + +extensions.configure(com.facebook.react.ReactSettingsExtension) { ex -> + if (System.getenv('EXPO_USE_COMMUNITY_AUTOLINKING') == '1') { + ex.autolinkLibrariesFromCommand() + } else { + def command = [ + 'node', + '--no-warnings', + '--eval', + 'require(require.resolve(\'expo-modules-autolinking\', { paths: [require.resolve(\'expo/package.json\')] }))(process.argv.slice(1))', + 'react-native-config', + '--json', + '--platform', + 'android' + ].toList() + ex.autolinkLibrariesFromCommand(command) + } +} + +rootProject.name = 'ToDo' + +dependencyResolutionManagement { + versionCatalogs { + reactAndroidLibs { + from(files(new File(["node", "--print", "require.resolve('react-native/package.json')"].execute(null, rootDir).text.trim(), "../gradle/libs.versions.toml"))) + } + } +} + +apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle"); +useExpoModules() + +include ':app' +includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json', { paths: [require.resolve('react-native/package.json')] })"].execute(null, rootDir).text.trim()).getParentFile()) diff --git a/app.json b/app.json index c52627d..0351c61 100644 --- a/app.json +++ b/app.json @@ -19,7 +19,8 @@ "adaptiveIcon": { "foregroundImage": "./assets/adaptive-icon.png", "backgroundColor": "#ffffff" - } + }, + "package": "com.anonymous.ToDo" }, "web": { "favicon": "./assets/favicon.png" diff --git a/package.json b/package.json index 56fecc0..de59267 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "main": "index.js", "scripts": { "start": "expo start", - "android": "expo start --android", - "ios": "expo start --ios", + "android": "expo run:android", + "ios": "expo run:ios", "web": "expo start --web" }, "dependencies": {