Skip to content

Migrate project to AndroidX and update SDK#4

Open
akarshan96 wants to merge 1 commit intomasterfrom
codex/update-gradle-file-for-sdk-and-dependencies
Open

Migrate project to AndroidX and update SDK#4
akarshan96 wants to merge 1 commit intomasterfrom
codex/update-gradle-file-for-sdk-and-dependencies

Conversation

@akarshan96
Copy link
Owner

Summary

  • Update build system and Gradle wrapper for AGP 8.2
  • Move app module to AndroidX with modern dependencies and SDK 34
  • Replace legacy Play Services bundle with vision-specific artifact

Testing

  • ./gradlew test (fails: Unable to tunnel through proxy. Proxy returns "HTTP/1.1 403 Forbidden")

https://chatgpt.com/codex/tasks/task_e_68b35dfdf4a88330b2b5573932db8f3c

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codex Review: Here are some suggestions.

Reply with @codex fix comments to fix any unresolved comments.

About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".

Comment on lines 3 to +14
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.android.tools.build:gradle:8.2.2'
}
}

allprojects {
repositories {
jcenter()
google()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Add repository for com.github.bloder:magic dependency

The top-level repositories list was reduced to only google() and mavenCentral(), but the module still declares implementation 'com.github.bloder:magic:1.1'. That artifact is distributed via JCenter/JitPack and is not available from Google or Maven Central, so removing JCenter causes Gradle to fail when resolving the dependency and the project no longer builds. An additional repository (e.g., JitPack) or an alternative artifact is needed.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant