Skip to content
This repository was archived by the owner on Sep 3, 2020. It is now read-only.

Commit 429ea06

Browse files
author
Bartol Karuza
committed
android archives for github link npm dependency
1 parent 7a09848 commit 429ea06

16 files changed

+121
-1
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ buck-out
4444
.gradle
4545
local.properties
4646
*.iml
47-
/android/
47+
# /android/
4848

4949
# Node
5050
node_modules
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
143deb6385e391c19ee301ae2033aae9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
542b3cb69e1aa72260fcad41856fbfe2d440a2c3
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
687b8ba39adfbdb547a5933fed5f2272
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
6ba528997e7d1de56eef51d7061f6f1d47542406
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3b8b7d9d167e76a369cf42f4fda3b23a
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
a6d1e52df16aa7635cb88703e6912ba0c06b0e87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>com.facebook.react</groupId>
6+
<artifactId>react-native</artifactId>
7+
<version>0.55.4</version>
8+
<packaging>aar</packaging>
9+
<name>ReactNative</name>
10+
<description>A framework for building native apps with React</description>
11+
<url>https://github.com/facebook/react-native</url>
12+
<licenses>
13+
<license>
14+
<name>MIT License</name>
15+
<url>https://github.com/facebook/react-native/blob/master/LICENSE</url>
16+
<distribution>repo</distribution>
17+
</license>
18+
</licenses>
19+
<developers>
20+
<developer>
21+
<id>facebook</id>
22+
<name>Facebook</name>
23+
</developer>
24+
</developers>
25+
<scm>
26+
<connection>scm:git:https://github.com/facebook/react-native.git</connection>
27+
<developerConnection>scm:git:[email protected]:facebook/react-native.git</developerConnection>
28+
<url>https://github.com/facebook/react-native.git</url>
29+
</scm>
30+
<dependencies>
31+
<dependency>
32+
<groupId>javax.inject</groupId>
33+
<artifactId>javax.inject</artifactId>
34+
<version>1</version>
35+
<scope>compile</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.android.support</groupId>
39+
<artifactId>appcompat-v7</artifactId>
40+
<version>23.0.1</version>
41+
<scope>compile</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>com.facebook.fbui.textlayoutbuilder</groupId>
45+
<artifactId>textlayoutbuilder</artifactId>
46+
<version>1.0.0</version>
47+
<scope>compile</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>com.facebook.fresco</groupId>
51+
<artifactId>fresco</artifactId>
52+
<version>1.3.0</version>
53+
<scope>compile</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>com.facebook.fresco</groupId>
57+
<artifactId>imagepipeline-okhttp3</artifactId>
58+
<version>1.3.0</version>
59+
<scope>compile</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.facebook.soloader</groupId>
63+
<artifactId>soloader</artifactId>
64+
<version>0.1.0</version>
65+
<scope>compile</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.google.code.findbugs</groupId>
69+
<artifactId>jsr305</artifactId>
70+
<version>3.0.0</version>
71+
<scope>compile</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.squareup.okhttp3</groupId>
75+
<artifactId>okhttp</artifactId>
76+
<version>3.6.0</version>
77+
<scope>compile</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>com.squareup.okhttp3</groupId>
81+
<artifactId>okhttp-urlconnection</artifactId>
82+
<version>3.6.0</version>
83+
<scope>compile</scope>
84+
</dependency>
85+
<dependency>
86+
<groupId>com.squareup.okio</groupId>
87+
<artifactId>okio</artifactId>
88+
<version>1.13.0</version>
89+
<scope>compile</scope>
90+
</dependency>
91+
<dependency>
92+
<groupId>org.webkit</groupId>
93+
<artifactId>android-jsc</artifactId>
94+
<version>r174650</version>
95+
<scope>compile</scope>
96+
</dependency>
97+
</dependencies>
98+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
f977ee77d0d0478044b4e1e4b5568102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
447387aaa7b233da3b30d2cc3f2024346ca35103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<metadata>
3+
<groupId>com.facebook.react</groupId>
4+
<artifactId>react-native</artifactId>
5+
<versioning>
6+
<release>0.55.4</release>
7+
<versions>
8+
<version>0.55.4</version>
9+
</versions>
10+
<lastUpdated>20180702113748</lastUpdated>
11+
</versioning>
12+
</metadata>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
90492176ee40f70d42a9278ec0307e2f
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
842edd08d97fd9195ec837f4d58572c003579395

0 commit comments

Comments
 (0)