I got the message from google that I need to update the API level to 28 or above few weeks ago and since then I'm trying to do this and having problems and can't fix my app to build.
I've tried all the manuals, tutorials and advice over the web.
I can't update to the new Android studio version because that is braking my project in all kind of ways and I'm really stuck and soon my app won't work anymore.
I'm not an Android developer, I'm an IOS developer who developed one app that is a nice, free service for many people and want it to stay alive.
This is where I stand right now:
- I've ran rm -rf $HOME/.gradle/caches/
- Cleaned the wrapper/dist
- Downloaded gradle 3.2.1 and added it to the VS app content library:
Changed the gradle version and tried different plugin versions.
- This my gradle-wrapper.properties contents:
Sat Oct 26 13:43:37 IDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-3.2.1-all.zip
My dependencies in build.gradle for the project:
buildscript { repositories { jcenter() }
dependencies { classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files
} }
dependencies for the build.gradle for the app:
** Getting the following when syncing - and I just don't understand what to do anymore **
* I've looked and there are no pom and jar files for 3.2.1 in the directory, the error is correct but don't have any idea how to fix that *
p.s. I've downloaded the gradle 3.2.1 because from what I understand, that is the version that is needed to build the API level 28.
10x