Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.google/ | 10-Mar-2015 | ||
Application/ | 10-Mar-2015 | ||
build.gradle | 16-Dec-2014 | 10 | |
CONTRIB.md | 16-Dec-2014 | 1.6K | |
CONTRIBUTING.md | 10-Mar-2015 | 1.5K | |
gradle/ | 16-Dec-2014 | ||
gradlew | 16-Dec-2014 | 5K | |
gradlew.bat | 16-Dec-2014 | 2.3K | |
LICENSE | 16-Dec-2014 | 11.1K | |
NOTICE | 10-Mar-2015 | 613 | |
packaging.yaml | 16-Dec-2014 | 475 | |
README.md | 10-Mar-2015 | 2.3K | |
screenshots/ | 10-Mar-2015 | ||
settings.gradle | 16-Dec-2014 | 22 |
1 Android MyCloud Sample 2 =================================== 3 4 This sample shows how to implement a simple documents provider using the storage access 5 framework available in Android 4.4. 6 7 Introduction 8 ------------ 9 10 This sample uses the [StorageAccessFramework][1] introduced in Android 4.4 to implement a [DocumentsProvider][2]. 11 12 See [Writing A Custom Document Provider guide][3] for all the details on how to do this. 13 14 15 [1]: https://developer.android.com/guide/topics/providers/document-provider.html 16 [2]: https://developer.android.com/reference/android/provider/DocumentsProvider.html 17 [3]: https://developer.android.com/guide/topics/providers/document-provider.html#custom 18 19 Pre-requisites 20 -------------- 21 22 - Android SDK v21 23 - Android Build Tools v21.1.1 24 - Android Support Repository 25 26 Screenshots 27 ------------- 28 29 <img src="screenshots/1-logged-out.png" height="400" alt="Screenshot"/> <img src="screenshots/2-logged-in.png" height="400" alt="Screenshot"/> 30 31 Getting Started 32 --------------- 33 34 This sample uses the Gradle build system. To build this project, use the 35 "gradlew build" command or use "Import Project" in Android Studio. 36 37 Support 38 ------- 39 40 - Google+ Community: https://plus.google.com/communities/105153134372062985968 41 - Stack Overflow: http://stackoverflow.com/questions/tagged/android 42 43 If you've found an error in this sample, please file an issue: 44 https://github.com/googlesamples/android-MyCloud 45 46 Patches are encouraged, and may be submitted by forking this project and 47 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details. 48 49 License 50 ------- 51 52 Copyright 2014 The Android Open Source Project, Inc. 53 54 Licensed to the Apache Software Foundation (ASF) under one or more contributor 55 license agreements. See the NOTICE file distributed with this work for 56 additional information regarding copyright ownership. The ASF licenses this 57 file to you under the Apache License, Version 2.0 (the "License"); you may not 58 use this file except in compliance with the License. You may obtain a copy of 59 the License at 60 61 http://www.apache.org/licenses/LICENSE-2.0 62 63 Unless required by applicable law or agreed to in writing, software 64 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 65 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 66 License for the specific language governing permissions and limitations under 67 the License. 68