Files
ppc_amnet/amnet-native/app.json
T
2025-07-29 15:50:20 +01:00

95 lines
2.3 KiB
JSON

{
"expo": {
"name": "AMNet",
"scheme": "amnet",
"version": "1.3.2",
"slug": "amnet-native",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"bundleIdentifier": "moe.ppc.amnet",
"supportsTablet": true,
"associatedDomains": [
"applinks:card.ppc.moe"
],
"infoPlist": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"UIViewControllerBasedStatusBarAppearance": "NO",
"NFCReaderUsageDescription": "AMNet uses NFC to scan Physical IC Cards",
"com.apple.developer.nfc.readersession.felica.systemcodes": [
"0003",
"88b4"
]
},
"entitlements": {
"com.apple.developer.nfc.readersession.formats": [
"TAG"
]
},
"config": {
"usesNonExemptEncryption": false
}
},
"android": {
"package": "moe.ppc.amnet",
"versionCode": 7,
"adaptiveIcon": {
"foregroundImage": "./assets/icon-android.png",
"backgroundColor": "#DED8FD"
},
"splash": {
"resizeMode": "cover",
"image": "./assets/icon-android.png",
"backgroundColor": "#DED8FD",
"dark": {
"backgroundColor": "#3B5ACC"
}
},
"intentFilters": [
{
"autoVerify": true,
"action": "VIEW",
"data": [
{
"scheme": "http",
"host": "card.ppc.moe",
"pathPrefix": "/#/servers"
},
{
"scheme": "http",
"host": "card.ppc.moe",
"pathPrefix": "/#/cards"
},
{
"scheme": "https",
"host": "card.ppc.moe",
"pathPrefix": "/#/servers"
},
{
"scheme": "https",
"host": "card.ppc.moe",
"pathPrefix": "/#/cards"
}
],
"category": [
"BROWSABLE",
"DEFAULT"
]
}
]
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
]
]
}
}