Home | History | Annotate | only in /developers/build/prebuilts/gradle/BasicNetworking
Up to higher level directory
NameDateSize
.google/10-Mar-2015
Application/10-Mar-2015
build.gradle16-Dec-201410
CONTRIB.md16-Dec-20141.6K
CONTRIBUTING.md10-Mar-20151.5K
gradle/16-Dec-2014
gradlew16-Dec-20145K
gradlew.bat16-Dec-20142.3K
LICENSE16-Dec-201411.1K
NOTICE10-Mar-2015613
packaging.yaml16-Dec-2014496
README.md10-Mar-20152.4K
screenshots/10-Mar-2015
settings.gradle16-Dec-201422

README.md

      1 Android BasicNetworking Sample
      2 ===================================
      3 
      4 This sample demonstrates how to check network connectivity with Android APIs.
      5 
      6 Introduction
      7 ------------
      8 
      9 It utilizes the [`ConnectivityManager`][1] to determine if you have
     10 a network connection, and if so, what type of connection it is.
     11 
     12 A [`NetworkInfo`][2] object is retrieved from the ConnectivityManager, which contains information
     13 on the active connection, and then the connection type is printed to an on-screen console.
     14 
     15 Multiple types of connectivity can be displayed and could be used to take different measures
     16 in actual production code.
     17 
     18 [1]: https://developer.android.com/reference/android/net/ConnectivityManager.html
     19 [2]: https://developer.android.com/reference/android/net/NetworkInfo.html
     20 
     21 Pre-requisites
     22 --------------
     23 
     24 - Android SDK v21
     25 - Android Build Tools v21.1.1
     26 - Android Support Repository
     27 
     28 Screenshots
     29 -------------
     30 
     31 <img src="screenshots/start.png" height="400" alt="Screenshot"/> <img src="screenshots/tested.png" height="400" alt="Screenshot"/> 
     32 
     33 Getting Started
     34 ---------------
     35 
     36 This sample uses the Gradle build system. To build this project, use the
     37 "gradlew build" command or use "Import Project" in Android Studio.
     38 
     39 Support
     40 -------
     41 
     42 - Google+ Community: https://plus.google.com/communities/105153134372062985968
     43 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
     44 
     45 If you've found an error in this sample, please file an issue:
     46 https://github.com/googlesamples/android-BasicNetworking
     47 
     48 Patches are encouraged, and may be submitted by forking this project and
     49 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
     50 
     51 License
     52 -------
     53 
     54 Copyright 2014 The Android Open Source Project, Inc.
     55 
     56 Licensed to the Apache Software Foundation (ASF) under one or more contributor
     57 license agreements.  See the NOTICE file distributed with this work for
     58 additional information regarding copyright ownership.  The ASF licenses this
     59 file to you under the Apache License, Version 2.0 (the "License"); you may not
     60 use this file except in compliance with the License.  You may obtain a copy of
     61 the License at
     62 
     63 http://www.apache.org/licenses/LICENSE-2.0
     64 
     65 Unless required by applicable law or agreed to in writing, software
     66 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     67 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
     68 License for the specific language governing permissions and limitations under
     69 the License.
     70