Skip to content

Commit cbfdb0b

Browse files
committed
build: Add android aar binary files
1 parent 7c6cf55 commit cbfdb0b

15 files changed

+132
-0
lines changed
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7d972dd78e71cb708035d0b0e6c78591
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7a3e42c0716bea28b9274c27805f1608052f1b3a
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d10960aa9edbad21c17b14d838dc8811
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0f97708048f5d22df4bd1608b285f6bff45a38b7
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
408f0278a28a568ee1836afbe08df09c
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
25fa0e5bee7c971bf6cbcd3fe2f3e5113d00e7df
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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.64.2</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>com.facebook.infer.annotation</groupId>
33+
<artifactId>infer-annotation</artifactId>
34+
<version>0.11.2</version>
35+
<scope>compile</scope>
36+
</dependency>
37+
<dependency>
38+
<groupId>com.facebook.yoga</groupId>
39+
<artifactId>proguard-annotations</artifactId>
40+
<version>1.14.1</version>
41+
<scope>compile</scope>
42+
</dependency>
43+
<dependency>
44+
<groupId>javax.inject</groupId>
45+
<artifactId>javax.inject</artifactId>
46+
<version>1</version>
47+
<scope>compile</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>androidx.appcompat</groupId>
51+
<artifactId>appcompat</artifactId>
52+
<version>1.0.2</version>
53+
<scope>compile</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>androidx.swiperefreshlayout</groupId>
57+
<artifactId>swiperefreshlayout</artifactId>
58+
<version>1.0.0</version>
59+
<scope>compile</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>com.facebook.fresco</groupId>
63+
<artifactId>fresco</artifactId>
64+
<version>2.0.0</version>
65+
<scope>compile</scope>
66+
</dependency>
67+
<dependency>
68+
<groupId>com.facebook.fresco</groupId>
69+
<artifactId>imagepipeline-okhttp3</artifactId>
70+
<version>2.0.0</version>
71+
<scope>compile</scope>
72+
</dependency>
73+
<dependency>
74+
<groupId>com.facebook.soloader</groupId>
75+
<artifactId>soloader</artifactId>
76+
<version>0.9.0</version>
77+
<scope>compile</scope>
78+
</dependency>
79+
<dependency>
80+
<groupId>com.google.code.findbugs</groupId>
81+
<artifactId>jsr305</artifactId>
82+
<version>3.0.2</version>
83+
<scope>compile</scope>
84+
</dependency>
85+
<dependency>
86+
<groupId>com.squareup.okhttp3</groupId>
87+
<artifactId>okhttp</artifactId>
88+
<version>3.12.12</version>
89+
<scope>compile</scope>
90+
</dependency>
91+
<dependency>
92+
<groupId>com.squareup.okhttp3</groupId>
93+
<artifactId>okhttp-urlconnection</artifactId>
94+
<version>3.12.12</version>
95+
<scope>compile</scope>
96+
</dependency>
97+
<dependency>
98+
<groupId>com.squareup.okio</groupId>
99+
<artifactId>okio</artifactId>
100+
<version>1.17.5</version>
101+
<scope>compile</scope>
102+
</dependency>
103+
<dependency>
104+
<groupId>com.facebook.fbjni</groupId>
105+
<artifactId>fbjni-java-only</artifactId>
106+
<version>0.0.3</version>
107+
<scope>compile</scope>
108+
</dependency>
109+
</dependencies>
110+
</project>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
389f95f84193a6364d9a78816107b307
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
48fcceb199d9f1fa6010c5e9e54d824cb21ce869
Lines changed: 12 additions & 0 deletions
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.64.2</release>
7+
<versions>
8+
<version>0.64.2</version>
9+
</versions>
10+
<lastUpdated>20210623071329</lastUpdated>
11+
</versioning>
12+
</metadata>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
72c2334c691fc833eeeb3cefc91ef0e3
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
7a378f12d05028a350eb47508b4a99d9216209f7

0 commit comments

Comments
 (0)