MVN

com.google.android : support-v4

Maven & Gradle

Apr 13, 2012
245 usages

Android Support Library (v4) · The Support Package includes static "support libraries" that you can add to your Android application in order to use APIs that are either not available for older platform versions or that offer "utility" APIs that aren't a part of the framework APIs.

<dependency>
    <groupId>com.google.android</groupId>
    <artifactId>support-v4</artifactId>
    <version>r7</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.google.android : support-v4 to add to Maven or Gradle - Latest Versions:

  • Latest Stable: r7

All Versions

Choose a version of com.google.android : support-v4 to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
r7
support-v4-r7
r6
support-v4-r6

How to add a dependency to Maven

Add the following com.google.android : support-v4 maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.google.android</groupId>
    <artifactId>support-v4</artifactId>
    <version>r7</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.google.android : support-v4 gradle dependency to your build.gradle file:

implementation 'com.google.android:support-v4:r7'

Gradle Kotlin DSL: Add the following com.google.android : support-v4 gradle kotlin dependency to your build.gradle.kts file:

implementation("com.google.android:support-v4:r7")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.google.android : support-v4 sbt scala dependency to your build.sbt file:

libraryDependencies += "com.google.android" % "support-v4" % "r7"