SDL2.0.8 with Android Studio 3.0.1

Hi. Yeah I’ve gotten a few projects building happily since then. Which part are you stuck on, or what sort of errors are you having?

You can just build the one architecture that you want. In your App’s build.gradle file you just need to specify which architectures you want to build. I build one during development on my phone and then comment it out so I can build all architectures and deploy an .apk on my car stereo for example.

Here’s what my app’s build.gradle looks like - note externalBuild and ndk sections.

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.sparkynz.myapp"
        minSdkVersion 15
        targetSdkVersion 19
        versionCode 1
        versionName "2.0"
        multiDexEnabled false
        externalNativeBuild {
            ndkBuild {
                targets "FCPlayPaul",
                        "LHASrc",
                        "SQLite",
                        "main"
            }
        }

        ndk {
            abiFilters 'armeabi-v7a' // Just build the one architecture
        }

    }