{"id":28471830,"url":"https://github.com/crazecoder/flutter_mintegral","last_synced_at":"2025-08-11T17:10:52.906Z","repository":{"id":66335882,"uuid":"307083630","full_name":"crazecoder/flutter_mintegral","owner":"crazecoder","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-10T10:15:05.000Z","size":193,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-01T22:36:05.037Z","etag":null,"topics":["ad","mintegral"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/crazecoder.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-10-25T11:27:01.000Z","updated_at":"2024-11-10T10:15:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"9b05d092-e711-4691-917a-7a93f5ea022d","html_url":"https://github.com/crazecoder/flutter_mintegral","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/crazecoder/flutter_mintegral","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazecoder%2Fflutter_mintegral","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazecoder%2Fflutter_mintegral/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazecoder%2Fflutter_mintegral/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazecoder%2Fflutter_mintegral/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crazecoder","download_url":"https://codeload.github.com/crazecoder/flutter_mintegral/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crazecoder%2Fflutter_mintegral/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269922964,"owners_count":24497015,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-11T02:00:10.019Z","response_time":75,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ad","mintegral"],"created_at":"2025-06-07T11:08:59.109Z","updated_at":"2025-08-11T17:10:52.875Z","avatar_url":"https://github.com/crazecoder.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_mintegral\n\nflutter_mintegral, Just support android, Welcome to the fork and develop ios version\n\n## Getting Started\n```yaml\ndependencies:\n  flutter_mintegral:\n    git:\n      url: git://github.com/crazecoder/flutter_mintegral.git\n```\n\n### Splash for native\nCreate SplashActivity.class\n```java\npublic class SplashActivity extends SplashAdAbstractActivity {\n    @Override\n    protected String getAppId() {\n        return \"xxxxx\";\n    }\n\n    @Override\n    protected String getAppKey() {\n        return \"xxxxxx\";\n    }\n\n    @Override\n    protected String getAdUnitId() {\n        return \"xxxxx\";\n    }\n\n    @Override\n    protected String getAdPlacementId() {\n        return \"xxxx\";\n    }\n\n    @Override\n    protected boolean isProtectGDPR() {\n        return false;\n    }\n\n    @Override\n    protected boolean isProtectCCPA() {\n        return false;\n    }\n\n    @Override\n    protected Integer getLaunchBackground() {\n        return null;\n    }\n}\n```\nstartActivity in MainActivity.class\n```java\npublic class MainActivity extends FlutterActivity {\n    @Override\n    protected void onCreate(Bundle savedInstanceState) {\n        super.onCreate(savedInstanceState);\n        Intent intent = new Intent(this, SplashActivity.class);\n        startActivity(intent);\n    }\n}\n```\n#### Splash for flutter\n```dart\nFlutterMintegral.initSdk({\n                     String appId,\n                     String appKey,\n                     /**\n                       * for EU-GDPR\n                       * false: MIntegralConstans.IS_SWITCH_ON\n                       */\n                     bool isProtectGDPR = true,\n                     /**\n                       * If set to TRUE, the server will not display personalized ads based on the user's personal information.\n                       * When receiving the user's request, and will not synchronize the user's information to other third-party partners.\n                       */\n                     bool isProtectCCPA = false,\n                   });\n\nFlutterMintegral.startSplashAd({\n    String adUnitId,\n    String placementId,\n    String launchBackgroundId,\n  });\n```\n#### Others\n```dart\nFlutterMintegral.showBannerAD({String adUnitId, String placementId});\n\nFlutterMintegral.disposeBannerAD({String adUnitId});\n\nFlutterMintegral.showInteractiveAD({\n                     String adUnitId,\n                     String placementId,\n                   });\n\nFlutterMintegral.showInterstitialVideoAD({\n                     String adUnitId,\n                     String placementId,\n                   });\n\nFlutterMintegral.showRewardVideoAD({\n                     String adUnitId,\n                     String placementId,\n                     String userId,\n                     String rewardId,\n                   });\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazecoder%2Fflutter_mintegral","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrazecoder%2Fflutter_mintegral","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrazecoder%2Fflutter_mintegral/lists"}