You can try out this:
Use Gradle 6.1.1 and Android SDK 29.
settings.gradle
empty
build.gradle (example from the official docs):
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
apply plugin: 'com.android.application'
android { compileSdkVersion 29 }
repositories { jcenter() }
src/main/AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example">
</manifest>
Plenty of android boilerplates are also available on Github