deploygate-android-sdk
deploygate-android-sdk copied to clipboard
Android SDK for DeployGate
We should give more controls to users. It should be done through meta-data because we are providing automated initialization.
All instructions in SDK except initialization require the active service connection, and the current implementation ignores the instructions until a service connection is established. See the following diagram. ```mermaid sequenceDiagram...
The current proguard rule is too much. It's enough to use the next rule. `-keep class com.deploygate.service.IDeployGateSdkService`
as alternative, we can host javadocs through github pages.
To follow up #83 and #84, we will be introducing a code-generation tool for sdk-mock. - Generate source files or class files based on sources in `sdk`. - Don't include...
By implementing this, developers would promote app updates to testers. ```java if (DeployGate.hasUpdate()) { startActivity(DeployGate.getPendingUpdateIntent()) } ```