add build:apk and apk config (#1454)
parent
37252e90b4
commit
e643c43459
7
eas.json
7
eas.json
|
@ -33,6 +33,13 @@
|
||||||
"resourceClass": "m-large"
|
"resourceClass": "m-large"
|
||||||
},
|
},
|
||||||
"channel": "production"
|
"channel": "production"
|
||||||
|
},
|
||||||
|
"dev-android-apk": {
|
||||||
|
"developmentClient": true,
|
||||||
|
"android": {
|
||||||
|
"buildType": "apk",
|
||||||
|
"gradleCommand": ":app:assembleRelease"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"submit": {
|
"submit": {
|
||||||
|
|
|
@ -21,7 +21,8 @@
|
||||||
"e2e:mock-server": "ts-node __e2e__/mock-server.ts",
|
"e2e:mock-server": "ts-node __e2e__/mock-server.ts",
|
||||||
"e2e:metro": "RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios",
|
"e2e:metro": "RN_SRC_EXT=e2e.ts,e2e.tsx expo run:ios",
|
||||||
"e2e:build": "detox build -c ios.sim.debug",
|
"e2e:build": "detox build -c ios.sim.debug",
|
||||||
"e2e:run": "detox test --configuration ios.sim.debug --take-screenshots all"
|
"e2e:run": "detox test --configuration ios.sim.debug --take-screenshots all",
|
||||||
|
"build:apk": "eas build -p android --profile dev-android-apk"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@atproto/api": "^0.6.12",
|
"@atproto/api": "^0.6.12",
|
||||||
|
|
Loading…
Reference in New Issue