also...
example of part of my app config...
android {
compileSdkVersion 30
defaultConfig {
if (buildAsApplication) {
// GLBASIC_USER_NOTE applicationId
// Here, GLBasic will put your company and app name.
// The string for the launcher icon is in
// app/src/main/res/values/strings.xml
// applicationId "com.gazzappergames.centiplode.centipedeshooter"
applicationId "com.gazzapper.pillarfight.shooter"
}
// GLBASIC_USER_NOTE versionCode, versionNumber, target SDK
minSdkVersion 23
targetSdkVersion 30
// version to detect when installing. Must be incresed for each app-store build.
versionCode 1
// version as shown to the user
versionName "1.01"
externalNativeBuild {
ndkBuild {
arguments "APP_PLATFORM=android-23"
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
}
}
...
etc etc.
Remember to keep gradle 3.4.1
at least mine is still on 3.4.1