Cocos2d-x 3.15 + Fabric Crashlytics SDK output folder?

@nite @mars3142

Hey, do you know where in 3.15 version is now compiled libs and obj folders? As I see there is no anymore folder obj and libs under /app.

Crashlyticis from fabric need to have in gradle parameters to point libs and obj folder- but can’t find correct path’s.

crashlytics {
    enableNdk true
    androidNdkOut 'build/intermediates/ndkBuild/release/obj'
    androidNdkLibsOut 'build/intermediates/ndkBuild/release/obj'
}

It seems just solved issue :smiley:

crashlytics {
    enableNdk true
    androidNdkOut 'build/intermediates/ndkBuild/release/obj/local'
    androidNdkLibsOut 'build/intermediates/ndkBuild/release/obj/local'
}

Can someone confirm that I made it correrctly? Is there way in gradle to predefine debug and release path to be taken based on command I laucnhing?

./gradlew crashlyticsUploadSymbolsRelease

./gradlew crashlyticsUploadSymbolsDebug