4.4 release
This commit is contained in:
parent
66e3fb3d75
commit
518a678ada
15
app.json
15
app.json
@ -3,11 +3,8 @@
|
||||
"name": "JR四国運行状況",
|
||||
"slug": "jrshikoku",
|
||||
"privacy": "public",
|
||||
"platforms": [
|
||||
"ios",
|
||||
"android"
|
||||
],
|
||||
"version": "4.3",
|
||||
"platforms": ["ios", "android"],
|
||||
"version": "4.4",
|
||||
"orientation": "portrait",
|
||||
"icon": "./assets/icon.png",
|
||||
"splash": {
|
||||
@ -18,11 +15,9 @@
|
||||
"updates": {
|
||||
"fallbackToCacheTimeout": 0
|
||||
},
|
||||
"assetBundlePatterns": [
|
||||
"**/*"
|
||||
],
|
||||
"assetBundlePatterns": ["**/*"],
|
||||
"ios": {
|
||||
"buildNumber": "21",
|
||||
"buildNumber": "22",
|
||||
"supportsTablet": true,
|
||||
"bundleIdentifier": "jrshikokuinfo.xprocess.hrkn",
|
||||
"config": {
|
||||
@ -31,7 +26,7 @@
|
||||
},
|
||||
"android": {
|
||||
"package": "jrshikokuinfo.xprocess.hrkn",
|
||||
"versionCode": 15,
|
||||
"versionCode": 16,
|
||||
"permissions": ["ACCESS_FINE_LOCATION"],
|
||||
"googleServicesFile": "./google-services.json",
|
||||
"config": {
|
||||
|
@ -67,7 +67,26 @@ export default function Setting(props) {
|
||||
textAlignVertical: "center",
|
||||
}}
|
||||
>
|
||||
内部バージョン: 4.3.3.1
|
||||
マップを表示する(beta)
|
||||
</Text>
|
||||
<View style={{ flex: 1 }} />
|
||||
<Switch
|
||||
value={mapSwitch == "true" ? true : false}
|
||||
color={mapSwitch == "true" ? "red" : null}
|
||||
onValueChange={(value) => setMapSwitch(value.toString())}
|
||||
/>
|
||||
</View>
|
||||
<View style={{ flexDirection: "row", padding: 10 }}>
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 25,
|
||||
alignItems: "center",
|
||||
alignContent: "center",
|
||||
textAlign: "center",
|
||||
textAlignVertical: "center",
|
||||
}}
|
||||
>
|
||||
内部バージョン: 4.4
|
||||
</Text>
|
||||
<View style={{ flex: 1 }} />
|
||||
</View>
|
||||
@ -85,26 +104,6 @@ export default function Setting(props) {
|
||||
</Text>
|
||||
<View style={{ flex: 1 }} />
|
||||
</View>
|
||||
|
||||
<View style={{ flexDirection: "row", padding: 10 }}>
|
||||
<Text
|
||||
style={{
|
||||
fontSize: 25,
|
||||
alignItems: "center",
|
||||
alignContent: "center",
|
||||
textAlign: "center",
|
||||
textAlignVertical: "center",
|
||||
}}
|
||||
>
|
||||
マップを表示する(beta)
|
||||
</Text>
|
||||
<View style={{ flex: 1 }} />
|
||||
<Switch
|
||||
value={mapSwitch == "true" ? true : false}
|
||||
color={mapSwitch == "true" ? "red" : null}
|
||||
onValueChange={(value) => setMapSwitch(value.toString())}
|
||||
/>
|
||||
</View>
|
||||
</View>
|
||||
</View>
|
||||
<TouchableOpacity
|
||||
|
@ -1 +1 @@
|
||||
export const news = "2022-6-11";
|
||||
export const news = "2022-9-30";
|
||||
|
Loading…
Reference in New Issue
Block a user