{"id":20119603,"url":"https://github.com/box/box-android-sdk","last_synced_at":"2025-05-06T14:32:40.914Z","repository":{"id":30402667,"uuid":"33955440","full_name":"box/box-android-sdk","owner":"box","description":null,"archived":false,"fork":false,"pushed_at":"2023-07-06T15:50:51.000Z","size":1404,"stargazers_count":62,"open_issues_count":24,"forks_count":74,"subscribers_count":62,"default_branch":"master","last_synced_at":"2024-05-14T00:02:56.020Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/box.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-14T20:30:55.000Z","updated_at":"2023-12-06T04:58:33.000Z","dependencies_parsed_at":"2023-01-14T17:00:41.807Z","dependency_job_id":null,"html_url":"https://github.com/box/box-android-sdk","commit_stats":null,"previous_names":["box/box-android-content-sdk"],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/box%2Fbox-android-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/box%2Fbox-android-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/box%2Fbox-android-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/box%2Fbox-android-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/box","download_url":"https://codeload.github.com/box/box-android-sdk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224509404,"owners_count":17323079,"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":[],"created_at":"2024-11-13T19:16:16.890Z","updated_at":"2024-11-13T19:16:19.937Z","avatar_url":"https://github.com/box.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/box/sdks/blob/master/images/box-dev-logo.png\" alt= “box-dev-logo” width=\"30%\" height=\"50%\"\u003e\n\u003c/p\u003e\n\n[![Project Status](http://opensource.box.com/badges/deprecated.svg)](http://opensource.box.com/badges)\n\n# As of May 31, 2023, Box no longer supports Android SDK\n\nWe no longer support Android SDK as of May 31, 2023. Customers will be able to use their existing Android SDK applications with no impact, but will not receive new features, updates, or bug fixes.\n \n\nIf you would like to continue getting the latest and greatest Android features, we recommend using Java SDK to build apps on Android. Refer to the [documentation](https://github.com/box/box-java-sdk/blob/main/doc/android.md) and [blog post](https://medium.com/box-developer-blog/using-box-java-sdk-in-android-app-with-oauth-2-0-part-1-dbf6d04f9b51) for more details.\n\nBox Android Content SDK\n===================\n\nThis SDK makes it easy to use Box's [Content API](https://box-content.readme.io/reference) in your Android projects.\n\nGetting Started Docs: https://developer.box.com/guides/mobile/android/install/\n\nQuickstart\n----------\nStep 1: Add the SDK to your project\n\nThe SDK can be obtained by adding it as a maven dependency, cloning the source into your project, or by downloading one of the precompiled JARs from the releases page on GitHub.\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.box\u003c/groupId\u003e\n    \u003cartifactId\u003ebox-android-sdk\u003c/artifactId\u003e\n\u003c/dependency\u003e\n```\n\nThis SDK has the following dependencies and will need to be included if you use the JAR:\n* minimal-json v0.9.1 (for maven: com.eclipsesource.minimal-json:minimal-json:0.9.1)\n\nStep 2: Set the Box Client ID, Client Secret, and Redirect URI(if set) that you obtain from [creating a developer account](http://developers.box.com/)\n```java\nBoxConfig.CLIENT_ID = \"your-client-id\";\nBoxConfig.CLIENT_SECRET = \"your-client-secret\";\n// must match the redirect_uri set in your developer account if one has been set. Redirect uri should not be of type file:// or content://.\nBoxConfig.REDIRECT_URL = \"your-redirect-uri\";\n```\n\nStep 3: Authenticate a User\n```java\n// This will present the necessary UI for a user to authenticate into Box. \n// Pass in the current context.\nBoxSession session = new BoxSession(MainActivity.this);\nsession.authenticate();\n```\n\nSample App\n----------\nA sample app can be found in the [box-content-sample](box-content-sample) folder. The sample app demonstrates how to authenticate a user, view the user's files and folders, and upload a file.\n\nDocumentation\n-------------\nYou can find guides and tutorials in the `doc` directory.\n\n* [Authentication](doc/Authentication.md)\n* [Developer's Edition (App Users)](doc/AppUsers.md)\n* [Files](doc/Files.md)\n* [Folders](doc/Folders.md)\n* [Comments](doc/Comments.md)\n* [Collaborations](doc/Collaborations.md)\n* [Events](doc/Events.md)\n* [Search](doc/Search.md)\n* [Users](doc/Users.md)\n\nContributing\n------------\nSee [CONTRIBUTING](CONTRIBUTING.md) on how to help out.\n\nCopyright and License\n---------------------\nCopyright 2015 Box, Inc. All rights reserved.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n   http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbox%2Fbox-android-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbox%2Fbox-android-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbox%2Fbox-android-sdk/lists"}