-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
63 lines (62 loc) · 1.49 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"expo": {
"name": "expo-ffmpeg-kit-example",
"slug": "expo-ffmpeg-kit-example",
"owner": "dpolyakov",
"scheme": "dpolyakovapp",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/convert.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.dpolyakov.expoffmpegkitexample"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/convert.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.dpolyakov.expoffmpegkitexample"
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 31,
"targetSdkVersion": 31,
"minSdkVersion": 24,
"buildToolsVersion": "31.0.0",
"packagingOptions": {
"pickFirst": [
"lib/arm64-v8a/libc++_shared.so",
"lib/armeabi-v7a/libc++_shared.so",
"lib/x86/libc++_shared.so",
"lib/x86_64/libc++_shared.so"
]
}
},
"ios": {
"deploymentTarget": "13.0"
}
}
]
],
"extra": {
"eas": {
"projectId": "00ac904b-1e51-4234-b10a-5ec57ed1364d"
}
}
}
}