{"id":15133917,"url":"https://github.com/kyuqw/flutter_vk_sdk","last_synced_at":"2025-10-23T09:31:23.457Z","repository":{"id":54764814,"uuid":"190605987","full_name":"kyuqw/flutter_vk_sdk","owner":"kyuqw","description":null,"archived":false,"fork":false,"pushed_at":"2020-04-15T07:26:07.000Z","size":136,"stargazers_count":17,"open_issues_count":2,"forks_count":8,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-30T17:38:23.055Z","etag":null,"topics":["flutter","flutter-plugin","vk","vk-api","vk-sdk","vkontakte"],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/kyuqw.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}},"created_at":"2019-06-06T15:33:29.000Z","updated_at":"2022-12-20T14:28:17.000Z","dependencies_parsed_at":"2022-08-14T02:10:25.394Z","dependency_job_id":null,"html_url":"https://github.com/kyuqw/flutter_vk_sdk","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyuqw%2Fflutter_vk_sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyuqw%2Fflutter_vk_sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyuqw%2Fflutter_vk_sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kyuqw%2Fflutter_vk_sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kyuqw","download_url":"https://codeload.github.com/kyuqw/flutter_vk_sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237807461,"owners_count":19369596,"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","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":["flutter","flutter-plugin","vk","vk-api","vk-sdk","vkontakte"],"created_at":"2024-09-26T05:01:39.502Z","updated_at":"2025-10-23T09:31:18.115Z","avatar_url":"https://github.com/kyuqw.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flutter_vk_sdk\n\n[![pub package](https://img.shields.io/pub/v/flutter_vk_sdk.svg)](https://pub.dev/packages/flutter_vk_sdk)\n\nFlutter vk sdk project.\n\nThis plugin is based on:\n- Android: [vk-android-sdk v2.1.0](https://github.com/VKCOM/vk-android-sdk/tree/2.1.0)\n- iOS: [vk-ios-sdk](https://github.com/VKCOM/vk-ios-sdk)\n\n## Installation\n\nFirst, add  [*`flutter_vk_sdk`*](https://pub.dev/packages/flutter_vk_sdk#-installing-tab-)  as a dependency in [your pubspec.yaml file](https://flutter.io/platform-plugins/).\n\n```\nflutter_vk_sdk: ^0.0.6+4\n```\n\n### Android\n\nIn your android res/values create strings.xml and fill with this examples\n```xml\n\u003c?xml version=\"1.0\" encoding=\"utf-8\"?\u003e\n\u003cresources\u003e\n    \u003cinteger name=\"com_vk_sdk_AppId\"\u003eYOUR_VK_APP_ID\u003c/integer\u003e\n\u003c/resources\u003e\n```\n\n### iOS\n\n* AppDelegate\n```\nimport UIKit\nimport Flutter\nimport VK_ios_sdk\n\n@UIApplicationMain\n@objc class AppDelegate: FlutterAppDelegate {\n    override func application(\n        _ application: UIApplication,\n        didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?\n        ) -\u003e Bool {\n        GeneratedPluginRegistrant.register(with: self)\n        return super.application(application, didFinishLaunchingWithOptions: launchOptions)\n    }\n    \n    override func application(_ app: UIApplication, open url: URL, options: [UIApplicationOpenURLOptionsKey : Any] = [:]) -\u003e Bool {\n        VKSdk.processOpen(url, fromApplication: \"\")\n        return true\n    }\n}\n```\n\n* info.plist\n```\n\u003ckey\u003eCFBundleURLTypes\u003c/key\u003e\n    \u003carray\u003e\n        \u003cdict\u003e\n            \u003ckey\u003eCFBundleTypeRole\u003c/key\u003e\n            \u003cstring\u003eEditor\u003c/string\u003e\n            \u003ckey\u003eCFBundleURLName\u003c/key\u003e\n            \u003cstring\u003evk{YOUR_APP_ID}\u003c/string\u003e\n            \u003ckey\u003eCFBundleURLSchemes\u003c/key\u003e\n            \u003carray\u003e\n                \u003cstring\u003evk{YOUR_APP_ID}\u003c/string\u003e\n            \u003c/array\u003e\n        \u003c/dict\u003e\n    \u003c/array\u003e\n\n\n\u003ckey\u003eLSApplicationQueriesSchemes\u003c/key\u003e\n\u003carray\u003e\n    \u003cstring\u003evk\u003c/string\u003e\n    \u003cstring\u003evk-share\u003c/string\u003e\n    \u003cstring\u003evkauthorize\u003c/string\u003e\n\u003c/array\u003e\n```\n\n## Dart usage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyuqw%2Fflutter_vk_sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkyuqw%2Fflutter_vk_sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkyuqw%2Fflutter_vk_sdk/lists"}