1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.facebook.react</groupId>
- <artifactId>react-native</artifactId>
- <version>0.61.1</version>
- <packaging>aar</packaging>
- <name>ReactNative</name>
- <description>A framework for building native apps with React</description>
- <url>https://github.com/facebook/react-native</url>
- <licenses>
- <license>
- <name>MIT License</name>
- <url>https://github.com/facebook/react-native/blob/master/LICENSE</url>
- <distribution>repo</distribution>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>facebook</id>
- <name>Facebook</name>
- </developer>
- </developers>
- <scm>
- <connection>scm:git:https://github.com/facebook/react-native.git</connection>
- <developerConnection>scm:git:git@github.com:facebook/react-native.git</developerConnection>
- <url>https://github.com/facebook/react-native.git</url>
- </scm>
- <dependencies>
- <dependency>
- <groupId>com.facebook.infer.annotation</groupId>
- <artifactId>infer-annotation</artifactId>
- <version>0.11.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.inject</groupId>
- <artifactId>javax.inject</artifactId>
- <version>1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>androidx.appcompat</groupId>
- <artifactId>appcompat</artifactId>
- <version>1.0.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.facebook.fresco</groupId>
- <artifactId>fresco</artifactId>
- <version>2.0.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.facebook.fresco</groupId>
- <artifactId>imagepipeline-okhttp3</artifactId>
- <version>2.0.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.facebook.soloader</groupId>
- <artifactId>soloader</artifactId>
- <version>0.6.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.findbugs</groupId>
- <artifactId>jsr305</artifactId>
- <version>3.0.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp</artifactId>
- <version>3.12.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.squareup.okhttp3</groupId>
- <artifactId>okhttp-urlconnection</artifactId>
- <version>3.12.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.squareup.okio</groupId>
- <artifactId>okio</artifactId>
- <version>1.15.0</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- </project>
|