Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Review Suggested Edit

You can't approve or reject suggested edits because you haven't yet earned the Edit Posts ability.

Approved.
This suggested edit was approved and applied to the post 8 months ago by Alexei‭.

26 / 255
Help with android studio gradle
  • ``Need help finding if my dependencies need upgrading or conflict with each other.
  • -tried using the command prompt to solve problems but didn't help.Here is my code.
  • code
  • Android Studio Iguana | 2023.2.1 Canary 3
  • Build #AI-232.9559.62.2321.10773421, built on September 7, 2023
  • Runtime version: 17.0.8+0--10699129 amd64
  • VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
  • Windows 10.0
  • GC: G1 Young Generation, G1 Old Generation
  • Memory: 2048M
  • Cores: 4
  • Registry:
  • external.system.auto.import.disabled=true
  • ide.text.editor.with.preview.show.floating.toolbar=false
  • ide.highlighting.mode.essential=true
  • ide.experimental.ui=true
  • ide.essentials.mode=true
  • Non-Bundled Plugins:
  • nl.bryanderidder.regexrenamefiles (1.2.5)
  • Dart (232.9559.10)
  • io.flutter (75.1.4)
  • ---------------------------------------------------------------------------
  • build.gradle.kts(mobileapp)
  • @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
  • plugins {
  • alias(libs.plugins.androidApplication)
  • }
  • android {
  • namespace = "com.example.chat"
  • compileSdk = 34
  • defaultConfig {
  • applicationId = "com.example.chat"
  • minSdk = 33
  • targetSdk = 34
  • versionCode = 1
  • versionName = "1.0"
  • testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  • }
  • buildTypes {
  • release {
  • isMinifyEnabled = false
  • proguardFiles(
  • getDefaultProguardFile("proguard-android-optimize.txt"),
  • "proguard-rules.pro"
  • )
  • }
  • }
  • compileOptions {
  • sourceCompatibility = JavaVersion.VERSION_1_8
  • targetCompatibility = JavaVersion.VERSION_1_8
  • }
  • }
  • dependencies {
  • implementation(libs.appcompat)
  • implementation(libs.material)
  • implementation(libs.constraintlayout)
  • implementation(libs.androidx.recyclerview)
  • implementation(libs.okhttp)
  • testImplementation(libs.junit)
  • androidTestImplementation(libs.androidx.test.ext.junit)
  • androidTestImplementation(libs.espresso.core)
  • implementation("androidx.recyclerview:recyclerview:1.3.1")
  • }
  • =======================================================================
  • build.gradle.kts(Project chat}
  • // Top-level build file where you can add configuration options common to all sub-projects/modules.
  • @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
  • plugins {
  • alias(libs.plugins.androidApplication) apply false
  • }
  • true // Needed to
  • ----------------------------------------------------------------------
  • gradle.properties
  • # 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.
  • org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
  • # 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
  • # Enables namespacing of each library's R class so that its R class includes only the
  • # resources declared in the library itself and none from the library's dependencies,
  • # thereby reducing the size of the R class for that library
  • android.nonTransitiveRClass=true
  • ----------------------------------------------------------------------
  • Gradle -wrapper.properties
  • #Mon Sep 11 16:32:07 CDT 2023
  • distributionBase=GRADLE_USER_HOME
  • distributionPath=wrapper/dists
  • distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-bin.zip
  • zipStoreBase=GRADLE_USER_HOME
  • zipStorePath=wrapper/dists
  • -----------------------------------------------------------------------
  • setting.gradle.kts
  • pluginManagement {
  • repositories {
  • google()
  • mavenCentral()
  • gradlePluginPortal()
  • }
  • }
  • dependencyResolutionManagement {
  • repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  • repositories {
  • google()
  • mavenCentral()
  • }
  • }
  • rootProject.name = "chat"
  • include(":app")
  • -----------------------------------------------------------------------
  • lib.versions.toml
  • [versions]
  • agp = "8.3.0-alpha03"
  • junit = "4.13.2"
  • androidx-test-ext-junit = "1.1.5"
  • espresso-core = "3.5.1"
  • appcompat = "1.6.1"
  • material = "1.9.0"
  • constraintlayout = "2.1.4"
  • recyclerview = "1.3.1"
  • okhttp = "5.0.0-alpha.11"
  • [libraries]
  • junit = { group = "junit", name = "junit", version.ref = "junit" }
  • androidx-test-ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-ext-junit" }
  • espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  • appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  • material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  • constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  • androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
  • okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
  • [plugins]
  • androidApplication = { id = "com.android.application", version.ref = "agp" }
  • -----------------------------------------------------------------------
  • Code
  • I need help figuring out if my dependencies need upgrading or conflict with each other. I tried using the command prompt to solve problems but it didn't help. Here is my code.
  • ```
  • Android Studio Iguana | 2023.2.1 Canary 3
  • Build #AI-232.9559.62.2321.10773421, built on September 7, 2023
  • Runtime version: 17.0.8+0--10699129 amd64
  • VM: OpenJDK 64-Bit Server VM by JetBrains s.r.o.
  • Windows 10.0
  • GC: G1 Young Generation, G1 Old Generation
  • Memory: 2048M
  • Cores: 4
  • Registry:
  • external.system.auto.import.disabled=true
  • ide.text.editor.with.preview.show.floating.toolbar=false
  • ide.highlighting.mode.essential=true
  • ide.experimental.ui=true
  • ide.essentials.mode=true
  • Non-Bundled Plugins:
  • nl.bryanderidder.regexrenamefiles (1.2.5)
  • Dart (232.9559.10)
  • io.flutter (75.1.4)
  • ---------------------------------------------------------------------------
  • build.gradle.kts(mobileapp)
  • @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
  • plugins {
  • alias(libs.plugins.androidApplication)
  • }
  • android {
  • namespace = "com.example.chat"
  • compileSdk = 34
  • defaultConfig {
  • applicationId = "com.example.chat"
  • minSdk = 33
  • targetSdk = 34
  • versionCode = 1
  • versionName = "1.0"
  • testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  • }
  • buildTypes {
  • release {
  • isMinifyEnabled = false
  • proguardFiles(
  • getDefaultProguardFile("proguard-android-optimize.txt"),
  • "proguard-rules.pro"
  • )
  • }
  • }
  • compileOptions {
  • sourceCompatibility = JavaVersion.VERSION_1_8
  • targetCompatibility = JavaVersion.VERSION_1_8
  • }
  • }
  • dependencies {
  • implementation(libs.appcompat)
  • implementation(libs.material)
  • implementation(libs.constraintlayout)
  • implementation(libs.androidx.recyclerview)
  • implementation(libs.okhttp)
  • testImplementation(libs.junit)
  • androidTestImplementation(libs.androidx.test.ext.junit)
  • androidTestImplementation(libs.espresso.core)
  • implementation("androidx.recyclerview:recyclerview:1.3.1")
  • }
  • =======================================================================
  • build.gradle.kts(Project chat}
  • // Top-level build file where you can add configuration options common to all sub-projects/modules.
  • @Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
  • plugins {
  • alias(libs.plugins.androidApplication) apply false
  • }
  • true // Needed to
  • ----------------------------------------------------------------------
  • gradle.properties
  • # 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.
  • org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
  • # 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
  • # Enables namespacing of each library's R class so that its R class includes only the
  • # resources declared in the library itself and none from the library's dependencies,
  • # thereby reducing the size of the R class for that library
  • android.nonTransitiveRClass=true
  • ----------------------------------------------------------------------
  • Gradle -wrapper.properties
  • #Mon Sep 11 16:32:07 CDT 2023
  • distributionBase=GRADLE_USER_HOME
  • distributionPath=wrapper/dists
  • distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-bin.zip
  • zipStoreBase=GRADLE_USER_HOME
  • zipStorePath=wrapper/dists
  • -----------------------------------------------------------------------
  • setting.gradle.kts
  • pluginManagement {
  • repositories {
  • google()
  • mavenCentral()
  • gradlePluginPortal()
  • }
  • }
  • dependencyResolutionManagement {
  • repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  • repositories {
  • google()
  • mavenCentral()
  • }
  • }
  • rootProject.name = "chat"
  • include(":app")
  • -----------------------------------------------------------------------
  • lib.versions.toml
  • [versions]
  • agp = "8.3.0-alpha03"
  • junit = "4.13.2"
  • androidx-test-ext-junit = "1.1.5"
  • espresso-core = "3.5.1"
  • appcompat = "1.6.1"
  • material = "1.9.0"
  • constraintlayout = "2.1.4"
  • recyclerview = "1.3.1"
  • okhttp = "5.0.0-alpha.11"
  • [libraries]
  • junit = { group = "junit", name = "junit", version.ref = "junit" }
  • androidx-test-ext-junit = { group = "androidx.test.ext", name = "junit", version.ref = "androidx-test-ext-junit" }
  • espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso-core" }
  • appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
  • material = { group = "com.google.android.material", name = "material", version.ref = "material" }
  • constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
  • androidx-recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" }
  • okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
  • [plugins]
  • androidApplication = { id = "com.android.application", version.ref = "agp" }
  • -----------------------------------------------------------------------
  • ```

Suggested 8 months ago by Karl Knechtel‭