Home expo eas를 이용하여 apk 빌드
Post
Cancel

expo eas를 이용하여 apk 빌드

/eas.json

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "cli": {
    "version": ">= 3.1.1"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {
      "android": {
        "buildType": "apk"
      }
    }
  },
  "submit": {
    "production": {}
  }
}

build.production.android.buildTypeapk로 설정하면된다. 디폴트는 aab파일로 빌드된다.

This post is licensed under CC BY 4.0 by the author.