Skip to content

Commit c260f63

Browse files
committed
Correct instructions for using this with Buck
The sha1 was incorrect, and you didn't end up with a usable AAR as previously written.
1 parent 488e0b9 commit c260f63

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,15 @@ After installation, the android-jsc AAR file should be accessible through maven:
3333

3434
**1. Using BUCK**
3535
```python
36-
remote_file(
36+
android_prebuilt_aar(
3737
name = 'android-jsc',
38-
url = 'mvn://org.webkit:android-jsc:r174650',
39-
sha1 = 'd4b32ee79922794b04bfbbcde0cf9572baaa1b84',
38+
aar = ':android-jsc-aar',
39+
)
40+
41+
remote_file(
42+
name = 'android-jsc-aar',
43+
url = 'mvn:org.webkit:android-jsc:aar:r174650',
44+
sha1 = '880cedd93f43e0fc841f01f2fa185a63d9230f85',
4045
)
4146
```
4247

0 commit comments

Comments
 (0)