### Configure Pro SDK Dependencies Source: https://context7.com/sudtechnology/sud-mgp-android/llms.txt Add the Pro version of the SudGIP SDK to access the full game catalog. ```groovy // build.gradle (app level) dependencies { // Pro SudGIP SDK (supports all games) api 'tech.sud.gip:SudGIP-pro:1.6.7.1286' // For Google Play publishing, use static dependency instead: // api 'tech.sud.gip:SudGIP-pro-static:1.6.7.1286' // Optional: Multilingual Speech Recognition Extension Library api 'tech.sud.gip:SudASR:1.6.7.1286' } ``` -------------------------------- ### Configure Standard SDK Dependencies Source: https://context7.com/sudtechnology/sud-mgp-android/llms.txt Add the standard SudGIP SDK and optional ASR library to your app-level build.gradle file. ```groovy // build.gradle (app level) dependencies { // Standard SudGIP SDK api 'tech.sud.gip:SudGIP:1.6.7.1286' // For Google Play publishing, use static dependency instead: // api 'tech.sud.gip:SudGIP-static:1.6.7.1286' // Optional: Multilingual Speech Recognition Extension Library api 'tech.sud.gip:SudASR:1.6.7.1286' } ``` -------------------------------- ### Initialize SudGIPWrapper Source: https://context7.com/sudtechnology/sud-mgp-android/llms.txt Use the SudGIPWrapper class to manage SDK initialization and resource cleanup within an Activity. ```java // Initialize SudGIPWrapper in your Activity or Application import tech.sud.gip.SudGIPWrapper; public class GameActivity extends AppCompatActivity { private SudGIPWrapper sudGIPWrapper; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_game); // Initialize the SDK wrapper sudGIPWrapper = new SudGIPWrapper(); // Configure and start game integration // Refer to QuickStart documentation for complete implementation } @Override protected void onDestroy() { super.onDestroy(); // Clean up SDK resources if (sudGIPWrapper != null) { sudGIPWrapper.release(); } } } ``` -------------------------------- ### Integrate SDK via AAR Files Source: https://context7.com/sudtechnology/sud-mgp-android/llms.txt Manually include SDK AAR files in your project when Maven repositories are unavailable. ```groovy // 1. Download SDK from GitHub releases: // - Standard: SudGIP-Android-v1.6.7.1286.zip // - Pro: SudGIP-Android-v1.6.7.1286-pro.zip // - ASR (optional): SudASR-Android-v1.6.7.1286.zip // 2. Extract AAR files and copy to app/libs/ directory // 3. Add to build.gradle (app level): dependencies { implementation fileTree(dir: 'libs', include: ['*.aar']) } // 4. Ensure libs directory is included in repositories: repositories { flatDir { dirs 'libs' } } ``` -------------------------------- ### Standard SudGIP SDK Maven Dependency Source: https://github.com/sudtechnology/sud-mgp-android/blob/main/README_en.md Use this dependency for the Standard SudGIP SDK when publishing to Google Play. Includes the optional Multilingual Speech Recognition Extension Library. ```gradle // Standard SudGIP SDK // Use this dependency when publishing to Google Play: api 'tech.sud.gip:SudGIP-static:1.6.7.1286' api 'tech.sud.gip:SudGIP:1.6.7.1286' // Multilingual Speech Recognition Extension Library (optional) api 'tech.sud.gip:SudASR:1.6.7.1286' ``` -------------------------------- ### Pro SudGIP SDK Maven Dependency Source: https://github.com/sudtechnology/sud-mgp-android/blob/main/README_en.md Use this dependency for the Pro SudGIP SDK when publishing to Google Play. Includes the optional Multilingual Speech Recognition Extension Library. ```gradle // Pro SudGIP SDK // Use this dependency when publishing to Google Play: api 'tech.sud.gip:SudGIP-pro-static:1.6.7.1286' api 'tech.sud.gip:SudGIP-pro:1.6.7.1286' // Multilingual Speech Recognition Extension Library (optional) api 'tech.sud.gip:SudASR:1.6.7.1286' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.