Hi,
I've a question about "Notification handling".
Event are built like : [package_name]+.plot.OpenNotification
We have several "buildType" (debug/release) and several "productFlavors" (flavorsA / flavorsB) in our Gradle configuration.
In debug case, we have applicationIdSuffix ".debug" and for the productFlavor :
productFlavors {
flavorA {
applicationId "package_a"
}
flavorB {
applicationId "package_b"
}
}
So we have 4 different packages:
package_a
package_a.debug
package_b
package_b.debug
But only one manifest.
However, we can't define an event like
<action android:name=".plot.OpenNotification" />
or
<action android:name="@string/plot_key_action" />
The question is : How to handle events without defining 4 different manifests ? And without hard-coded that.
Regards,
Alex