We found an issue on Amazon market that IAP doesn't work if it's receivers located not in main DEX
file.
The question is how to force gradle
to put specific classes (receivers) into main DEX
file.
Here are the gradle DEX settings:
afterEvaluate {
tasks.matching {
it.name.startsWith('dex')
}.each { dx ->
if (dx.additionalParameters == null) {
dx.additionalParameters = []
}
dx.additionalParameters += '--multi-dex'
dx.additionalParameters += "--main-dex-list=class_files.txt"
}
}
dexOptions {
javaMaxHeapSize "4g"
preDexLibraries = false
}
compile('com.android.support:multidex:1.0.0')