Thank you for the quick response, Fernando!
Ok, we're getting somewhere! It seems that resolved my initial issue, but now I'm getting a different error:
--------------------------------------------------------------------------------------
Downloading Please login to see this link.
..............................................................................................................................................................
Unzipping C:\Users\bitbite\.gradle\wrapper\dists\gradle-7.5-all\6qsw290k5lz422uaf8jf6m7co\gradle-7.5-all.zip to C:\Users\bitbite\.gradle\wrapper\dists\gradle-7.5-all\6qsw290k5lz422uaf8jf6m7co
Starting a Gradle Daemon, 1 incompatible Daemon could not be reused, use --status for details
> Task :app:preBuild UP-TO-DATE
> Task :app:preDebugBuild UP-TO-DATE
> Task :app:compileDebugAidl NO-SOURCE
> Task :app:compileDebugRenderscript NO-SOURCE
> Task :app:generateDebugBuildConfig
> Task :app:javaPreCompileDebug
> Task :app:checkDebugAarMetadata FAILED
> Task :app:generateDebugResValues
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckAarMetadataWorkAction
> The minCompileSdk (31) specified in a
dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties)
is greater than this module's compileSdkVersion (android-29).
Dependency: androidx.appcompat:appcompat:1.4.1.
AAR metadata file: C:\Users\bitbite\.gradle\caches\transforms-3\f052799bd1514fad727c14656fc8e64d\transformed\appcompat-1.4.1\META-INF\com\android\build\gradle\aar-metadata.properties.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at Please login to see this link.
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins.
See Please login to see this link.
BUILD FAILED in 1m 7s
4 actionable tasks: 4 executed
--------------------------------------------------------------------------------------
My Build API is set to 29, with minimum Android version set to 4.4 and Target Android Version set to 8.0
Display Mode is OpenGL ES 1.1 though i'm not sure if that has to do with anything.
EDIT: And solved! I followed Linky's advice from another thread, and changed my settings as such:
App Android properties:
- Build API: 33
- Minimum Android version: 5.0
- Target Android version: 13.0
Thanks again!