tommybuonomo / dotsindicator

Three material Dots Indicators for view pagers in Android !
Apache License 2.0
3.46k stars 354 forks source link

For Custom buildTypes Not Import #170

Open rohitPagare opened 1 year ago

rohitPagare commented 1 year ago

When i create custom build type another than debug or release like qa(Qaulity Analysis) it will through exception

FAILURE: Build completed with 11 failures.

1: Task failed with an exception.

bhavesh3005sharma commented 1 year ago

I am also facing the same issue. @tommybuonomo Does anyone looking into this please add updates.

LinasSkardzius commented 1 year ago

The same issue :(

fulcrum6378 commented 1 year ago

Temporarily we can use this: For Kotlin:

    buildTypes {
        create("debuggee") {
            ...
            matchingFallbacks += listOf("debug")
        }
    }

For Groovy:

    buildTypes {
        debuggee {
            ...
            matchingFallbacks = ['debug']
        }
    }

The publisher must publish a new version with a SINGLE VARIANT! so that we won't need to use the trick above. Explained more in here: https://github.com/tommybuonomo/dotsindicator/issues/178